/* ============================================================
   GRAIN & GRAIN — Wood Carving Art
   Main Stylesheet
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #0f1923;
  --dark:    #1a1a1a;
  --wood:    #b5651d;
  --wood-lt: #c8813a;
  --cream:   #f5f0e8;
  --offwhite:#faf8f4;
  --grey:    #888;
  --red:     #c0392b;
  --border:  #2e2e2e;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--offwhite);
  color: var(--dark);
  font-size: 15px;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: auto; }

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
  background: var(--navy);
  color: #fff;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.12em;
  padding: 9px 16px;
  text-transform: uppercase;
}
.announcement-bar span { color: var(--wood-lt); font-weight: 600; }

/* ── HEADER / NAV ── */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #e8e4dc;
  box-shadow: 0 1px 6px rgba(0,0,0,.06);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--dark);
  white-space: nowrap;
}
.logo span { color: var(--wood); }

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
nav.main-nav a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  transition: color .2s;
}
nav.main-nav a:hover { color: var(--wood); }
nav.main-nav a.last-chance { color: var(--red); }
nav.main-nav a.last-chance:hover { color: #a93226; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.btn-signin {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid var(--dark);
  padding: 7px 16px;
  border-radius: 3px;
  transition: background .2s, color .2s;
  cursor: pointer;
  background: transparent;
  color: var(--dark);
}
.btn-signin:hover { background: var(--dark); color: #fff; }

.btn-currency {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--grey);
  cursor: pointer;
  border: none;
  background: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color .2s;
}
.btn-currency:hover { color: var(--dark); }
.btn-currency svg { width: 14px; height: 14px; }

/* hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: .3s; }

/* ── HERO ── */
.hero {
  position: relative;
  height: 88vh;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,14,20,.72) 40%, rgba(10,14,20,.15) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  color: #fff;
}
.hero-badge {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.3);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 18px;
  max-width: 560px;
}
.hero p {
  font-size: 16px;
  color: rgba(255,255,255,.82);
  max-width: 420px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.btn-primary {
  display: inline-block;
  background: var(--wood);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 3px;
  transition: background .2s, transform .15s;
  cursor: pointer;
}
.btn-primary:hover { background: var(--wood-lt); transform: translateY(-1px); }

/* ── SECTION LABELS ── */
.section-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wood);
  font-weight: 700;
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

/* ── TRENDING STRIP ── */
.trending-section {
  padding: 72px 0 80px;
  background: var(--offwhite);
}
.trending-section .inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.trending-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
}
.view-all {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wood);
  border-bottom: 1.5px solid var(--wood);
  padding-bottom: 2px;
  transition: opacity .2s;
}
.view-all:hover { opacity: .7; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform .25s, box-shadow .25s;
  cursor: pointer;
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,.12); }

.product-img-wrap {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.04); }

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 3px;
  background: var(--dark);
  color: #fff;
}
.product-badge.bestseller { background: var(--wood); }
.product-badge.new { background: #2e7d32; }
.product-badge.last-chance { background: var(--red); }

.product-info { padding: 16px 16px 20px; }
.product-category {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 5px;
}
.product-name {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.product-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--wood);
}
.product-size {
  font-size: 11px;
  color: var(--grey);
  margin-top: 4px;
}

