/* ==========================================================================
   MADEREAL — Design tokens
   Cream base, espresso-brown ink (from logo), honey-gold accent, wine berry
   accent used sparingly. Fraunces (display) + Work Sans (body).
   Signature motifs: scalloped "cookie-stamp" image frames + piped-icing
   wavy dividers between sections.
   ========================================================================== */

:root{
  --cream:        #FBF3E7;
  --cream-soft:   #F3E7D3;
  --card:         #FFFCF6;
  --espresso:     #3A2820;
  --espresso-2:   #5C4033;
  --espresso-3:   #6E4A38;
  --honey:        #C4881F;
  --honey-dark:   #9C6A15;
  --honey-light:  #E7B45C;
  --wine:         #7A2E3A;
  --line:         #E3D2B4;
  --line-soft:    #EFE2CB;

  --font-display: "Fraunces", "Iowan Old Style", serif;
  --font-body:    "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;

  --shadow-card: 0 18px 40px -22px rgba(58,40,32,0.35);
  --shadow-soft: 0 10px 24px -16px rgba(58,40,32,0.28);

  --container: 1180px;
}

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

html{ scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body{
  margin: 0;
  background: var(--cream);
  color: var(--espresso);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img{ max-width: 100%; display: block; }

a{ color: inherit; text-decoration: none; }

h1, h2, h3, h4{
  font-family: var(--font-display);
  color: var(--espresso-2);
  line-height: 1.08;
  margin: 0 0 0.5em;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1{ font-weight: 560; }

p{ margin: 0 0 1em; }

.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12.5px;
  color: var(--wine);
  margin-bottom: 14px;
}
.eyebrow::before{
  content: "";
  width: 22px; height: 2px;
  background: var(--honey);
  display: inline-block;
}

:focus-visible{
  outline: 3px solid var(--wine);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn-primary{
  background: var(--espresso-2);
  color: var(--cream);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover{ background: var(--espresso); box-shadow: 0 16px 30px -16px rgba(58,40,32,0.55); }
.btn-gold{
  background: var(--honey);
  color: #2A1B08;
  box-shadow: 0 14px 26px -14px rgba(196,136,31,0.65);
}
.btn-gold:hover{ background: var(--honey-dark); }
.btn-outline{
  background: transparent;
  border-color: var(--espresso-2);
  color: var(--espresso-2);
}
.btn-outline:hover{ background: var(--espresso-2); color: var(--cream); }
.btn-outline.on-dark{ border-color: rgba(251,243,231,0.55); color: var(--cream); }
.btn-outline.on-dark:hover{ background: var(--cream); color: var(--espresso-2); }
.btn-sm{ padding: 10px 18px; font-size: 13.5px; }
.btn svg{ width: 17px; height: 17px; flex-shrink: 0; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header{
  position: sticky; top: 0; z-index: 500;
  background: rgba(251,243,231,0.88);
  backdrop-filter: blur(10px) saturate(1.1);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
  border-bottom: 1px solid var(--line);
}
.site-header .container{
  display: flex; align-items: center; justify-content: space-between;
  height: 84px;
}
.brand{ display: flex; align-items: center; gap: 12px; }
.brand img{ height: 54px; width: auto; }
.brand-name{ font-family: var(--font-display); font-size: 15px; letter-spacing: 0.08em; color: var(--espresso-2); text-transform: uppercase; }

.main-nav{ display: flex; align-items: center; gap: 40px; }
.main-nav ul{ list-style: none; display: flex; gap: 32px; margin: 0; padding: 0; }
.main-nav a:not(.btn){
  font-weight: 600; font-size: 14.5px; color: var(--espresso-3);
  position: relative; padding: 6px 0;
  transition: color .15s ease;
}
.main-nav a:not(.btn)::after{
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--honey); transition: right .22s ease;
}
.main-nav a:not(.btn):hover{ color: var(--espresso-2); }
.main-nav a:not(.btn):hover::after{ right: 0; }
.main-nav a.active:not(.btn){ color: var(--espresso-2); }
.main-nav a.active:not(.btn)::after{ right: 0; }

.header-cta{ display: flex; align-items: center; gap: 14px; }

.nav-toggle{
  display: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--card);
  align-items: center; justify-content: center;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content: ""; display: block; width: 20px; height: 2px; background: var(--espresso-2);
  position: relative; transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span::before{ position: absolute; top: -6px; }
.nav-toggle span::after{ position: absolute; top: 6px; }
.nav-toggle.is-open span{ background: transparent; }
.nav-toggle.is-open span::before{ top: 0; transform: rotate(45deg); }
.nav-toggle.is-open span::after{ top: 0; transform: rotate(-45deg); }

.mobile-panel{
  display: none;
  position: fixed; inset: 84px 0 0 0; z-index: 400;
  background: var(--cream);
  padding: 30px 28px;
  overflow-y: auto;
}
.mobile-panel.is-open{ display: block; }
.mobile-panel ul{ list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.mobile-panel a:not(.btn){
  display: block; padding: 16px 4px; font-family: var(--font-display); font-size: 24px;
  color: var(--espresso-2); border-bottom: 1px solid var(--line-soft);
}
.mobile-panel .btn{ width: 100%; }

@media (max-width: 940px){
  .main-nav ul{ display: none; }
  .header-cta .btn-outline{ display: none; }
  .nav-toggle{ display: flex; }
}

/* ==========================================================================
   Wavy "piped icing" divider — signature motif
   ========================================================================== */
.icing-divider{ line-height: 0; margin-top: -1px; }
.icing-divider svg{ width: 100%; height: 46px; display: block; }

/* ==========================================================================
   Scalloped "cookie-stamp" image frame — signature motif
   ========================================================================== */
.stamp-frame{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
}
.stamp-frame::after{
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 10px var(--cream);
  pointer-events: none;
}
.stamp-frame img{ width: 100%; height: 100%; object-fit: cover; display: block; }

.seal-badge{
  position: absolute;
  width: 118px; height: 118px;
  z-index: 3;
  filter: drop-shadow(0 8px 14px rgba(58,40,32,0.35));
}

/* ==========================================================================
   Sections
   ========================================================================== */
section{ position: relative; }
.section{ padding: 100px 0; }
.section-tight{ padding: 70px 0; }
.section-alt{ background: var(--cream-soft); }
.section-dark{ background: var(--espresso); color: #EFE1CC; }
.section-dark h2, .section-dark h3{ color: #FBF3E7; }
.section-dark .eyebrow{ color: var(--honey-light); }

.section-head{ max-width: 640px; margin: 0 0 56px; }
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }
.section-head p{ color: var(--espresso-3); font-size: 17.5px; }
.section-dark .section-head p{ color: #CBB79A; }

.section-foot-cta{ margin-top: 44px; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{ padding: 64px 0 0; overflow: hidden; }
.hero .container{
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
}
.hero-copy h1{ font-size: clamp(38px, 4.6vw, 64px); }
.hero-copy .lede{ font-size: 19px; color: var(--espresso-3); max-width: 480px; margin-bottom: 30px; }
.hero-actions{ display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-meta{ display: flex; gap: 28px; flex-wrap: wrap; }
.hero-meta div{ display: flex; flex-direction: column; }
.hero-meta strong{ font-family: var(--font-display); font-size: 26px; color: var(--espresso-2); }
.hero-meta span{ font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.09em; color: var(--espresso-3); font-weight: 600; }

.hero-art{ position: relative; }
.hero-art .stamp-frame{ aspect-ratio: 4/4.6; }
.hero-art .seal-badge{ top: -26px; right: -20px; }
.hero-float-card{
  position: absolute; left: -34px; bottom: 34px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-card);
  display: flex; align-items: center; gap: 12px;
  max-width: 230px;
}
.hero-float-card .dot{
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--honey-light); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.hero-float-card strong{ display: block; font-size: 13.5px; color: var(--espresso-2); }
.hero-float-card span{ font-size: 12px; color: var(--espresso-3); }

@media (max-width: 940px){
  .hero .container{ grid-template-columns: 1fr; }
  .hero-art{ order: -1; }
  .hero-float-card{ left: 16px; bottom: -24px; }
}

/* ---------- Trust strip ---------- */
.trust-strip{
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}
.trust-strip .container{
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.trust-item{ display: flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 600; color: var(--espresso-3); letter-spacing: 0.02em; }
.trust-item svg{ width: 20px; height: 20px; color: var(--honey); flex-shrink: 0; }

/* ==========================================================================
   Cards: benefits / services / values / steps
   ========================================================================== */
.grid-3{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.grid-4{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.benefit-card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 34px 30px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.benefit-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-card); }
.benefit-icon{
  width: 54px; height: 54px; border-radius: 16px;
  background: var(--cream-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.benefit-icon svg{ width: 26px; height: 26px; color: var(--wine); }
.benefit-card h3{ font-size: 20px; margin-bottom: 8px; }
.benefit-card p{ color: var(--espresso-3); font-size: 15px; margin: 0; }

.service-card{
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column;
}
.service-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-card); }
.service-media{ aspect-ratio: 4/3; overflow: hidden; }
.service-media img{ width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-media img{ transform: scale(1.06); }
.service-body{ padding: 26px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.service-body h3{ font-size: 21px; margin-bottom: 8px; }
.service-body p{ color: var(--espresso-3); font-size: 14.8px; margin-bottom: 16px; flex: 1; }
.service-tag{
  display: inline-flex; align-self: flex-start;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--cream-soft); color: var(--wine);
  padding: 5px 12px; border-radius: 999px; margin-bottom: 14px;
}
.service-link{ font-weight: 700; font-size: 14px; color: var(--espresso-2); display: inline-flex; align-items: center; gap: 6px; }
.service-link svg{ width: 16px; height: 16px; transition: transform .18s ease; }
.service-card:hover .service-link svg{ transform: translateX(4px); }

@media (max-width: 940px){
  .grid-3{ grid-template-columns: 1fr 1fr; }
  .grid-4{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px){
  .grid-3, .grid-2, .grid-4{ grid-template-columns: 1fr; }
}

/* ---------- Testimonials ---------- */
.testi-track{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card{
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 30px 28px; position: relative;
}
.testi-stars{ display: flex; gap: 3px; margin-bottom: 16px; color: var(--honey); }
.testi-stars svg{ width: 16px; height: 16px; }
.testi-card p{ font-size: 15.2px; color: var(--espresso); margin-bottom: 20px; }
.testi-who{ display: flex; align-items: center; gap: 12px; }
.testi-avatar{ width: 42px; height: 42px; border-radius: 50%; background: var(--cream-soft); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; color: var(--wine); flex-shrink: 0; }
.testi-who strong{ display: block; font-size: 14px; color: var(--espresso-2); }
.testi-who span{ font-size: 12.5px; color: var(--espresso-3); }

@media (max-width: 940px){ .testi-track{ grid-template-columns: 1fr; } }

/* ---------- About preview / split sections ---------- */
.split{
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center;
}
.split.reverse{ grid-template-columns: 1.1fr 0.9fr; }
.split.reverse .split-art{ order: 2; }
.split-art .stamp-frame{ aspect-ratio: 5/4.4; }
@media (max-width: 940px){
  .split, .split.reverse{ grid-template-columns: 1fr; }
  .split.reverse .split-art{ order: -1; }
}
.stat-row{ display: flex; gap: 36px; margin-top: 30px; flex-wrap: wrap; }
.stat-row div strong{ display: block; font-family: var(--font-display); font-size: 32px; color: var(--espresso-2); }
.stat-row div span{ font-size: 12.5px; color: var(--espresso-3); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }

.check-list{ list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 12px; }
.check-list li{ display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--espresso); }
.check-list svg{ width: 20px; height: 20px; color: var(--honey); flex-shrink: 0; margin-top: 2px; }

/* ---------- Final CTA banner ---------- */
.cta-banner{
  background: var(--espresso-2);
  border-radius: var(--radius-lg);
  padding: 64px 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  position: relative; overflow: hidden;
  color: var(--cream);
}
.cta-banner::before{
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(560px 260px at 88% 18%, rgba(196,136,31,0.35), transparent 70%);
  pointer-events: none;
}
.cta-banner h2{ color: var(--cream); font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 10px; max-width: 520px; }
.cta-banner p{ color: #E4D3B7; margin: 0; max-width: 460px; }
.cta-banner .actions{ display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }
@media (max-width: 800px){
  .cta-banner{ flex-direction: column; align-items: flex-start; padding: 44px 30px; }
}

/* ==========================================================================
   Page header (interior pages)
   ========================================================================== */
.page-hero{
  padding: 66px 0 78px;
  position: relative;
  overflow: hidden;
}
.page-hero .container{ position: relative; z-index: 1; max-width: 760px; }
.page-hero .breadcrumb{ font-size: 13px; font-weight: 600; color: var(--espresso-3); margin-bottom: 18px; }
.page-hero .breadcrumb a{ color: var(--wine); }
.page-hero h1{ font-size: clamp(34px, 4.4vw, 52px); margin-bottom: 16px; }
.page-hero .lede{ font-size: 17.5px; color: var(--espresso-3); max-width: 560px; }
.page-hero-deco{
  position: absolute; top: -80px; right: -60px; width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--honey-light), transparent 68%);
  opacity: 0.55;
}

/* ==========================================================================
   Products page — service grid with description
   ========================================================================== */
.offer-card{
  display: grid; grid-template-columns: 210px 1fr; gap: 26px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 26px; align-items: flex-start;
}
.offer-media{ border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 1/1; }
.offer-media img{ width: 100%; height: 100%; object-fit: cover; }
.offer-body h3{ font-size: 20px; margin-bottom: 8px; }
.offer-body p{ font-size: 14.6px; color: var(--espresso-3); margin-bottom: 12px; }
.offer-meta{ display: flex; gap: 18px; flex-wrap: wrap; font-size: 12.8px; font-weight: 700; color: var(--wine); text-transform: uppercase; letter-spacing: .05em; }
@media (max-width: 640px){ .offer-card{ grid-template-columns: 1fr; } }

/* ---------- How it works ---------- */
.steps-row{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.step-item{ position: relative; padding-top: 6px; }
.step-num{
  font-family: var(--font-display); font-size: 40px; color: var(--honey-light);
  -webkit-text-stroke: 1.5px var(--honey);
  margin-bottom: 10px; display: block;
}
.step-item h3{ font-size: 17.5px; margin-bottom: 6px; }
.step-item p{ font-size: 14px; color: var(--espresso-3); margin: 0; }
@media (max-width: 940px){ .steps-row{ grid-template-columns: 1fr 1fr; row-gap: 34px; } }
@media (max-width: 560px){ .steps-row{ grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq-list{ max-width: 760px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item{
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item summary{
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 26px; font-family: var(--font-display); font-size: 17.5px; color: var(--espresso-2);
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-plus{
  width: 30px; height: 30px; border-radius: 50%; background: var(--cream-soft); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; position: relative;
}
.faq-plus::before, .faq-plus::after{ content:""; position: absolute; background: var(--wine); border-radius: 2px; }
.faq-plus::before{ width: 12px; height: 2px; }
.faq-plus::after{ width: 2px; height: 12px; transition: transform .2s ease, opacity .2s ease; }
.faq-item[open] .faq-plus::after{ transform: rotate(90deg); opacity: 0; }
.faq-item p{ padding: 0 26px 24px; color: var(--espresso-3); font-size: 15px; margin: 0; }

/* ==========================================================================
   Menu page — price list
   ========================================================================== */
.menu-tabs{ display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 46px; }
.menu-tab{
  padding: 11px 20px; border-radius: 999px; border: 1.5px solid var(--line);
  font-weight: 700; font-size: 13.5px; color: var(--espresso-3); background: var(--card);
  cursor: pointer; transition: all .15s ease;
}
.menu-tab:hover{ border-color: var(--honey); color: var(--espresso-2); }
.menu-tab.active{ background: var(--espresso-2); border-color: var(--espresso-2); color: var(--cream); }

.menu-group{ margin-bottom: 58px; scroll-margin-top: 110px; }
.menu-group-head{ display: flex; align-items: baseline; gap: 18px; margin-bottom: 26px; }
.menu-group-head h2{ font-size: 27px; margin: 0; white-space: nowrap; }
.menu-group-head .rule{ flex: 1; height: 1px; background: repeating-linear-gradient(to right, var(--line) 0 6px, transparent 6px 12px); }
.menu-group-note{ font-size: 13.5px; color: var(--espresso-3); margin: -16px 0 24px; }

.menu-items{ display: grid; grid-template-columns: 1fr 1fr; gap: 10px 40px; }
.menu-item{
  display: flex; justify-content: space-between; gap: 16px;
  padding: 16px 0; border-bottom: 1px dashed var(--line);
}
.menu-item .info{ max-width: 78%; }
.menu-item h4{ font-family: var(--font-display); font-size: 16.5px; color: var(--espresso-2); margin: 0 0 4px; font-weight: 600; }
.menu-item .desc{ font-size: 13px; color: var(--espresso-3); margin: 0; }
.menu-item .price{ font-family: var(--font-display); font-weight: 700; font-size: 16.5px; color: var(--wine); white-space: nowrap; }
.menu-item .badge{
  display: inline-block; font-size: 10px; font-weight: 800; letter-spacing: .06em;
  color: #2A1B08; background: var(--honey-light); padding: 2px 8px; border-radius: 999px;
  margin-left: 8px; vertical-align: middle; text-transform: uppercase;
}
@media (max-width: 760px){ .menu-items{ grid-template-columns: 1fr; } }

.menu-note-card{
  background: var(--cream-soft); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 26px 28px; display: flex; gap: 18px; align-items: flex-start; margin-top: 10px;
}
.menu-note-card svg{ width: 26px; height: 26px; color: var(--wine); flex-shrink: 0; }
.menu-note-card p{ margin: 0; font-size: 14.5px; color: var(--espresso-3); }
.menu-note-card strong{ color: var(--espresso-2); }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid{ display: grid; grid-template-columns: 1fr 1.15fr; gap: 50px; align-items: flex-start; }
@media (max-width: 940px){ .contact-grid{ grid-template-columns: 1fr; } }

.contact-info-card{
  background: var(--espresso-2); color: var(--cream); border-radius: var(--radius-lg);
  padding: 40px 34px; position: relative; overflow: hidden;
}
.contact-info-card h3{ color: var(--cream); font-size: 23px; }
.contact-info-card > p{ color: #E4D3B7; font-size: 14.8px; }
.contact-rows{ list-style: none; margin: 26px 0; padding: 0; display: grid; gap: 20px; }
.contact-rows li{ display: flex; gap: 14px; align-items: flex-start; }
.contact-rows .ic{
  width: 40px; height: 40px; border-radius: 12px; background: rgba(251,243,231,0.12);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-rows svg{ width: 19px; height: 19px; color: var(--honey-light); }
.contact-rows strong{ display: block; font-size: 13.5px; margin-bottom: 2px; }
.contact-rows span, .contact-rows a{ font-size: 14px; color: #DFCDAF; }
.social-row{ display: flex; gap: 10px; margin-top: 8px; }
.social-row a{
  width: 42px; height: 42px; border-radius: 50%; background: rgba(251,243,231,0.1);
  display: flex; align-items: center; justify-content: center; transition: background .15s ease, transform .15s ease;
}
.social-row a:hover{ background: var(--honey); transform: translateY(-3px); }
.social-row svg{ width: 18px; height: 18px; color: var(--cream); }

.contact-form{
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 40px;
}
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field{ margin-bottom: 20px; }
.field label{ display: block; font-size: 13px; font-weight: 700; color: var(--espresso-2); margin-bottom: 7px; letter-spacing: .02em; }
.field input, .field textarea{
  width: 100%; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--cream); padding: 13px 16px; font-family: var(--font-body); font-size: 14.8px; color: var(--espresso);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus{ outline: none; border-color: var(--honey); box-shadow: 0 0 0 4px rgba(196,136,31,0.16); }
.field textarea{ resize: vertical; min-height: 130px; }
.form-note{ font-size: 12.8px; color: var(--espresso-3); margin-top: -6px; }
.form-success{
  display: none; align-items: center; gap: 12px; background: var(--cream-soft);
  border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 18px; margin-top: 16px; font-size: 14px; color: var(--espresso-2); font-weight: 600;
}
.form-success.show{ display: flex; }
.form-success svg{ width: 20px; height: 20px; color: var(--wine); flex-shrink: 0; }
@media (max-width: 560px){ .form-row{ grid-template-columns: 1fr; } }

.map-wrap{ border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); margin-top: 50px; }
.map-wrap iframe{ width: 100%; height: 360px; border: 0; display: block; filter: grayscale(0.15) sepia(0.12); }

.hours-card{ background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 26px 28px; }
.hours-card h3{ font-size: 18px; margin-bottom: 14px; }
.hours-row{ display: flex; justify-content: space-between; font-size: 14.2px; padding: 8px 0; border-bottom: 1px dashed var(--line); }
.hours-row:last-child{ border-bottom: none; }
.hours-row span:first-child{ color: var(--espresso-3); font-weight: 600; }
.hours-row span:last-child{ color: var(--espresso-2); font-weight: 700; }

/* ==========================================================================
   About page bits
   ========================================================================== */
.timeline{ display: grid; gap: 0; margin-top: 10px; }
.timeline-item{ display: grid; grid-template-columns: 90px 1fr; gap: 24px; padding: 26px 0; border-top: 1px solid var(--line); }
.timeline-item:last-child{ border-bottom: 1px solid var(--line); }
.timeline-year{ font-family: var(--font-display); font-size: 22px; color: var(--wine); }
.timeline-item h4{ font-size: 18px; margin-bottom: 6px; color: var(--espresso-2); font-family: var(--font-display); }
.timeline-item p{ margin: 0; color: var(--espresso-3); font-size: 14.6px; }

.value-card{
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 30px; text-align: left;
}
.value-card .num{ font-family: var(--font-display); font-size: 15px; color: var(--honey-dark); font-weight: 700; margin-bottom: 14px; letter-spacing: .05em; }
.value-card h3{ font-size: 19px; margin-bottom: 8px; }
.value-card p{ font-size: 14.4px; color: var(--espresso-3); margin: 0; }

.team-note{
  display: flex; gap: 20px; align-items: center; background: var(--cream-soft);
  border-radius: var(--radius-md); padding: 26px 30px; margin-top: 40px;
}
.team-note img{ width: 84px; height: 84px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 3px solid var(--card); }
.team-note h4{ margin: 0 0 4px; font-size: 17px; }
.team-note p{ margin: 0; font-size: 13.8px; color: var(--espresso-3); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{ background: var(--espresso); color: #D9C6A8; padding: 72px 0 26px; }
.footer-top{ display: grid; grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer-brand{ display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img{ height: 46px; filter: brightness(0) invert(1); }
.footer-brand span{ font-family: var(--font-display); font-size: 14px; letter-spacing: .08em; color: #F3E7D3; text-transform: uppercase; }
.site-footer p{ font-size: 14px; color: #C6AF8C; max-width: 300px; }
.footer-col h4{ color: #F3E7D3; font-family: var(--font-body); font-weight: 700; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul{ list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer-col a{ font-size: 14.5px; color: #C6AF8C; transition: color .15s ease; }
.footer-col a:hover{ color: var(--honey-light); }
.footer-col li{ display: flex; gap: 10px; font-size: 14px; color: #C6AF8C; }
.footer-col li svg{ width: 17px; height: 17px; color: var(--honey-light); flex-shrink: 0; margin-top: 2px; }
.footer-social{ display: flex; gap: 10px; margin-top: 18px; }
.footer-social a{
  width: 40px; height: 40px; border-radius: 50%; background: rgba(251,243,231,0.08);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover{ background: var(--honey); }
.footer-social svg{ width: 17px; height: 17px; color: #F3E7D3; }
.footer-bottom{
  border-top: 1px solid rgba(217,198,168,0.18); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: #A78D69;
}
.footer-bottom a{ color: #C6AF8C; }
.footer-bottom a:hover{ color: var(--honey-light); }

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

/* ==========================================================================
   Floating WhatsApp CTA
   ========================================================================== */
.whatsapp-float{
  position: fixed; right: 22px; bottom: 22px; z-index: 600;
  width: 60px; height: 60px; border-radius: 50%;
  background: #4C8C4A;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 30px -12px rgba(58,40,32,0.5);
  transition: transform .18s ease;
}
.whatsapp-float:hover{ transform: translateY(-3px) scale(1.04); }
.whatsapp-float svg{ width: 30px; height: 30px; color: #fff; }
@media (max-width: 560px){
  .whatsapp-float{ width: 54px; height: 54px; right: 16px; bottom: 16px; }
  .whatsapp-float svg{ width: 26px; height: 26px; }
}

/* ==========================================================================
   Misc utilities
   ========================================================================== */
.text-center{ text-align: center; }
.mt-0{ margin-top: 0; }
.reveal{ opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view{ opacity: 1; transform: translateY(0); }

@media (max-width: 940px){
  .section{ padding: 70px 0; }
  .cta-banner{ text-align: left; }
}


/* ==========================================================================
   ASTRA & ELEMENTOR FULL-WIDTH AND BACKGROUND COLOR NORMALIZATION
   ========================================================================== */
html, body, #page, #content, .site-content, #primary, #main,
.ast-plain-container, .ast-page-builder-template, .entry-content,
.ast-separate-container, .ast-single-post, .site, article {
  background-color: var(--cream, #FBF3E7) !important;
  background: var(--cream, #FBF3E7) !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
}

.ast-container {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

.site-content {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.ast-plain-container.ast-no-sidebar #primary,
.ast-page-builder-template.ast-no-sidebar #primary {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

/* Ensure Elementor Root Containers are 100% Full Width */
.elementor .e-con.e-parent,
.elementor .e-con-full,
.elementor-section.elementor-section-boxed > .elementor-container,
.elementor-section.elementor-section-full_width {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Sections Full Width & Background Colors */
.page-hero {
  background-color: var(--cream, #FBF3E7) !important;
  width: 100% !important;
}

.section {
  background-color: var(--cream, #FBF3E7);
  width: 100% !important;
}

.section.section-alt,
.section-alt {
  background-color: var(--cream-soft, #F3E7D3) !important;
  background: var(--cream-soft, #F3E7D3) !important;
  width: 100% !important;
}

.section-dark {
  background-color: var(--espresso, #3A2820) !important;
  background: var(--espresso, #3A2820) !important;
  width: 100% !important;
}

/* Boxed inner content container */
.container {
  width: 100% !important;
  max-width: 1180px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 28px !important;
  padding-right: 28px !important;
  box-sizing: border-box !important;
}
