/* ============================================================
   Londis Woking Wines — Style Sheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..900;1,9..144,300..900&family=Figtree:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root{
  /* Palette */
  --cream:        #F7EFE0;
  --cream-deep:   #EEE1C6;
  --paper:        #FCF8EF;
  --ink:          #20281C;
  --ink-soft:     #5C6354;
  --ink-faint:    #8B8A78;
  --green:        #3CA146;
  --green-deep:   #1E4327;
  --green-light:  #E1EFDD;
  --red:          #D5281C;
  --red-deep:     #9E1F16;
  --gold:         #C8972F;
  --line:         rgba(32,40,28,0.12);
  --line-light:   rgba(255,255,255,0.18);

  /* Type */
  --font-display: 'Fraunces', serif;
  --font-body: 'Figtree', sans-serif;

  /* Layout */
  --container: 1180px;
  --radius: 14px;
  --radius-sm: 8px;
}

/* ----------------------------------------------------------
   Reset & base
   ---------------------------------------------------------- */
*, *::before, *::after{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul{ margin: 0; padding: 0; list-style: none; }

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

p{ margin: 0; }

button{ font-family: inherit; cursor: pointer; }

/* Subtle grain texture overlay used across the page */
.grain{
  position: relative;
}
.grain::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

section{ position: relative; }

.section-pad{ padding: 96px 0; }

@media (max-width: 720px){
  .section-pad{ padding: 64px 0; }
  .container{ padding: 0 20px; }
}

.section-head{
  max-width: 640px;
  margin: 0 0 48px;
}
.section-head.center{
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.eyebrow::before{
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}
.on-dark .eyebrow{ color: #9FDE9C; }
.on-dark .eyebrow::before{ background: #F0A99E; }

.section-head h2{
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  margin-bottom: 14px;
}

.section-head p{
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.on-dark .section-head p{ color: rgba(255,255,255,0.78); }
.on-dark .section-head h2{ color: #fff; }

/* ----------------------------------------------------------
   Buttons & chips
   ---------------------------------------------------------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn svg{ flex-shrink: 0; }

.btn--primary{
  background: var(--green);
  color: #fff;
  box-shadow: 0 6px 18px -8px rgba(30,67,39,0.55);
}
.btn--primary:hover{
  background: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px -8px rgba(30,67,39,0.55);
}

.btn--ghost{
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn--ghost:hover{
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
}

.on-dark .btn--ghost{
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
.on-dark .btn--ghost:hover{
  background: #fff;
  color: var(--green-deep);
  border-color: #fff;
}

.btn--light{
  background: #fff;
  color: var(--green-deep);
}
.btn--light:hover{
  background: var(--cream);
  transform: translateY(-2px);
}

.btn-row{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.chip{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-soft);
}
.chip::before{
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
.chip-row{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.on-dark .chip{
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9);
}
.on-dark .chip::before{ background: #9FDE9C; }

/* ----------------------------------------------------------
   Header
   ---------------------------------------------------------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-scrolled{
  border-color: var(--line);
  box-shadow: 0 4px 24px -16px rgba(32,40,28,0.4);
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img{
  height: 60px;
  width: auto;
}

.main-nav{
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav a{
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  transition: color 0.18s ease;
}
.main-nav a:hover{ color: var(--ink); }
.main-nav a::after{
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.main-nav a:hover::after{ transform: scaleX(1); }

.header-actions{
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-phone{
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
}
.header-phone svg{ color: var(--green); }

.nav-toggle{
  display: none;
  border: none;
  background: none;
  padding: 6px;
  color: var(--ink);
}

@media (max-width: 980px){
  .main-nav{
    position: fixed;
    top: 74px;
    left: 0; right: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 18px 24px 28px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    box-shadow: 0 18px 30px -20px rgba(32,40,28,0.35);
  }
  .main-nav.is-open{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .main-nav a{ padding: 10px 0; width: 100%; }
  .header-phone{ display: none; }
  .nav-toggle{ display: inline-flex; }
}

/* ----------------------------------------------------------
   Hero
   ---------------------------------------------------------- */
.hero{
  padding: 60px 0 0;
  overflow: hidden;
}
.hero-inner{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding-bottom: 70px;
}

.hero-content h1{
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 22px;
}
.hero-content h1 em{
  font-style: italic;
  color: var(--green-deep);
}

.hero-lead{
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 30px;
}

.hero-meta{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 34px;
}
.hero-meta-item{
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--ink);
}
.hero-meta-item svg{ color: var(--red); flex-shrink: 0; }

.hero-media{
  position: relative;
}
.hero-photo-frame{
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  clip-path: polygon(
    0% 0%, 92% 0%, 100% 6%, 96% 13%, 100% 19%, 95% 27%, 100% 34%,
    97% 42%, 100% 50%, 95% 58%, 100% 66%, 96% 74%, 100% 82%, 94% 90%, 100% 100%,
    0% 100%
  );
  box-shadow: 0 30px 60px -30px rgba(32,40,28,0.45);
}
.hero-photo-frame img{
  width: 100%;
  height: 580px;
  object-fit: cover;
}

.hero-badge{
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--green-deep);
  color: #fff;
  border-radius: 50%;
  width: 132px;
  height: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-9deg);
  box-shadow: 0 14px 30px -12px rgba(30,67,39,0.6);
  border: 3px dashed rgba(255,255,255,0.35);
}
.hero-badge .num{
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
}
.hero-badge .label{
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
  line-height: 1.3;
  font-weight: 700;
}

@media (max-width: 980px){
  .hero-inner{
    grid-template-columns: 1fr;
    gap: 48px;
    padding-bottom: 50px;
  }
  .hero-media{ order: -1; }
  .hero-photo-frame img{ height: 380px; }
  .hero-badge{ width: 108px; height: 108px; left: 12px; bottom: -18px; }
  .hero-badge .num{ font-size: 1.6rem; }
}

/* ----------------------------------------------------------
   Stats strip
   ---------------------------------------------------------- */
.stats{
  background: var(--green-deep);
  color: #fff;
  padding: 46px 0;
}
.stats-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat{
  text-align: center;
  padding: 0 12px;
  border-left: 1px solid rgba(255,255,255,0.14);
}
.stat:first-child{ border-left: none; }
.stat .stat-num{
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.stat .stat-label{
  font-size: 0.85rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.4;
}

@media (max-width: 820px){
  .stats-grid{ grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .stat{ border-left: none; border-top: 1px solid rgba(255,255,255,0.14); padding-top: 20px; }
  .stat:nth-child(1), .stat:nth-child(2){ border-top: none; padding-top: 0; }
}

/* ----------------------------------------------------------
   About
   ---------------------------------------------------------- */
.about{ background: var(--cream-deep); }

.about-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}

.about-copy p{
  color: var(--ink-soft);
  margin-bottom: 18px;
  font-size: 1.03rem;
}

.mission-quote{
  position: relative;
  margin-top: 32px;
  padding: 28px 28px 28px 32px;
  background: var(--paper);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--red);
}
.mission-quote p{
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.18rem;
  color: var(--ink);
  margin: 0;
  line-height: 1.5;
}
.mission-quote span{
  display: block;
  margin-top: 14px;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.values-list{
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.value-card{
  background: var(--paper);
  border-radius: var(--radius-sm);
  padding: 24px 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  border: 1px solid var(--line);
}
.value-card .icon{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.value-card h3{
  font-size: 1.12rem;
  margin-bottom: 6px;
}
.value-card p{
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.strengths{
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.strength{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}
.strength svg{ color: var(--green); flex-shrink: 0; margin-top: 2px; }

@media (max-width: 980px){
  .about-grid{ grid-template-columns: 1fr; gap: 44px; }
  .strengths{ grid-template-columns: repeat(2, 1fr); }
}

/* ----------------------------------------------------------
   Services
   ---------------------------------------------------------- */
.services{ background: var(--cream); }

.services-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color .25s ease;
}
.service-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -28px rgba(32,40,28,0.4);
  border-color: rgba(60,161,70,0.35);
}
.service-card .icon{
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--green-deep);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card:nth-child(even) .icon{ background: var(--red); }
.service-card h3{
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.service-card ul{
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.service-card li{
  font-size: 0.92rem;
  color: var(--ink-soft);
  padding-left: 16px;
  position: relative;
}
.service-card li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.carrier-wall{
  margin-top: 40px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
}
.carrier-wall .carrier-title{
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 20px;
}
.carrier-list{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.carrier-list span{
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--cream);
}

@media (max-width: 980px){
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px){
  .services-grid{ grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------
   Newspapers (dark)
   ---------------------------------------------------------- */
.newspapers{
  background: var(--green-deep);
  color: #fff;
}
.newspapers .section-head h2{ color: #fff; }

.news-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.news-copy p{
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
  font-size: 1.02rem;
}
.news-why{
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.news-why li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.92rem;
  font-weight: 600;
}
.news-why svg{ color: #9FDE9C; flex-shrink: 0; margin-top: 2px; }

.news-areas h3{
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.news-areas .chip-row{ margin-bottom: 30px; }

.news-cta{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  padding: 26px;
}
.news-cta p{
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
}

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

/* ----------------------------------------------------------
   Snappy Shopper / Delivery
   ---------------------------------------------------------- */
.delivery{ background: var(--cream-deep); }

.delivery-grid{
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.delivery-copy p{
  color: var(--ink-soft);
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.benefit-list{
  margin: 24px 0 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.benefit-list li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.92rem;
  font-weight: 600;
}
.benefit-list svg{ color: var(--green); flex-shrink: 0; margin-top: 2px; }

.steps{
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 36px;
}
.steps h3{
  font-size: 1.25rem;
  margin-bottom: 22px;
}
.step{
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.step:last-child{ border-bottom: none; padding-bottom: 0; }
.step:first-child{ padding-top: 0; }
.step .step-num{
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green-deep);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.95rem;
}
.step p{
  font-size: 0.96rem;
  font-weight: 600;
  padding-top: 5px;
}

@media (max-width: 980px){
  .delivery-grid{ grid-template-columns: 1fr; gap: 40px; }
  .benefit-list{ grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------
   Community
   ---------------------------------------------------------- */
.community{ background: var(--cream); }

.sponsor-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 56px;
}
.sponsor-card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  position: relative;
  transform: rotate(var(--rot, 0deg));
}
.sponsor-card:nth-child(1){ --rot: -1.2deg; }
.sponsor-card:nth-child(2){ --rot: 0.8deg; }
.sponsor-card:nth-child(3){ --rot: -0.6deg; }
.sponsor-card::before{
  content: "";
  position: absolute;
  top: -8px; left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  width: 46px; height: 16px;
  background: var(--gold);
  opacity: 0.85;
  border-radius: 2px;
}
.sponsor-card .icon{
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.sponsor-card h3{
  font-size: 1.08rem;
  margin-bottom: 8px;
}
.sponsor-card p{
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.areas-block{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
}
.areas-block h3{
  font-size: 1.2rem;
  margin-bottom: 18px;
}

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

/* ----------------------------------------------------------
   Awards
   ---------------------------------------------------------- */
.awards{ background: var(--cream-deep); }

.awards-grid{
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.seal-list{
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.seal-card{
  display: flex;
  gap: 22px;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.seal{
  flex-shrink: 0;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  outline: 1px dashed var(--gold);
  outline-offset: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--green-deep);
  font-family: var(--font-display);
  background: var(--paper);
}
.seal .seal-year{ font-size: 1.05rem; font-weight: 700; line-height: 1; }
.seal .seal-sub{ font-size: 0.55rem; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 3px; font-family: var(--font-body); font-weight: 700; color: var(--ink-faint);}

.seal-card h3{ font-size: 1.1rem; margin-bottom: 6px; }
.seal-card p{ color: var(--ink-soft); font-size: 0.92rem; }

.award-feature{
  position: relative;
}
.award-photo-frame{
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(32,40,28,0.45);
  transform: rotate(1.2deg);
  border: 8px solid var(--paper);
}
.award-photo-frame img{
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center 20%;
}
.award-tag{
  position: absolute;
  top: 28px;
  left: -16px;
  background: var(--red);
  color: #fff;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  box-shadow: 0 14px 26px -14px rgba(158,31,22,0.6);
  transform: rotate(-3deg);
  max-width: 250px;
}
.award-tag .award-tag-title{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.2;
  margin-bottom: 4px;
}
.award-tag .award-tag-sub{
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
}
.award-caption{
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 0.96rem;
  max-width: 480px;
}

@media (max-width: 980px){
  .awards-grid{ grid-template-columns: 1fr; gap: 48px; }
  .award-feature{ order: -1; }
  .award-photo-frame img{ height: 380px; }
  .award-tag{ left: 12px; }
}

/* ----------------------------------------------------------
   Reviews
   ---------------------------------------------------------- */
.reviews{
  background: var(--green-deep);
  color: #fff;
  text-align: center;
}
.reviews .stars{
  display: flex;
  justify-content: center;
  gap: 8px;
  color: #F2C94C;
  margin-bottom: 22px;
}
.reviews h2{
  color: #fff;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  max-width: 620px;
  margin: 0 auto 16px;
}
.reviews p{
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin: 0 auto 30px;
  font-size: 1.02rem;
}

/* ----------------------------------------------------------
   FAQ
   ---------------------------------------------------------- */
.faq{ background: var(--cream); }

.faq-list{
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-q{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
}
.faq-q .plus{
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.faq-item.is-open .faq-q .plus{
  transform: rotate(45deg);
  background: var(--red);
  color: #fff;
}
.faq-a{
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}
.faq-a-inner{
  padding: 0 24px 20px;
  color: var(--ink-soft);
  font-size: 0.96rem;
  max-width: 600px;
}

/* ----------------------------------------------------------
   Find Us
   ---------------------------------------------------------- */
.find-us{ background: var(--cream-deep); }

.find-grid{
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: stretch;
}

.find-card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.find-block h3{
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 10px;
  font-family: var(--font-body);
  font-weight: 700;
}
.find-block p, .find-block a{
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}
.find-block .muted{
  font-weight: 500;
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-top: 6px;
}
.hours-table{
  display: flex;
  justify-content: space-between;
  font-size: 0.96rem;
  font-weight: 600;
}
.social-row{
  display: flex;
  gap: 12px;
}
.social-row a{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, transform .2s ease;
}
.social-row a:hover{
  background: var(--green-deep);
  color: #fff;
  transform: translateY(-2px);
}

.map-frame{
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 420px;
}
.map-frame iframe{
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

@media (max-width: 980px){
  .find-grid{ grid-template-columns: 1fr; }
  .map-frame{ min-height: 320px; }
  .map-frame iframe{ min-height: 320px; }
}

/* ----------------------------------------------------------
   Footer
   ---------------------------------------------------------- */
.site-footer{
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 28px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img{
  height: 42px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.footer-brand p{
  font-size: 0.92rem;
  max-width: 280px;
  color: rgba(255,255,255,0.55);
}
.footer-col h4{
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--font-body);
  margin-bottom: 18px;
}
.footer-col ul{
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-col a{
  font-size: 0.93rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s ease;
}
.footer-col a:hover{ color: #fff; }

.footer-bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 860px){
  .footer-grid{ grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .footer-brand{ grid-column: 1 / -1; }
}

/* ----------------------------------------------------------
   Scroll reveal animation
   ---------------------------------------------------------- */
.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.is-visible > *{
  animation: fadeUp 0.6s ease both;
}
.reveal-stagger.is-visible > *:nth-child(1){ animation-delay: 0.02s; }
.reveal-stagger.is-visible > *:nth-child(2){ animation-delay: 0.10s; }
.reveal-stagger.is-visible > *:nth-child(3){ animation-delay: 0.18s; }
.reveal-stagger.is-visible > *:nth-child(4){ animation-delay: 0.26s; }
.reveal-stagger.is-visible > *:nth-child(5){ animation-delay: 0.34s; }
.reveal-stagger.is-visible > *:nth-child(6){ animation-delay: 0.42s; }

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

@media (prefers-reduced-motion: reduce){
  .reveal, .reveal-stagger > *{
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}
