/* ====================================
   GOTAMA — US MARKET LUXURY SITE
   White/ivory editorial, antique gold accents
   Cormorant + DM Sans, mobile-first
   ==================================== */

/* --- Variables --- */
:root {
  --bg:           #fafaf8;
  --bg-warm:      #f5f0e8;
  --bg-card:      #ffffff;
  --gold:         #c9a96e;
  --gold-light:   #e8d5a8;
  --gold-dark:    #9a7a3a;
  --ink:          #1a1a1a;
  --ink-mid:      #3d3d3d;
  --ink-muted:    #8a8a8a;
  --ink-faint:    #c8c4bc;
  --border:       #e8e4dc;
  --border-light: #f0ece6;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --max-w:        1200px;
  --pad-x:        clamp(24px, 5vw, 72px);
  --nav-h:        72px;

  --ease:         cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out:     cubic-bezier(0, 0, 0.2, 1);
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* --- Shared utilities --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section-pad {
  padding: clamp(60px, 8vw, 100px) var(--pad-x);
}

.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 16px;
}

.section-body {
  font-size: 1rem;
  color: var(--ink-muted);
  max-width: 52ch;
  line-height: 1.7;
}

/* Gold divider */
.gold-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 24px 0;
}

/* CTA buttons */
.btn-primary {
  display: inline-block;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  transition: background 0.2s var(--ease), transform 0.1s;
}
.btn-primary:hover { background: var(--ink-mid); }
.btn-primary:active { transform: scale(0.98); }

.btn-outline {
  display: inline-block;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  background: transparent;
  transition: all 0.2s var(--ease);
}
.btn-outline:hover { background: var(--ink); color: #fff; }

/* WhatsApp CTA */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 15px 32px;
  border: none;
  transition: background 0.2s var(--ease), transform 0.1s;
}
.btn-whatsapp:hover { background: #1db954; }
.btn-whatsapp:active { transform: scale(0.98); }

.btn-whatsapp svg { width: 18px; height: 18px; }

/* ====================================
   NAVIGATION
   ==================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.3s var(--ease);
}

.nav.scrolled {
  box-shadow: 0 1px 20px rgba(26, 26, 26, 0.06);
}

.nav-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--ink);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mid);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-dark); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  color: var(--ink);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 24px var(--pad-x) 32px;
  flex-direction: column;
  gap: 20px;
  z-index: 199;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mid);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
}

.nav-social-link:hover { color: var(--gold-dark) !important; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta .btn-outline { display: none; }
  .nav-toggle { display: block; }
  .nav-cta { gap: 8px; }
}

/* ====================================
   HERO
   ==================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  background: var(--bg-warm);
}

.hero-text {
  padding: calc(var(--nav-h) + 60px) var(--pad-x) 80px;
  max-width: 600px;
}

.hero-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold-dark);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.hero-body {
  font-size: 1.05rem;
  color: var(--ink-mid);
  line-height: 1.75;
  max-width: 46ch;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-trust {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--ink-muted);
  letter-spacing: 0.06em;
}

.trust-pill svg { color: var(--gold-dark); flex-shrink: 0; }

.hero-visual {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--bg-warm) 0%,
    rgba(245, 240, 232, 0) 40%
  );
}

.hero-badge {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 20px 24px;
  max-width: 260px;
}

.hero-badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
}

.hero-badge-label {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-visual { display: none; }
  .hero-text {
    padding-top: calc(var(--nav-h) + 40px);
    padding-bottom: 60px;
    max-width: 100%;
  }
}

/* ====================================
   CATEGORIES
   ==================================== */

.categories {
  background: var(--bg);
}

.categories-header {
  text-align: center;
  margin-bottom: 56px;
}

.categories-header .section-body { margin: 0 auto; }

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

.cat-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  display: block;
  transition: transform 0.3s var(--ease-out);
}

.cat-card:hover { transform: translateY(-2px); }

.cat-card-visual {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg-warm);
}

.cat-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.cat-card:hover .cat-card-visual img { transform: scale(1.04); }

.cat-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--bg-warm);
  padding: 24px;
}

.cat-card-placeholder svg { opacity: 0.15; }

.cat-card-body {
  padding: 24px 28px 32px;
  background: var(--bg-card);
  border-top: 2px solid var(--gold);
}

.cat-card-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 8px;
}

