/* =========================================================
   G-MALKIN — PREMIUM STYLESHEET
   Modern design with glassmorphism, animations, parallax
   ========================================================= */

/* ---------- Design tokens ---------- */
:root{
  /* Colors — wheat field / chakki atta palette */
  --wheat-50:  #FBF3E0;
  --wheat-100: #F4E4BF;
  --wheat-200: #ECDAA8;
  --wheat-300: #E3B65C;
  --wheat-500: #C98A2B;
  --wheat-600: #A96E1E;
  --wheat-700: #8A5716;
  --husk-800:  #4A3218;
  --husk-900:  #2E1E10;
  --husk-950:  #1A0F06;
  --ink:       #3A2B1E;
  --ink-soft:  #7A6650;
  --paper:     #FFFDF8;
  --leaf:      #25D366;
  --leaf-dark: #1EBB56;
  --star:      #F0B42A;
  --danger:    #C0392B;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Work Sans', Arial, sans-serif;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --shadow-soft: 0 8px 32px rgba(74,50,24,.08);
  --shadow-md:   0 12px 40px rgba(74,50,24,.12);
  --shadow-hover: 0 20px 50px rgba(74,50,24,.18);
  --shadow-glow:  0 0 30px rgba(201,138,43,.25);

  --container: 1200px;
  --header-h: 80px;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; overflow-x: hidden; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  max-width: 100vw;
}
img{ 
  max-width:100%; 
  display:block; 
  height:auto; 
}
a{ color: inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,h4{
  font-family: var(--font-display);
  color: var(--husk-800);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 600;
}
p{ margin: 0 0 1em; color: var(--ink); }

/* Prevent any element from causing horizontal scroll */
section, div, header, footer, main{
  max-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 560px){
  body{ font-size: 15px; line-height: 1.65; }
  h1{ font-size: 1.8rem; }
  h2{ font-size: 1.5rem; }
  h3{ font-size: 1.2rem; }
  h4{ font-size: 1rem; }
  
  /* Prevent text scaling on iOS */
  html {
    -webkit-text-size-adjust: 100%;
  }
}
.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

@media (max-width: 1024px){
  .container{ padding: 0 20px; }
}

@media (max-width: 560px){
  .container{ padding: 0 18px; }
}

section{ position: relative; overflow-x: hidden; }
.section-pad{ padding: 100px 0; }
.bg-paper{ background: var(--paper); }
.bg-wheat{ background: var(--wheat-50); }
.bg-dark{ background: var(--husk-900); }

@media (max-width: 860px){
  .section-pad{ padding: 60px 0; }
}

@media (max-width: 560px){
  .section-pad{ padding: 50px 0; }
}

.eyebrow{
  display:inline-block;
  font-family: var(--font-body);
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--wheat-500);
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
}
.eyebrow::before{
  content:'';
  display:inline-block;
  width:28px; height:2px;
  background: var(--wheat-500);
  margin-right: 12px;
  vertical-align: middle;
}

@media (max-width: 560px){
  .eyebrow{
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    margin-bottom: 12px;
  }
  
  .eyebrow::before{
    width: 22px;
    margin-right: 10px;
  }
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content: center;
  gap:10px;
  padding: 15px 34px;
  border-radius: 100px;
  font-weight: 600;
  font-size: .95rem;
  border: none;
  cursor: pointer;
  transition: all .35s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
  min-height: 44px; /* Touch target minimum */
  text-align: center;
}