/* ── BRAND SPLIT ── */
.brand-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.brand-split-text {
  background: var(--navy);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 64px;
}
.brand-split-text .section-label { color: var(--wood-lt); }
.brand-split-text .section-title { color: #fff; margin-bottom: 20px; }
.brand-split-text p {
  color: rgba(255,255,255,.75);
  font-size: 15px;
  line-height: 1.8;
  max-width: 400px;
  margin-bottom: 36px;
}
.brand-split-img { overflow: hidden; }
.brand-split-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── QUALITY BANNER ── */
.quality-banner {
  position: relative;
  height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.quality-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.quality-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,14,20,.55);
}
.quality-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  color: #fff;
  text-align: center;
  width: 100%;
}
.quality-content .section-title { color: #fff; margin-bottom: 16px; }
.quality-content p { color: rgba(255,255,255,.8); max-width: 520px; margin: 0 auto 32px; font-size: 15px; line-height: 1.8; }

/* ── EMAIL SIGNUP ── */
.email-signup {
  background: var(--cream);
  padding: 72px 24px;
  text-align: center;
  border-top: 1px solid #e0d9ce;
  border-bottom: 1px solid #e0d9ce;
}
.email-signup .section-title { margin-bottom: 10px; }
.email-signup p { color: var(--grey); font-size: 14px; margin-bottom: 28px; }
.email-form {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 440px;
  margin: 0 auto;
}
.email-form input {
  flex: 1;
  padding: 13px 18px;
  border: 1.5px solid #ccc;
  border-right: none;
  border-radius: 3px 0 0 3px;
  font-size: 14px;
  outline: none;
  font-family: var(--font-body);
  background: #fff;
}
.email-form input:focus { border-color: var(--wood); }
.email-form button {
  background: var(--dark);
  color: #fff;
  border: none;
  padding: 13px 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0 3px 3px 0;
  cursor: pointer;
  transition: background .2s;
  font-family: var(--font-body);
}
.email-form button:hover { background: var(--wood); }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,.65);
  padding: 56px 24px 32px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.footer-brand .logo { color: #fff; font-size: 20px; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; line-height: 1.7; max-width: 240px; }
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 13px; transition: color .2s; }
.footer-col ul a:hover { color: var(--wood-lt); }
.footer-bottom {
  max-width: 1280px;
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 12px;
}
.social-links { display: flex; gap: 16px; }
.social-links a { font-size: 12px; letter-spacing: 0.06em; transition: color .2s; }
.social-links a:hover { color: var(--wood-lt); }

/* ── SHOP PAGE ── */
.page-hero {
  background: var(--navy);
  padding: 56px 24px;
  text-align: center;
  color: #fff;
}
.page-hero .section-label { margin-bottom: 8px; }
.page-hero h1 { font-family: var(--font-head); font-size: clamp(32px, 4vw, 52px); font-weight: 700; color: #fff; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.7); font-size: 15px; max-width: 480px; margin: 0 auto; }

.shop-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}
.shop-filters {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 3px;
  border: 1.5px solid #ccc;
  background: transparent;
  color: var(--dark);
  cursor: pointer;
  transition: all .2s;
  font-family: var(--font-body);
}
.filter-btn:hover, .filter-btn.active { background: var(--dark); color: #fff; border-color: var(--dark); }

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ── ABOUT PAGE ── */
.about-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.about-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,14,20,.6);
}
.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  color: #fff;
  text-align: center;
  width: 100%;
}
.about-hero-content h1 { font-family: var(--font-head); font-size: clamp(36px, 5vw, 64px); font-weight: 700; margin-bottom: 14px; }
.about-hero-content p { font-size: 16px; color: rgba(255,255,255,.8); max-width: 500px; margin: 0 auto; }