.cat-card-desc {
  font-size: 0.85rem;
  color: var(--ink-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.cat-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  transition: gap 0.2s;
}
.cat-card:hover .cat-card-link { gap: 10px; }

.cat-whatsapp-strip {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: var(--bg-warm);
  gap: 16px;
}

.cat-whatsapp-strip span {
  font-size: 0.85rem;
  color: var(--ink-mid);
}

@media (max-width: 768px) {
  .categories-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .categories-grid { grid-template-columns: 1fr; }
}

/* ====================================
   HOW IT WORKS
   ==================================== */

.how {
  background: var(--ink);
  color: #fff;
}

.how .section-label { color: var(--gold-light); }
.how .section-title { color: #fff; }
.how .section-body { color: rgba(255,255,255,0.55); }

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 56px;
}

.how-step {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.how-step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
}

.how-step-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
}

.how-step-body {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

.how-cta {
  margin-top: 56px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.how .btn-primary { background: var(--gold); color: var(--ink); }
.how .btn-primary:hover { background: var(--gold-light); }

@media (max-width: 800px) {
  .how-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .how-steps { grid-template-columns: 1fr; }
}

/* ====================================
   TRUST / WHY GOTA
   ==================================== */

.trust {
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-header {
  text-align: center;
  margin-bottom: 56px;
}

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

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trust-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  margin-bottom: 4px;
}

.trust-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
}

.trust-desc {
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
}

/* ====================================
   SHIPPING & POLICIES
   ==================================== */

.shipping {
  background: var(--bg);
}

.shipping-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.shipping-points {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}

.shipping-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.shipping-point-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
}

.shipping-point-text h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 4px;
}

.shipping-point-text p {
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

.shipping-aside {
  background: var(--bg-warm);
  border: 1px solid var(--border);
  padding: 40px;
}

.shipping-aside-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 16px;
}

.shipping-aside-body {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.shipping-aside-body p { margin-bottom: 12px; }
.shipping-aside-body strong { color: var(--ink); }

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

/* ====================================
   PRODUCT GRID (collection pages)
   ==================================== */

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

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.product-card:hover {
  box-shadow: 0 8px 40px rgba(26,26,26,0.08);
  transform: translateY(-2px);
}

.product-card-img {
  aspect-ratio: 4/5;
  background: var(--bg-warm);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-out);
}

.product-card:hover .product-card-img img { transform: scale(1.04); }

.product-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-placeholder svg { opacity: 0.12; }

.product-card-body {
  padding: 20px 24px 28px;
  display: flex;
  flex-direction: column;
  min-height: 220px;
}

/* Fix 1: CTA buttons pinned to bottom — description takes remaining space */
.product-card-desc { flex: 1; }
.product-card-body > a.btn-primary { align-self: flex-start; }

.product-card-cat {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 6px;
}

.product-card-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 4px;
}

.product-card-desc {
  font-size: 0.82rem;
  color: var(--ink-muted);
  line-height: 1.55;
  margin-bottom: 20px;
}

/* Fix 1: align CTA buttons to the same vertical baseline regardless of text length */
.product-card-body > a.btn-primary {
  align-self: flex-start;
}

.product-card-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 16px;
}

@media (max-width: 900px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 540px) {
  .product-grid { grid-template-columns: 1fr; }
}

/* ====================================
   TESTIMONIALS / REVIEWS
   ==================================== */

.reviews {
  background: var(--bg-warm);
}

.reviews-header {
  text-align: center;
  margin-bottom: 56px;
}

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

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-stars {
  display: flex;
  gap: 4px;
  color: var(--gold);
}

.review-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
  color: var(--ink-mid);
  line-height: 1.6;
  flex: 1;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.04em;
}

.review-date {
  font-size: 0.75rem;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ====================================
   ABOUT PAGE
   ==================================== */

.about-hero {
  padding: calc(var(--nav-h) + 80px) var(--pad-x) 80px;
  background: var(--bg-warm);
  border-bottom: 1px solid var(--border);
}

.about-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-hero .section-label { margin-bottom: 20px; }

.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 28px;
  line-height: 1.1;
}

.about-hero h1 em { font-style: italic; color: var(--gold-dark); }

.about-body {
  padding: clamp(60px, 8vw, 100px) var(--pad-x);
  background: var(--bg);
}

.about-content {
  max-width: 720px;
  margin: 0 auto;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 20px;
  margin-top: 56px;
}

.about-content h2:first-child { margin-top: 0; }

.about-content p {
  font-size: 1rem;
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: 20px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

.about-value {
  border: 1px solid var(--border);
  padding: 28px;
  background: var(--bg-card);
}

.about-value h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
}