@media (max-width: 560px){
  .btn{ 
    padding: 13px 28px; 
    font-size: 0.88rem;
    gap: 8px;
    min-height: 48px; /* Larger touch target on mobile */
  }
}
.btn::before{
  content:'';
  position:absolute; inset:0;
  background: linear-gradient(120deg, rgba(255,255,255,.25) 0%, transparent 60%);
  opacity:0;
  transition: opacity .35s ease;
}
.btn:hover::before{ opacity:1; }
.btn:hover{ transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.btn:active{ transform: translateY(-1px); }
.btn-primary{
  background: linear-gradient(135deg, var(--wheat-500), var(--wheat-600));
  color: var(--paper);
}
.btn-primary:hover{
  background: linear-gradient(135deg, var(--wheat-600), var(--wheat-700));
  box-shadow: 0 8px 30px rgba(201,138,43,.35);
}
.btn-whatsapp{
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
}
.btn-whatsapp:hover{
  background: linear-gradient(135deg, #1EBB56, #0E7A6B);
  box-shadow: 0 8px 30px rgba(37,211,102,.35);
}
.btn-outline{
  background: transparent;
  border: 2px solid var(--wheat-500);
  color: var(--wheat-600);
}
.btn-outline:hover{
  background: var(--wheat-500);
  color: #fff;
}
.btn-glow{
  animation: btnGlow 3s ease-in-out infinite;
}
@keyframes btnGlow{
  0%, 100%{ box-shadow: 0 0 20px rgba(37,211,102,.2); }
  50%{ box-shadow: 0 0 40px rgba(37,211,102,.4); }
}

/* ---------- Scroll reveal animations ---------- */
.reveal{
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s var(--ease-out-expo), transform .9s var(--ease-out-expo);
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}
.reveal-left{
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity .9s var(--ease-out-expo), transform .9s var(--ease-out-expo);
}
.reveal-left.is-visible{
  opacity: 1;
  transform: translateX(0);
}
.reveal-right{
  opacity: 0;
  transform: translateX(50px);
  transition: opacity .9s var(--ease-out-expo), transform .9s var(--ease-out-expo);
}
.reveal-right.is-visible{
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale{
  opacity: 0;
  transform: scale(.9);
  transition: opacity .9s var(--ease-out-expo), transform .9s var(--ease-out-expo);
}
.reveal-scale.is-visible{
  opacity: 1;
  transform: scale(1);
}
.reveal-stagger > *{
  opacity:0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease-out-expo), transform .7s var(--ease-out-expo);
}
.reveal-stagger.is-visible > *{
  opacity:1;
  transform: translateY(0);
}
.reveal-stagger.is-visible > *:nth-child(1){ transition-delay: .05s; }
.reveal-stagger.is-visible > *:nth-child(2){ transition-delay: .12s; }
.reveal-stagger.is-visible > *:nth-child(3){ transition-delay: .19s; }
.reveal-stagger.is-visible > *:nth-child(4){ transition-delay: .26s; }
.reveal-stagger.is-visible > *:nth-child(5){ transition-delay: .33s; }
.reveal-stagger.is-visible > *:nth-child(6){ transition-delay: .4s; }
.reveal-stagger.is-visible > *:nth-child(7){ transition-delay: .47s; }

@media (prefers-reduced-motion: reduce){
  .reveal, .reveal-left, .reveal-right, .reveal-scale,
  .reveal-stagger > *{
    opacity:1; transform:none; transition:none;
  }
  html{ scroll-behavior: auto; }
}

/* ---------- Header ---------- */
.site-header{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 1000;
  height: var(--header-h);
  display:flex;
  align-items:center;
  background: transparent;
  transition: all .4s var(--ease-out-expo);
}
.site-header.scrolled{
  background: rgba(255,253,248,.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 4px 30px rgba(74,50,24,.08);
  height: 70px;
}
.site-header.hidden{
  transform: translateY(-100%);
}
.site-header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 20px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-family: var(--font-display);
  font-weight:700;
  font-size:1.3rem;
  color: var(--husk-800);
  transition: transform .3s ease;
}
.brand:hover{ transform: scale(1.03); }
.brand-logo{
  width:52px;
  height:52px;
  object-fit: contain;
  border-radius: 50%;
  transition: transform .4s var(--ease-spring);
}
.site-header.scrolled .brand-logo{
  width: 44px;
  height: 44px;
}
.brand:hover .brand-logo{ transform: rotate(-5deg) scale(1.08); }
.brand-text{
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -.02em;
}
/* hero white brand */
.hero .brand, .hero .brand-text{ color: #fff; }

.main-nav ul{ display:flex; gap: 36px; }
.main-nav a{
  font-weight: 600;
  font-size: .95rem;
  color: var(--husk-800);
  position: relative;
  padding: 6px 0;
}
.main-nav a::after{
  content:"";
  position:absolute; left:0; bottom:0;
  width:0; height:2.5px;
  background: linear-gradient(90deg, var(--wheat-500), var(--wheat-300));
  border-radius: 2px;
  transition: width .35s var(--ease-out-expo);
}
.main-nav a:hover::after, .main-nav a.active::after{ width:100%; }
.main-nav a.active{ color: var(--wheat-600); }

.header-actions{ display:flex; align-items:center; gap: 18px; }
.hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none; border:none; cursor:pointer;
  z-index: 1200;
  padding: 8px;
}
.hamburger span{
  width:26px; height:2px;
  background: var(--husk-800);
  border-radius:2px;
  transition: transform .3s var(--ease-out-expo), opacity .3s ease;
}
.hamburger.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2){ opacity:0; }
.hamburger.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px){
  .main-nav{
    position: fixed; inset:0;
    background: rgba(255,253,248,.97);
    backdrop-filter: blur(20px);
    display:flex; align-items:center; justify-content:center;
    transform: translateX(100%);
    transition: transform .5s var(--ease-out-expo);
    z-index: 1100;
  }
  .main-nav.open{ transform: translateX(0); }
  .main-nav ul{ flex-direction:column; text-align:center; gap:40px; }
  .main-nav a{ font-size: 1.6rem; }
  .hamburger{ display:flex; }
  .header-actions .btn-whatsapp span.long{ display:none; }
}

@media (max-width: 560px){
  .site-header{ height: 60px; }
  .site-header.scrolled{ height: 56px; }
  .site-header .container{ padding: 0 16px; }
  .brand-logo{ width: 40px; height: 40px; }
  .site-header.scrolled .brand-logo{ width: 36px; height: 36px; }
  .brand-text{ font-size: 1.05rem; }
  .header-actions{ gap: 10px; }
  .header-actions .btn{ padding: 9px 18px; font-size: 0.82rem; }
  .header-actions .btn svg{ width: 16px; height: 16px; }
  .main-nav a{ font-size: 1.2rem; }
  .main-nav ul{ gap: 25px; }
  .hamburger{ padding: 6px; }
  .hamburger span{ width: 24px; }
}