.about-story {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-story-text .section-label { margin-bottom: 10px; }
.about-story-text .section-title { margin-bottom: 20px; }
.about-story-text p { color: #555; font-size: 15px; line-height: 1.85; margin-bottom: 16px; }
.about-story-img { border-radius: 6px; overflow: hidden; box-shadow: 0 16px 48px rgba(0,0,0,.14); }
.about-story-img img { width: 100%; height: 100%; object-fit: cover; }

.about-values {
  background: var(--cream);
  padding: 80px 24px;
  border-top: 1px solid #e0d9ce;
}
.about-values .inner { max-width: 1280px; margin: 0 auto; }
.about-values .section-label, .about-values .section-title { text-align: center; }
.about-values .section-title { margin-bottom: 48px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.value-card {
  background: #fff;
  padding: 36px 28px;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  text-align: center;
}
.value-icon {
  font-size: 32px;
  margin-bottom: 16px;
}
.value-card h3 { font-family: var(--font-head); font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--dark); }
.value-card p { font-size: 14px; color: #666; line-height: 1.75; }

.about-process {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
}
.about-process .section-label, .about-process .section-title { text-align: center; margin-bottom: 8px; }
.about-process .section-title { margin-bottom: 48px; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-step {
  text-align: center;
  padding: 24px 16px;
}
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--wood);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.process-step h4 { font-family: var(--font-head); font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.process-step p { font-size: 13px; color: #666; line-height: 1.7; }

/* ── MOBILE NAV OVERLAY ── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 22px;
  font-family: var(--font-head);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--wood-lt); }
.mobile-nav a.last-chance { color: var(--red); }
.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  nav.main-nav { display: none; }
  .hamburger { display: flex; }
  .btn-signin, .btn-currency { display: none; }
  .hero-content { padding: 0 24px; }
  .brand-split { grid-template-columns: 1fr; }
  .brand-split-img { height: 300px; }
  .about-story { grid-template-columns: 1fr; gap: 40px; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .quality-content { padding: 0 24px; }
  .about-hero-content { padding: 0 24px; }
  .brand-split-text { padding: 48px 32px; }
}

@media (max-width: 520px) {
  .product-grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
}

/* ── NOT TO SCALE NOTICE ── */
.not-to-scale {
  font-size: 10px;
  color: var(--grey);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 5px;
  font-style: italic;
}

/* ── INFO / POLICY PAGES ── */
.info-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 72px 24px 96px;
}
.info-page h1 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.info-page .page-meta {
  font-size: 12px;
  color: var(--grey);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e0d9ce;
}
.info-page h2 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin: 40px 0 12px;
}
.info-page p {
  font-size: 15px;
  color: #555;
  line-height: 1.85;
  margin-bottom: 16px;
}
.info-page ul, .info-page ol {
  margin: 0 0 20px 22px;
}
.info-page li {
  font-size: 15px;
  color: #555;
  line-height: 1.85;
  margin-bottom: 8px;
}
.info-page a {
  color: var(--wood);
  text-decoration: underline;
}
.info-page a:hover { color: var(--wood-lt); }

/* FAQ accordion */
.faq-item {
  border-bottom: 1px solid #e0d9ce;
  padding: 0;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color .2s;
}
.faq-question:hover { color: var(--wood); }
.faq-question .faq-icon {
  font-size: 22px;
  font-weight: 400;
  color: var(--wood);
  flex-shrink: 0;
  transition: transform .25s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 0 20px;
  font-size: 15px;
  color: #555;
  line-height: 1.85;
}
.faq-item.open .faq-answer { display: block; }

/* Gift card page */
.gift-card-hero {
  background: var(--navy);
  padding: 72px 24px;
  text-align: center;
  color: #fff;
}
.gift-card-hero .section-label { margin-bottom: 8px; }
.gift-card-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}
.gift-card-hero p { color: rgba(255,255,255,.75); font-size: 15px; max-width: 480px; margin: 0 auto; }

.gift-card-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 72px 24px 96px;
  text-align: center;
}
.gift-card-body h2 {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}
.gift-card-body p {
  font-size: 15px;
  color: #555;
  line-height: 1.85;
  margin-bottom: 28px;
}
.gift-card-placeholder {
  background: var(--cream);
  border: 2px dashed #c8b89a;
  border-radius: 8px;
  padding: 56px 32px;
  margin: 40px 0;
}
.gift-card-placeholder p {
  font-size: 14px;
  color: var(--grey);
  margin: 0;
}

/* Contact page */
.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 24px 96px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}
.contact-info p {
  font-size: 15px;
  color: #555;
  line-height: 1.85;
  margin-bottom: 28px;
}
.contact-detail {
  margin-bottom: 20px;
}
.contact-detail strong {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wood);
  font-weight: 700;
  margin-bottom: 4px;
}
.contact-detail span {
  font-size: 14px;
  color: #555;
}
.contact-form-wrap h2 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}
.contact-form .form-group {
  margin-bottom: 20px;
}
.contact-form label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 7px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #ccc;
  border-radius: 3px;
  font-size: 14px;
  font-family: var(--font-body);
  background: #fff;
  color: var(--dark);
  outline: none;
  transition: border-color .2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--wood); }
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form .btn-submit {
  background: var(--wood);
  color: #fff;
  border: none;
  padding: 14px 36px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  transition: background .2s, transform .15s;
  font-family: var(--font-body);
}
.contact-form .btn-submit:hover { background: var(--wood-lt); transform: translateY(-1px); }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Stripe Buy Button */
.btn-buy-now {
  display: inline-block;
  background: var(--wood, #8B5E3C);
  color: #fff;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 16px 40px;
  border-radius: 4px;
  text-decoration: none;
  transition: background .2s, transform .1s;
  margin: 8px 0 12px;
}
.btn-buy-now:hover { background: #6b4428; transform: translateY(-1px); }
.stripe-buy-section { text-align: center; padding: 24px 0 8px; }
.stripe-note { font-size: .8rem; color: #888; margin-top: 6px; }