.about-value p {
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 600px) {
  .about-values { grid-template-columns: 1fr; }
}

/* ====================================
   FAQ PAGE
   ==================================== */

.faq-hero {
  padding: calc(var(--nav-h) + 80px) var(--pad-x) 60px;
  background: var(--bg-warm);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.faq-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 16px;
}

.faq-hero p {
  font-size: 1rem;
  color: var(--ink-muted);
  max-width: 50ch;
  margin: 0 auto;
}

.faq-body {
  padding: clamp(60px, 8vw, 100px) var(--pad-x);
  max-width: 760px;
  margin: 0 auto;
}

.faq-section { margin-bottom: 48px; }

.faq-section-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.faq-item { border-bottom: 1px solid var(--border-light); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink);
  text-align: left;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-body);
}

.faq-question:hover { color: var(--gold-dark); }

.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.2s var(--ease);
  color: var(--gold-dark);
}

.faq-item.open .faq-question svg { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease-out), padding 0.3s var(--ease-out);
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 20px;
}

.faq-answer-inner {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.7;
  padding-bottom: 4px;
}

.faq-cta {
  text-align: center;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.faq-cta p {
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin-bottom: 20px;
}

/* ====================================
   CONTACT PAGE
   ==================================== */

.contact-hero {
  padding: calc(var(--nav-h) + 80px) var(--pad-x) 60px;
  background: var(--bg-warm);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.contact-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 16px;
}

.contact-body {
  padding: clamp(60px, 8vw, 100px) var(--pad-x);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 960px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-item { display: flex; flex-direction: column; gap: 8px; }

.contact-info-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.contact-info-value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink);
}

.contact-info-value a { transition: color 0.2s; }
.contact-info-value a:hover { color: var(--gold-dark); }

.contact-ctas {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 40px;
}

.contact-form-card h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 32px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-grid .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-grid label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: block;
  margin-bottom: 8px;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder { color: var(--ink-faint); }

.form-grid input:focus,
.form-grid textarea:focus { border-color: var(--gold); }

.form-grid textarea { resize: vertical; min-height: 120px; }

@media (max-width: 768px) {
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .form-grid .field-row { grid-template-columns: 1fr; }
}

/* ====================================
   SHARED HEADER (non-home pages)
   ==================================== */

.page-header {
  padding: calc(var(--nav-h) + 60px) var(--pad-x) 60px;
  background: var(--bg-warm);
  border-bottom: 1px solid var(--border);
}

.page-header-inner { max-width: 800px; margin: 0 auto; }

.page-header .section-label { margin-bottom: 12px; }

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.1;
}

.page-header p {
  font-size: 1rem;
  color: var(--ink-muted);
  max-width: 52ch;
  line-height: 1.7;
}

/* ====================================
   BESPOKE / CUSTOM PAGE
   ==================================== */

.bespoke-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 56px;
}

.bespoke-step {
  border: 1px solid var(--border);
  background: var(--bg-card);
  padding: 36px 32px;
}

.bespoke-step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 16px;
}

.bespoke-step h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
}

.bespoke-step p {
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .bespoke-steps { grid-template-columns: 1fr; }
}

/* ====================================
   FOOTER
   ==================================== */

.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.5);
  padding: clamp(48px, 6vw, 80px) var(--pad-x) 40px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.footer-brand-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 36ch;
  margin-bottom: 24px;
}

.footer-brand-whatsapp .btn-whatsapp { font-size: 0.78rem; padding: 12px 24px; }

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
  transition: color 0.2s, border-color 0.2s;
}
.footer-social-link:hover { color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.4); }

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}

.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col-links a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}

/* ====================================
   INQUIRY PAGE (kept in inquiry.css)
   ==================================== */

/* Already in inquiry.css — keeping it intact */

/* ====================================
   FLOATING WHATSAPP
   ==================================== */

.fab-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 150;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 14px 20px;
  border: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  text-decoration: none;
}

.fab-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
  color: #fff;
}

.fab-whatsapp svg { width: 20px; height: 20px; }

/* ====================================
   ANIMATIONS
   ==================================== */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.6s var(--ease-out) forwards;
}

.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }
.fade-up-4 { animation-delay: 0.4s; }

/* ====================================
   UTILITY
   ==================================== */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.text-center { text-align: center; }
.text-gold { color: var(--gold-dark); }

.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mt-56 { margin-top: 56px; }