/* ---------- Hero ---------- */
.hero{
  position:relative;
  min-height: 100vh;
  display:flex;
  align-items:center;
  padding-top: var(--header-h);
  overflow:hidden;
  background: linear-gradient(160deg, #1A0F06 0%, #2E1E10 35%, #4A3218 70%, #6B4B25 100%);
}
.hero-video-bg{
  position:absolute; inset:0;
  z-index: 1;
}
.hero-video-bg video{
  width:100%; height:100%;
  object-fit: cover;
  opacity:.3;
}
.hero-video-bg::after{
  content:'';
  position:absolute; inset:0;
  background: linear-gradient(160deg, rgba(26,15,6,.85) 0%, rgba(46,30,16,.7) 50%, rgba(74,50,24,.6) 100%);
}
.hero .container{
  position:relative; z-index:2;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items:center;
}
.hero-copy{ position: relative; z-index: 2; }
.hero-copy h1{
  color: #fff;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  margin-bottom:.25em;
  line-height: 1.08;
}
.hero-copy h1 em{
  font-style: normal;
  background: linear-gradient(135deg, var(--wheat-300), var(--wheat-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-copy h2{
  color: rgba(255,255,255,.8);
  font-weight:400;
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  margin-bottom: 1.6em;
  font-family: var(--font-body);
}
.hero-copy h2 em{
  font-style: normal;
  color: var(--wheat-300);
}
.hero-copy .btn{ margin-top: 10px; }

.hero-buttons{
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}

.hero-buttons .btn{
  margin: 0;
}

.hero-buttons .btn-outline{
  border-color: rgba(255,255,255,.4);
  color: #fff;
}

@media (max-width: 860px){
  .hero-buttons{
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  
  .hero-buttons .btn{
    width: 100%;
    max-width: 260px;
  }
}

@media (max-width: 560px){
  .hero-buttons{
    gap: 8px;
  }
  
  .hero-buttons .btn{
    max-width: 240px;
    padding: 11px 20px;
    font-size: 0.82rem;
  }
}
.hero-visual{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero-visual img{
  max-height: 520px;
  width: auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.5));
  animation: heroFloat 4s ease-in-out infinite;
}
@keyframes heroFloat{
  0%, 100%{ transform: translateY(0) rotate(0deg); }
  50%{ transform: translateY(-18px) rotate(1deg); }
}
.hero-badge{
  position:absolute;
  bottom: 30px; left: 0;
  background: rgba(255,253,248,.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  color: #fff;
  display:flex; align-items:center; gap:12px;
  font-size: .9rem;
  font-weight: 600;
  animation: badgePulse 3s ease-in-out infinite;
}

@media (max-width: 860px){
  .hero-badge{
    position: static;
    margin: 20px auto 0;
    justify-content: center;
    font-size: 0.75rem;
    padding: 10px 16px;
    max-width: 260px;
  }
  
  .hero-badge .badge-icon{
    width: 30px;
    height: 30px;
    font-size: 0.95rem;
  }
}

@media (max-width: 560px){
  .hero-badge{
    margin: 15px auto 0;
    font-size: 0.7rem;
    padding: 9px 14px;
    max-width: 240px;
    gap: 10px;
  }
  
  .hero-badge .badge-icon{
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }
}
.hero-badge .badge-icon{
  width:40px; height:40px;
  background: var(--wheat-500);
  border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  font-size: 1.2rem;
}
@keyframes badgePulse{
  0%,100%{ box-shadow: 0 0 0 0 rgba(201,138,43,.3); }
  50%{ box-shadow: 0 0 0 12px rgba(201,138,43,0); }
}

.scroll-cue{
  position:absolute; bottom: 30px; left:50%; transform: translateX(-50%);
  color: rgba(255,255,255,.6); font-size:.72rem; letter-spacing:.22em; text-transform:uppercase;
  display:flex; flex-direction:column; align-items:center; gap:8px; z-index:2;
  animation: bob 2.8s ease-in-out infinite;
}
.scroll-cue .line{ width:1px; height:38px; background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent); }
@keyframes bob{ 0%,100%{ transform: translate(-50%,0);} 50%{ transform: translate(-50%,10px);} }

@media (max-width: 860px){
  .hero{ min-height: auto; padding: calc(var(--header-h) + 30px) 0 40px; }
  .hero .container{ grid-template-columns: 1fr; text-align:center; gap:25px; }
  .hero-copy h1{ font-size: clamp(1.75rem, 7vw, 2.5rem); }
  .hero-copy h2{ font-size: clamp(0.95rem, 3.5vw, 1.2rem); }
  .hero-copy p{ font-size: 0.9rem !important; line-height: 1.5 !important; padding: 0 10px; }
  .hero-visual{ order: 2; }
  .hero-copy{ order: 1; }
  .hero-visual img{ max-height: 280px; margin: 0 auto; }
  .scroll-cue{ display: none; }
}

@media (max-width: 560px){
  .hero{ padding: calc(var(--header-h) + 20px) 0 35px; }
  .hero .container{ gap: 20px; }
  .hero-copy h1{ 
    font-size: 1.65rem; 
    line-height: 1.2; 
    margin-bottom: 0.3em;
    letter-spacing: -0.01em;
  }
  .hero-copy h2{ 
    font-size: 0.95rem; 
    margin-bottom: 0.8em;
    line-height: 1.35;
  }
  .hero-copy p{ 
    font-size: 0.88rem !important; 
    margin-bottom: 1em !important; 
    line-height: 1.5 !important;
    padding: 0 5px;
  }
  .hero-visual img{ max-height: 200px; }
}

/* ---------- Story / video section ---------- */
.story-section .container{
  display:grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items:center;
}
.story-copy h2{ font-size: clamp(1.6rem, 3vw, 2.4rem); }
.story-copy .btn-play{
  display:inline-flex; align-items:center; gap:14px; margin-top:20px;
  font-weight:600; color: var(--wheat-600);
  cursor: pointer;
  transition: color .3s ease;
}
.story-copy .btn-play:hover{ color: var(--wheat-700); }
.story-copy .btn-play .circle{
  width:50px; height:50px; border-radius:50%;
  background: linear-gradient(135deg, var(--wheat-500), var(--wheat-600));
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size: 1.1rem;
  transition: transform .3s var(--ease-spring), box-shadow .3s ease;
  box-shadow: 0 4px 20px rgba(201,138,43,.3);
}
.story-copy .btn-play:hover .circle{
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(201,138,43,.4);
}

.story-visual{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.story-visual video{
  width:100%;
  display:block;
  border-radius: var(--radius-lg);
}

@media (max-width: 860px){
  .story-section .container{ grid-template-columns: 1fr; gap:40px; }
  .story-section{ padding: 60px 0; }
  .story-copy h2{ font-size: 1.8rem; }
  .story-copy p{ font-size: 0.95rem; }
}

@media (max-width: 560px){
  .story-section{ padding: 50px 0; }
  .story-copy{ text-align: center; }
  .story-copy .btn-play{ justify-content: center; }
}

/* ---------- Section heading ---------- */
.section-heading{
  text-align:center;
  max-width:680px;
  margin: 0 auto 64px;
}
.section-heading h2{
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
}

@media (max-width: 860px){
  .section-heading{ margin: 0 auto 40px; }
  .section-heading h2{ font-size: 1.8rem; }
  .section-heading p{ font-size: 0.95rem; }
}

@media (max-width: 560px){
  .section-heading{ margin: 0 auto 30px; }
  .section-heading h2{ font-size: 1.6rem; }
  .section-heading .eyebrow{ font-size: 0.7rem; }
}

/* ---------- Recipe cards ---------- */
.recipe-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1200px){ 
  .recipe-grid{ grid-template-columns: repeat(3,1fr); gap: 22px; } 
}

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

@media (max-width: 560px){ 
  .recipe-grid{ grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .card-icon{ height: 140px; font-size: 3rem; }
  .card-body{ padding: 20px; }
  .card-body h3{ font-size: 1.05rem; }
  .card-body p{ font-size: 0.85rem; }
}

/* Recipe Card Styles */
.recipe-card{
  position: relative;
  overflow: hidden;
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: all .5s var(--ease-out-expo);
  border: 1px solid rgba(227,182,92,.1);
  cursor: pointer;
}

.recipe-card:hover{
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(74,50,24,.15);
  border-color: var(--wheat-300);
}

/* Recipe Card Image Wrapper */
.card-img-wrap{
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--wheat-50), var(--wheat-100));
}

.card-img-wrap img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out-expo), filter .5s ease;
}

.recipe-card:hover .card-img-wrap img{
  transform: scale(1.1);
  filter: brightness(1.05);
}

/* Card Body */
.card-body{ 
  padding: 24px; 
  background: var(--paper);
  position: relative;
  z-index: 1;
}

.card-body .tag{
  font-size:.75rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color: var(--wheat-600);
  background: linear-gradient(135deg, rgba(201,138,43,.12), rgba(227,182,92,.12));
  padding: 6px 14px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 12px;
  border: 1px solid rgba(201,138,43,.2);
  transition: all .3s ease;
}

.recipe-card:hover .card-body .tag{
  background: linear-gradient(135deg, var(--wheat-500), var(--wheat-600));
  color: #fff;
  border-color: var(--wheat-600);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201,138,43,.3);
}

.card-body h3{ 
  font-size:1.15rem; 
  margin: 12px 0 10px; 
  color: var(--husk-800);
  transition: color .3s ease;
}

.recipe-card:hover .card-body h3{
  color: var(--wheat-600);
}

.card-body p{ 
  font-size: .9rem; 
  color: var(--ink-soft); 
  margin:0; 
  line-height:1.6; 
}

/* Stagger animation for grid items */
.reveal-stagger.is-visible .recipe-card{
  animation: cardSlideUp 0.8s var(--ease-out-expo) backwards;
}

.reveal-stagger.is-visible .recipe-card:nth-child(1){ animation-delay: 0.05s; }
.reveal-stagger.is-visible .recipe-card:nth-child(2){ animation-delay: 0.1s; }
.reveal-stagger.is-visible .recipe-card:nth-child(3){ animation-delay: 0.15s; }
.reveal-stagger.is-visible .recipe-card:nth-child(4){ animation-delay: 0.2s; }
.reveal-stagger.is-visible .recipe-card:nth-child(5){ animation-delay: 0.25s; }
.reveal-stagger.is-visible .recipe-card:nth-child(6){ animation-delay: 0.3s; }
.reveal-stagger.is-visible .recipe-card:nth-child(7){ animation-delay: 0.35s; }

@keyframes cardSlideUp{
  0%{ 
    opacity: 0; 
    transform: translateY(50px) scale(0.95); 
  }
  100%{ 
    opacity: 1; 
    transform: translateY(0) scale(1); 
  }
}

/* Optional: Add shine effect on hover */
.recipe-card::before{
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.3) 50%,
    transparent 100%
  );
  transition: left 0.6s ease;
  z-index: 2;
  pointer-events: none;
}

.recipe-card:hover::before{
  left: 100%;
}

/* Add subtle grain texture overlay */
.card-img-wrap::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(
      0deg,
      rgba(0,0,0,0.03) 0px,
      transparent 1px,
      transparent 2px,
      rgba(0,0,0,0.03) 3px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(0,0,0,0.03) 0px,
      transparent 1px,
      transparent 2px,
      rgba(0,0,0,0.03) 3px
    );
  opacity: 0.4;
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* Tag pulse animation */
@keyframes tagPulse{
  0%, 100%{ transform: scale(1); }
  50%{ transform: scale(1.05); }
}

.recipe-card:hover .card-body .tag{
  animation: tagPulse 1s ease-in-out infinite;
}

/* Mobile optimizations */
@media (max-width: 560px){
  .card-img-wrap{
    height: 200px;
  }
  
  .card-body{
    padding: 20px;
  }
  
  .recipe-card:hover{
    transform: translateY(-8px) scale(1.01);
  }
  
  .recipe-card:hover .card-img-wrap img{
    transform: scale(1.05);
  }
  
  /* Disable complex animations on mobile for performance */
  .recipe-card::before{
    display: none;
  }
}

/* Accessibility: Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce){
  .recipe-card,
  .recipe-card *{
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .recipe-card:hover{
    transform: translateY(-4px);
  }
  
  .recipe-card:hover .card-img-wrap img{
    transform: scale(1.05);
  }
}

/* ---------- Feature / zig-zag ---------- */
.feature-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items:center;
  min-height: auto;
}
.feature-row.reverse .feature-copy{ order:2; }
.feature-row.reverse .feature-visual{ order:1; }
.feature-copy h2{
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

@media (max-width: 1024px){
  .feature-row{ gap: 60px; }
}

@media (max-width: 860px){
  .feature-row, .story-section .container{
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .feature-row.reverse .feature-copy,
  .feature-row.reverse .feature-visual{ order:initial; }
  .feature-copy h2{ font-size: 1.8rem; }
  .feature-copy p{ font-size: 0.95rem; }
}

@media (max-width: 560px){
  .feature-row{ gap: 30px; }
  .feature-copy h2{ font-size: 1.6rem; text-align: center; }
  .feature-copy p{ text-align: center; }
  .feature-copy .eyebrow{ display: flex; justify-content: center; }
  .feature-copy .btn{ margin: 10px auto 0; display: block; width: fit-content; }
}
.feature-visual{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}
.feature-visual img{
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  transition: transform .6s var(--ease-out-expo);
  display: block;
}
.feature-visual:hover img{
  transform: scale(1.03);
}
.feature-visual-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:16px;
}
.feature-visual-grid img{
  border-radius: var(--radius-md);
  height:100%;
  width: 100%;
  object-fit: cover;
}

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

/* ---------- Stats ---------- */
.stats-row{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 60px 0;
}
.stat-item{
  text-align:center;
  padding: 32px 16px;
  border-radius: var(--radius-md);
  background: rgba(255,253,248,.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.1);
}
.stat-num{
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--wheat-300);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label{
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  letter-spacing: .05em;
}
@media (max-width: 768px){
  .stats-row{ grid-template-columns: repeat(2,1fr); gap: 20px; padding: 40px 0; }
  .stat-item{ padding: 24px 12px; }
  .stat-num{ font-size: clamp(1.6rem, 8vw, 2.4rem); }
  .stat-label{ font-size: 0.8rem; }
}

@media (max-width: 560px){
  .stats-row{ grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }
}

/* ---------- Testimonials ---------- */
.testimonial-slider{ 
  position:relative; 
  max-width: 780px; 
  margin: 0 auto; 
  overflow: hidden;
  width: 100%;
}

@media (max-width: 860px){
  .testimonial-slider{ max-width: 600px; }
  .t-card{ padding: 36px 28px; }
  .t-card::before{ font-size: 4rem; top: 15px; left: 20px; }
  .t-card blockquote{ font-size: 0.98rem; }
}

@media (max-width: 560px){
  .testimonial-slider{ max-width: 100%; }
  .t-card{ padding: 30px 24px; }
  .t-card::before{ font-size: 3rem; top: 10px; left: 15px; }
  .t-card .avatar{ width: 60px; height: 60px; font-size: 1.3rem; }
  .t-card h4{ font-size: 1rem; }
  .t-card .role{ font-size: 0.8rem; }
  .t-card blockquote{ font-size: 0.92rem; }
  .slider-arrow{ width: 40px; height: 40px; font-size: 1rem; }
}

.testimonial-track{ 
  overflow:hidden; 
  border-radius: var(--radius-lg); 
  width: 100%;
}

.testimonial-slides{ 
  display:flex; 
  transition: transform .7s var(--ease-out-expo); 
  width: 100%;
}

.t-slide{ 
  min-width:100%; 
  padding: 10px; 
  flex-shrink: 0;
  box-sizing: border-box;
}
.t-card{
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align:center;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(227,182,92,.1);
  position: relative;
}
.t-card::before{
  content: '\201C';
  position:absolute; top:20px; left:30px;
  font-size: 5rem;
  color: var(--wheat-100);
  font-family: Georgia, serif;
  line-height:1;
}
.t-card .avatar{
  width:72px; height:72px;
  border-radius:50%;
  margin:0 auto 16px;
  display:flex; align-items:center; justify-content:center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-display);
  background: linear-gradient(135deg, var(--wheat-500), var(--wheat-600));
  box-shadow: 0 4px 20px rgba(201,138,43,.25);
}
.t-card h4{ margin-bottom:4px; font-size: 1.1rem; }
.t-card .role{ color: var(--ink-soft); font-size:.85rem; margin-bottom:12px; }
.t-card .stars{ color: var(--star); letter-spacing:4px; margin-bottom: 16px; font-size:1.1rem; }
.t-card blockquote{
  font-style: italic;
  color: var(--ink);
  margin: 0 0 18px;
  font-size:1.05rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.t-card .meta{
  font-size:.78rem;
  color: var(--ink-soft);
  text-transform:uppercase;
  letter-spacing:.08em;
}
.slider-controls{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:16px;
  margin-top: 30px;
}
.slider-arrow{
  width:48px; height:48px; border-radius:50%;
  border: 2px solid var(--wheat-300);
  background:transparent;
  color: var(--wheat-600);
  cursor:pointer;
  font-size:1.2rem;
  display:flex; align-items:center; justify-content:center;
  transition: all .3s var(--ease-out-expo);
}
.slider-arrow:hover{
  background: var(--wheat-500);
  border-color: var(--wheat-500);
  color:#fff;
  transform: scale(1.08);
}
.slider-dots{ display:flex; gap:8px; }
.slider-dots button{
  width:10px; height:10px; border-radius:50%; border:none;
  background: var(--wheat-200);
  cursor:pointer;
  transition: all .3s var(--ease-out-expo);
}
.slider-dots button.active{
  background: var(--wheat-500);
  transform: scale(1.4);
  box-shadow: 0 0 8px rgba(201,138,43,.4);
}

/* ---------- Map ---------- */
.map-wrap{
  border-radius: var(--radius-lg);
  overflow:hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(227,182,92,.1);
}
.map-wrap iframe{ width:100%; height: 420px; border:0; display:block; }

@media (max-width: 860px){
  .map-wrap iframe{ height: 350px; }
}

@media (max-width: 560px){
  .map-wrap iframe{ height: 280px; }
  .map-wrap{ border-radius: var(--radius-md); }
}

/* ---------- CTA banner ---------- */
.cta-banner{
  background: linear-gradient(135deg, var(--husk-900) 0%, var(--husk-800) 50%, #5C3D1E 100%);
  color:#fff;
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}
.cta-banner::before{
  content:'';
  position:absolute; inset:0;
  background: radial-gradient(ellipse at 20% 50%, rgba(201,138,43,.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(227,182,92,.1) 0%, transparent 60%);
}
.cta-inner{
  text-align:center;
  position:relative;
  z-index:1;
}
.cta-banner h2{
  color:#fff;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  max-width: 800px;
  margin: 0 auto 30px;
}

@media (max-width: 860px){
  .cta-banner{ padding: 60px 0; }
  .cta-banner h2{ font-size: 1.6rem; }
}

@media (max-width: 560px){
  .cta-banner{ padding: 50px 0; }
  .cta-banner h2{ font-size: 1.4rem; }
}

/* ---------- Footer ---------- */
.site-footer{
  background: var(--husk-950);
  color: rgba(255,255,255,.85);
  padding: 70px 0 0;
}
.footer-top{
  display:grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .brand{ margin-bottom: 16px; }
.footer-brand .brand-text{ color: #fff; }
.footer-tagline{
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  margin:0;
}
.footer-links-group h4{
  color: var(--wheat-300);
  font-size: .95rem;
  margin-bottom: 18px;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: .03em;
}
.footer-links-group ul li{ margin-bottom: 10px; }
.footer-links-group ul a{
  color: rgba(255,255,255,.65);
  font-size: .92rem;
  transition: color .3s ease, padding-left .3s ease;
}
.footer-links-group ul a:hover{
  color: var(--wheat-300);
  padding-left: 6px;
}

.footer-bottom-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap: 20px;
  padding: 30px 0;
}
.footer-social{ display:flex; gap: 12px; }
.footer-social a{
  width:42px; height:42px; border-radius:50%;
  border:1px solid rgba(255,255,255,.2);
  display:flex; align-items:center; justify-content:center;
  transition: all .3s var(--ease-out-expo);
}
.footer-social a:hover{
  background: var(--wheat-500);
  border-color: var(--wheat-500);
  transform: translateY(-3px) scale(1.05);
}
.footer-copy{
  font-size:.82rem;
  color: rgba(255,255,255,.4);
  margin:0;
}

@media (max-width: 900px){
  .footer-top{ grid-template-columns: 1fr 1fr; gap: 30px; }
  .site-footer{ padding: 50px 0 0; }
  .footer-top{ padding-bottom: 40px; }
}

@media (max-width: 768px){
  .footer-top{ grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .footer-brand{ margin-bottom: 8px; }
  .footer-brand .brand{ justify-content: center; }
  .footer-links-group{ text-align: center; }
}

@media (max-width: 560px){
  .site-footer{ padding: 40px 0 0; }
  .footer-top{ gap: 20px; padding-bottom: 32px; }
  .footer-brand .brand{ margin-bottom: 12px; }
  .footer-tagline{ font-size: 0.85rem; margin-bottom: 0; }
  .footer-links-group h4{ margin-bottom: 14px; font-size: 0.9rem; }
  .footer-bottom-row{ flex-direction:column; text-align:center; gap: 16px; padding: 24px 0; }
  .footer-social{ justify-content: center; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero{
  padding: calc(var(--header-h) + 80px) 0 80px;
  background: linear-gradient(160deg, #1A0F06, #2E1E10 40%, #4A3218 80%);
  text-align:center;
  position:relative;
  overflow:hidden;
}
.page-hero::before{
  content:'';
  position:absolute; inset:0;
  background: radial-gradient(ellipse at 50% 120%, rgba(201,138,43,.15) 0%, transparent 70%);
}
.page-hero .container{ position:relative; z-index:1; }
.page-hero .eyebrow{ color: var(--wheat-300); }
.page-hero .eyebrow::before{ background: var(--wheat-300); }
.page-hero h1{
  color:#fff;
  font-size: clamp(2rem,4.5vw,3.2rem);
  margin:0;
}

@media (max-width: 860px){
  .page-hero{ padding: calc(var(--header-h) + 50px) 0 50px; }
  .page-hero h1{ font-size: 1.8rem; }
}

@media (max-width: 560px){
  .page-hero{ padding: calc(var(--header-h) + 40px) 0 40px; }
  .page-hero h1{ font-size: 1.6rem; }
  .page-hero .eyebrow{ font-size: 0.7rem; }
}

/* ---------- About page ---------- */
.checklist{ display:grid; gap: 18px; margin-top: 28px; }

@media (max-width: 560px){
  .checklist li{ 
    padding: 10px 14px; 
    font-size: 0.9rem; 
    gap: 12px;
  }
  .checklist .check{ width: 28px; height: 28px; }
}
.checklist li{
  display:flex; gap:16px; align-items:flex-start;
  font-weight:600; color: var(--husk-800);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: rgba(201,138,43,.04);
  transition: background .3s ease, transform .3s ease;
}
.checklist li:hover{
  background: rgba(201,138,43,.08);
  transform: translateX(4px);
}
.checklist .check{
  width: 32px; height:32px; border-radius:50%;
  background: linear-gradient(135deg, var(--wheat-500), var(--wheat-600));
  color:#fff; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  font-size:.85rem;
  box-shadow: 0 3px 12px rgba(201,138,43,.25);
}
.founders-block{
  display:grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 56px;
  align-items:center;
}
.founders-block img{
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
@media (max-width: 860px){ .founders-block{ grid-template-columns:1fr; } }
.vision-box{
  background: linear-gradient(135deg, var(--wheat-50), var(--wheat-100));
  border-radius: var(--radius-lg);
  padding: 56px;
  text-align:center;
  max-width:860px;
  margin:0 auto;
  border: 1px solid rgba(227,182,92,.2);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.vision-box::before{
  content:'';
  position:absolute;
  top:-50%; right:-30%;
  width:300px; height:300px;
  background: radial-gradient(circle, rgba(201,138,43,.08) 0%, transparent 70%);
  border-radius:50%;
}

@media (max-width: 860px){
  .vision-box{ padding: 40px 30px; }
}

@media (max-width: 560px){
  .vision-box{ padding: 30px 24px; border-radius: var(--radius-md); }
  .vision-box h2{ font-size: 1.6rem; }
  .vision-box p{ font-size: 0.95rem; }
}

/* ---------- Products page ---------- */
.why-strip{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  position:relative;
  margin-top: 50px;
}

@media (max-width: 1024px){ 
  .why-strip{ grid-template-columns: repeat(2,1fr); gap: 40px; }
  .why-strip .connector{ display:none; }
}

@media (max-width: 900px){ 
  .why-strip{ grid-template-columns: repeat(2,1fr); gap: 40px; } 
}

@media (max-width: 560px){ 
  .why-strip{ grid-template-columns: 1fr; }
}
.why-item{ text-align:center; padding: 0 24px; position:relative; }
.why-item .icon-circle{
  width:78px; height:78px; border-radius:50%;
  background: linear-gradient(135deg, var(--wheat-50), var(--wheat-100));
  color: var(--wheat-600);
  display:flex; align-items:center; justify-content:center;
  margin: 0 auto 20px;
  font-size:1.5rem;
  font-weight: 700;
  border: 2px solid var(--wheat-300);
  transition: all .4s var(--ease-out-expo);
  box-shadow: 0 4px 15px rgba(201,138,43,.1);
}
.why-item:hover .icon-circle{
  background: linear-gradient(135deg, var(--wheat-500), var(--wheat-600));
  color: #fff;
  border-color: var(--wheat-500);
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 8px 25px rgba(201,138,43,.3);
}
.why-item h4{ font-size:1.05rem; margin-bottom: 6px; }
.why-item p{ font-size:.86rem; color: var(--ink-soft); }
.why-strip .connector{
  position:absolute; top:39px; left:50%; width:100%; height:2px;
  background: repeating-linear-gradient(90deg, var(--wheat-300) 0 8px, transparent 8px 16px);
  z-index:0;
}
.why-item:last-child .connector{ display:none; }
@media (max-width: 900px){ .why-strip .connector{ display:none; } }

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

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

@media (max-width: 960px){ 
  .product-grid{ grid-template-columns: 1fr; max-width:500px; margin:0 auto; } 
}
.product-card{
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow:hidden;
  box-shadow: var(--shadow-soft);
  display:flex;
  flex-direction:column;
  transition: transform .5s var(--ease-out-expo), box-shadow .5s var(--ease-out-expo);
  border: 1px solid rgba(227,182,92,.08);
}
.product-card:hover{
  transform: translateY(-12px);
  box-shadow: var(--shadow-hover);
}
.product-card .product-img-wrap{
  height: 280px;
  background: linear-gradient(135deg, var(--wheat-50), #F5EAD5);
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 20px;
  overflow: hidden;
}
.product-card .product-img-wrap img{
  max-height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform .6s var(--ease-out-expo);
  display: block;
  margin: 0 auto;
}
.product-card:hover .product-img-wrap img{
  transform: scale(1.08) rotate(2deg);
}
.product-card .pc-body{
  padding: 28px;
  display:flex;
  flex-direction:column;
  flex:1;
}
.product-card .weight-badge{
  align-self:flex-start;
  background: linear-gradient(135deg, var(--wheat-500), var(--wheat-600));
  color:#fff;
  font-size:.72rem;
  font-weight:700;
  padding: 6px 16px;
  border-radius:100px;
  margin-bottom: 14px;
  letter-spacing:.06em;
  box-shadow: 0 3px 10px rgba(201,138,43,.25);
}
.product-card h3{ font-size:1.3rem; }
.product-card p{ font-size:.9rem; color: var(--ink-soft); flex:1; }
.product-card .btn{ align-self:flex-start; margin-top: 16px; }

.spotlight{
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 64px;
  align-items:center;
}
.spotlight img{
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform .5s var(--ease-out-expo);
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}
.spotlight img:hover{ transform: scale(1.02); }

@media (max-width: 1024px){
  .spotlight{ gap: 48px; }
}

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

@media (max-width: 560px){
  .spotlight{ gap: 30px; }
  .spotlight .eyebrow{ display: flex; justify-content: center; }
  .spotlight h2{ text-align: center; }
  .spotlight p{ text-align: center; }
  .spotlight .btn{ margin: 20px auto 0; display: block; width: fit-content; }
}

/* Closing banner image */
.closing-banner{
  border-radius: var(--radius-lg);
  overflow:hidden;
  box-shadow: var(--shadow-md);
}
.closing-banner img{
  width:100%;
  display:block;
}

/* ---------- Contact page ---------- */
.contact-wrap{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items:flex-start;
}

@media (max-width: 1024px){ 
  .contact-wrap{ gap: 48px; } 
}

@media (max-width: 900px){ 
  .contact-wrap{ grid-template-columns:1fr; gap: 40px; } 
}
.contact-form{
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(227,182,92,.1);
}
.field{ margin-bottom: 24px; position: relative; }
.field label{
  display:block;
  font-weight:600;
  font-size:.88rem;
  margin-bottom: 8px;
  color: var(--husk-800);
  transition: color .3s ease;
}
.field input, .field textarea{
  width:100%;
  padding: 15px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid #E3D2AC;
  background: var(--wheat-50);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--ink);
  transition: all .3s var(--ease-out-expo);
}
.field input:focus, .field textarea:focus{
  outline:none;
  border-color: var(--wheat-500);
  box-shadow: 0 0 0 4px rgba(201,138,43,.12);
  background: #fff;
}
.field textarea{ min-height: 130px; resize: vertical; }
.field.error input, .field.error textarea{
  border-color: var(--danger);
  animation: shake .4s ease;
}
.field .error-msg{ display:none; color: var(--danger); font-size:.78rem; margin-top:6px; }
.field.error .error-msg{ display:block; }
@keyframes shake{ 0%,100%{transform:translateX(0);} 25%{transform:translateX(-6px);} 75%{transform:translateX(6px);} }
.honeypot{ position:absolute; left:-9999px; opacity:0; height:0; }
.form-submit{
  width:100%;
  justify-content:center;
  position:relative;
  padding: 16px 34px;
  font-size: 1rem;
}
.form-submit .spinner{
  width:18px; height:18px; border-radius:50%;
  border:2px solid rgba(255,255,255,.5);
  border-top-color:#fff;
  animation: spin .7s linear infinite;
  display:none;
}
.form-submit.loading .spinner{ display:inline-block; }
.form-submit.loading .btn-label{ opacity:.7; }
@keyframes spin{ to{ transform: rotate(360deg); } }
.form-status{
  margin-top: 18px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size:.9rem;
  font-weight:600;
  display:none;
}
.form-status.show{ display:block; }
.form-status.success{ background:#E4F3E6; color: #1EBB56; }
.form-status.error{ background:#FBE3E0; color: var(--danger); }

.contact-side .info-card{
  background: linear-gradient(135deg, var(--wheat-50), var(--wheat-100));
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
  border: 1px solid rgba(227,182,92,.15);
  transition: transform .3s var(--ease-out-expo), box-shadow .3s ease;
}
.contact-side .info-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.contact-side .info-card .info-icon{
  width:48px; height:48px;
  background: linear-gradient(135deg, var(--wheat-500), var(--wheat-600));
  border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 16px;
  font-size: 1.3rem;
  box-shadow: 0 4px 15px rgba(201,138,43,.2);
}
.contact-side .info-card h3{ margin-bottom: 12px; }
.contact-side .info-card a{
  display:block;
  font-weight:700;
  color: var(--wheat-600);
  font-size:1.05rem;
  margin-top:6px;
  transition: color .3s ease;
}
.contact-side .info-card a:hover{ color: var(--wheat-700); }

/* ---------- Utility ---------- */
.text-center{ text-align:center; }
.mt-40{ margin-top: 40px; }

/* ---------- Grain texture overlay ---------- */
.grain-overlay::after{
  content:'';
  position:absolute; inset:0;
  opacity:.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence baseFrequency='.75' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events:none;
  z-index:0;
}

/* ---------- Decorative blob ---------- */
.deco-blob{
  position:absolute;
  border-radius:50%;
  filter: blur(80px);
  opacity:.12;
  pointer-events:none;
  z-index:0;
}

/* ---------- Image hover zoom ---------- */
.img-zoom{
  overflow:hidden;
  border-radius: var(--radius-lg);
}
.img-zoom img{
  transition: transform .7s var(--ease-out-expo);
}
.img-zoom:hover img{
  transform: scale(1.06);
}
