/* ============================================================
   CHÂTEAU DE SÉAILLES — Global Stylesheet
   Fonts: Playfair Display (headings) + Lato (body)
   Colours: brand green #2D5016, gold #8B6914
   ============================================================ */

/* --- Google Fonts import (loaded in head via preconnect) --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Lato:wght@300;400;700&display=swap');

/* --- CSS Custom Properties --------------------------------- */
:root {
  --green-dark:   #2D5016;
  --green-mid:    #3d6b1f;
  --green-light:  #E8F0DC;
  --gold:         #8B6914;
  --gold-light:   #F5EED6;
  --gold-pale:    #faf5e8;
  --terracotta:   #A0522D;
  --sage:         #4A6741;
  --dark:         #1a1a1a;
  --mid:          #555555;
  --light:        #f7f7f7;
  --border:       #ddd;
  --white:        #ffffff;

  --font-head:    'Playfair Display', Georgia, serif;
  --font-body:    'Lato', Arial, sans-serif;

  --max-width:    1200px;
  --pad-section:  80px;
  --pad-mobile:   48px;
  --radius:       4px;
  --shadow:       0 2px 16px rgba(0,0,0,.10);
  --shadow-hover: 0 6px 28px rgba(0,0,0,.16);
  --transition:   .25s ease;
}

/* --- Reset ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: var(--green-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
ul { list-style: none; }

/* --- Typography -------------------------------------------- */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  color: var(--green-dark);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: .8rem; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); margin-bottom: .6rem; }
h4 { font-size: 1.1rem; margin-bottom: .4rem; }
p  { margin-bottom: 1rem; }
blockquote {
  border-left: 4px solid var(--gold);
  margin: 1.5rem 0;
  padding: .8rem 1.4rem;
  background: var(--gold-pale);
  font-style: italic;
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--mid);
}
blockquote h4 { font-size: 1rem; color: var(--gold); margin-bottom: .25rem; }

/* --- Layout helpers ---------------------------------------- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section    { padding: var(--pad-section) 0; }
.section--tinted { background: var(--green-light); }
.section--gold   { background: var(--gold-pale); }
.section--dark   { background: var(--green-dark); color: var(--white); }
.section--dark h1,.section--dark h2,.section--dark h3 { color: var(--white); }

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

.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-green  { color: var(--green-dark); }
.gold-rule {
  width: 60px; height: 3px;
  background: var(--gold);
  margin: .5rem auto 1.5rem;
  border: none;
}
.gold-rule--left { margin-left: 0; }

/* --- Buttons ----------------------------------------------- */
.btn {
  display: inline-block;
  padding: .7rem 1.8rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
}
.btn--primary {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}
.btn--primary:hover {
  background: var(--green-mid);
  color: var(--white);
  border-color: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn--secondary {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn--secondary:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: #7a5a12;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn--white {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--gold-pale);
  color: var(--green-dark);
  transform: translateY(-2px);
}

/* --- Header / Navigation ----------------------------------- */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  transition: box-shadow var(--transition);
}
#site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.15); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 80px;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Logo */
.site-logo { display: flex; flex-direction: column; line-height: 1.1; }
.site-logo img { height: 48px; width: auto; }
.logo-text-wrap { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
}
.logo-tagline {
  font-family: var(--font-body);
  font-size: .72rem;
  color: var(--gold);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 300;
}

/* Primary nav */
#primary-nav { display: flex; align-items: center; gap: 4px; }

.nav-item { position: relative; }
.nav-link {
  display: block;
  padding: .5rem .9rem;
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: .06em;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--green-dark); background: var(--green-light); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown > .nav-link::after {
  content: ' ▾';
  font-size: .65rem;
  opacity: .6;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: .4rem 0;
  z-index: 200;
}
.dropdown-menu.sub-right { left: 100%; top: 0; }
.dropdown:hover > .dropdown-menu,
.dropdown-menu:hover,
.dropdown:focus-within > .dropdown-menu,
.dropdown.open > .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: block;
  padding: .45rem 1.1rem;
  font-size: .85rem;
  color: var(--dark);
  font-weight: 400;
  border-left: 3px solid transparent;
  transition: all var(--transition);
}
.dropdown-menu li a:hover {
  color: var(--green-dark);
  background: var(--green-light);
  border-left-color: var(--green-dark);
}
.has-sub { position: relative; }
.has-sub > a::after { content: ' ›'; }
.has-sub:hover > ul { display: block; }

/* Social icons in nav */
.nav-social { display: flex; gap: 10px; align-items: center; margin-left: 12px; }
.nav-social a { color: var(--mid); font-size: 1rem; transition: color var(--transition); }
.nav-social a:hover { color: var(--green-dark); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav drawer */
#mobile-nav {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0; bottom: 0;
  background: var(--white);
  overflow-y: auto;
  padding: 1.5rem 24px 3rem;
  z-index: 999;
  border-top: 2px solid var(--gold);
}
#mobile-nav.open { display: block; }
.mobile-nav-link {
  display: block;
  padding: .8rem 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: .05em;
}
/* Show a › indicator on mobile nav items that have a sub-menu below them */
.mobile-nav-link:has(+ .mobile-sub)::after {
  content: ' ›';
  opacity: .5;
  font-weight: 300;
}
.mobile-sub { padding-left: 1.2rem; }
.mobile-sub a {
  display: block;
  padding: .55rem 0;
  font-size: .92rem;
  color: var(--mid);
  border-bottom: 1px solid #f0f0f0;
  font-weight: 400;
}

/* --- Hero -------------------------------------------------- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--green-dark);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: .92;
  transform: scale(1.03);
  transition: transform 8s ease;
}
.hero:hover .hero__bg { transform: scale(1); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.08) 0%, rgba(0,0,0,.45) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 40px 24px;
  max-width: 860px;
}
.hero__eyebrow {
  font-family: var(--font-body);
  font-size: .85rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  margin-bottom: 1rem;
}
.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
  line-height: 1.15;
}
.hero__subtitle {
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: rgba(255,255,255,.85);
  margin-bottom: 2rem;
  line-height: 1.5;
}
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Hero scroll hint */
.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  letter-spacing: .1em;
  text-align: center;
  cursor: pointer;
  animation: bounce 2s infinite;
}
.hero__scroll::before { content: '↓'; display: block; font-size: 1.3rem; }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-6px); }
}

/* --- Cards ------------------------------------------------- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.card__img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.card__img--wide { aspect-ratio: 16/9; }
.card__body { padding: 1.4rem; }
.card__eyebrow {
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: .4rem;
}
.card__title { font-size: 1.2rem; margin-bottom: .5rem; }
.card__text  { font-size: .92rem; color: var(--mid); margin-bottom: 1rem; }
.card__link  { font-size: .85rem; font-weight: 700; color: var(--green-dark); text-transform: uppercase; letter-spacing: .08em; }
.card__link:hover { color: var(--gold); }

/* Blog badge */
.blog-badge {
  display: inline-block;
  padding: .2rem .7rem;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .6rem;
  color: var(--white);
}
.badge--chateau    { background: var(--green-dark); }
.badge--kitchen    { background: var(--terracotta); }
.badge--plants     { background: var(--sage); }

/* --- Gallery / Lightbox ------------------------------------ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
}
.gallery-grid img:hover { opacity: .88; transform: scale(1.02); }

#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#lightbox.open { display: flex; }
#lightbox img {
  max-width: 90vw;
  max-height: 82vh;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0,0,0,.6);
}
#lightbox-caption {
  color: rgba(255,255,255,.75);
  font-size: .85rem;
  margin-top: .8rem;
  font-family: var(--font-head);
  font-style: italic;
}
#lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  background: none; border: none;
  line-height: 1;
  opacity: .75;
  transition: opacity var(--transition);
}
#lightbox-close:hover { opacity: 1; }
#lightbox-prev, #lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  color: white; font-size: 2rem;
  cursor: pointer; background: rgba(0,0,0,.35);
  border: none; border-radius: 4px;
  padding: .4rem .9rem; opacity: .8;
  transition: all var(--transition);
}
#lightbox-prev { left: 16px; }
#lightbox-next { right: 16px; }
#lightbox-prev:hover, #lightbox-next:hover { opacity: 1; background: rgba(0,0,0,.65); }

/* --- Details box ------------------------------------------- */
.details-box {
  background: var(--green-light);
  border-radius: var(--radius);
  padding: 1.8rem;
  border-left: 4px solid var(--green-dark);
}
.details-box h3 { margin-bottom: 1rem; }
.details-box ul { list-style: disc; padding-left: 1.2rem; }
.details-box li { margin-bottom: .4rem; font-size: .95rem; }
.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* --- Amenity icons ----------------------------------------- */
.amenity-list {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.amenity-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .3rem .8rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: .82rem;
  color: var(--dark);
}
.amenity-tag i { color: var(--green-dark); }

/* --- Testimonial ------------------------------------------- */
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial::before {
  content: '"';
  font-family: var(--font-head);
  font-size: 6rem;
  color: var(--gold-light);
  position: absolute;
  top: -10px; left: 16px;
  line-height: 1;
}
.testimonial p { font-style: italic; color: var(--mid); margin-bottom: .8rem; position: relative; z-index: 1; }
.testimonial cite { font-size: .85rem; font-weight: 700; color: var(--green-dark); font-style: normal; }

/* --- Availability calendar placeholder --------------------- */
.availability-section {
  background: var(--gold-pale);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}
.availability-section h3 { margin-bottom: .5rem; }
.availability-section p { color: var(--mid); font-size: .9rem; margin-bottom: 1.2rem; }

/* --- Map --------------------------------------------------- */
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-embed iframe { display: block; border: 0; width: 100%; height: 400px; }

/* --- Contact form ------------------------------------------ */
.contact-form { max-width: 640px; margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .4rem;
  color: var(--dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-dark);
  box-shadow: 0 0 0 3px rgba(45,80,22,.12);
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* --- Footer ------------------------------------------------ */
#site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,.8);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1rem;
  margin-bottom: 1.2rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(255,255,255,.2);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.footer-col p,
.footer-col li { font-size: .88rem; margin-bottom: .4rem; color: rgba(255,255,255,.75); }
.footer-col a { color: rgba(255,255,255,.75); }
.footer-col a:hover { color: var(--gold); }
.footer-col ul { padding-left: 0; }
.footer-col ul li { list-style: none; }
.footer-social { display: flex; gap: 14px; margin-top: 1rem; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  padding: 1.2rem 0;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
}
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: var(--gold); }

/* --- Page hero (inner pages) ------------------------------- */
.page-hero {
  background: var(--green-dark);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .25;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: .5rem; }
.page-hero p  { color: rgba(255,255,255,.8); font-size: 1.1rem; max-width: 680px; margin: 0 auto; }
.breadcrumb {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 1rem;
  display: flex;
  gap: .4rem;
  justify-content: center;
  align-items: center;
}
.breadcrumb a { color: rgba(255,255,255,.65); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { opacity: .4; }

/* --- Blog index layout ------------------------------------- */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.blog-grid--3 { grid-template-columns: repeat(3, 1fr); }
.blog-card { display: flex; flex-direction: column; }
.blog-card .card__body { flex: 1; display: flex; flex-direction: column; }
.blog-card .card__link { margin-top: auto; }

/* Blog hub cards */
.blog-hub-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-hub-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.blog-hub-card__header {
  padding: 2rem;
  color: var(--white);
}
.blog-hub-card__header h2 { color: var(--white); font-size: 1.5rem; margin-bottom: .4rem; }
.blog-hub-card__header p  { color: rgba(255,255,255,.85); font-style: italic; font-size: .95rem; margin: 0; }
.blog-hub-card--chateau .blog-hub-card__header { background: var(--green-dark); }
.blog-hub-card--kitchen  .blog-hub-card__header { background: var(--terracotta); }
.blog-hub-card--plants   .blog-hub-card__header { background: var(--sage); }
.blog-hub-card__posts { padding: 1.2rem 1.4rem; flex: 1; }
.blog-hub-card__posts li { padding: .5rem 0; border-bottom: 1px solid var(--border); font-size: .9rem; }
.blog-hub-card__posts li:last-child { border-bottom: none; }
.blog-hub-card__footer {
  padding: 1rem 1.4rem;
  background: var(--light);
  border-top: 1px solid var(--border);
}

/* --- Utility ----------------------------------------------- */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* --- Section heading pattern ------------------------------- */
.section-heading { text-align: center; margin-bottom: 3rem; }
.section-heading h2 { margin-bottom: .3rem; }
.section-heading p { color: var(--mid); max-width: 640px; margin: .6rem auto 0; font-size: 1.05rem; }

/* --- Inline list (amenities) ------------------------------- */
.inline-list { display: flex; flex-wrap: wrap; gap: 8px; }

/* --- YouTube embed ----------------------------------------- */
.video-embed {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* --- Responsive -------------------------------------------- */
@media (max-width: 1023px) {
  #primary-nav { display: none; }
  .hamburger   { display: flex; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid   { grid-template-columns: 1fr; }
  .blog-grid--3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  :root { --pad-section: 48px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row    { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid--3 { grid-template-columns: 1fr; }
  .details-grid { grid-template-columns: 1fr; }
  .hero { min-height: 70vh; }
  .header-inner { height: 68px; }
  #mobile-nav { top: 68px; }
}

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

/* --- Kitchen recipe grid & cards --------------------------- */
.recipe-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.recipe-card { background: #fff; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; transition: box-shadow .2s; }
.recipe-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.1); }
.recipe-card img { width: 100%; height: 200px; object-fit: cover; display: block; }
.recipe-card .no-img { width: 100%; height: 200px; background: var(--green-dark); display: flex; align-items: center; justify-content: center; }
.recipe-card .no-img i { font-size: 3rem; color: var(--gold); opacity: .6; }
.recipe-card__body { padding: 1.1rem 1.2rem; }
.recipe-card__body h3 { font-size: 1rem; margin-bottom: .4rem; line-height: 1.3; }
.recipe-card__body h3 a { color: var(--green-dark); text-decoration: none; }
.recipe-card__body h3 a:hover { color: var(--gold); }
.cat-tag { display: inline-block; background: var(--green-light); color: var(--green-dark); font-size: .7rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: .15rem .55rem; border-radius: 2px; margin-bottom: .5rem; }
.cat-filter { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.cat-filter a { padding: .4rem 1rem; border: 1px solid var(--border); border-radius: 2px; font-size: .82rem; color: var(--mid); text-decoration: none; transition: all .2s; }
.cat-filter a:hover, .cat-filter a.active { background: var(--green-dark); color: #fff; border-color: var(--green-dark); }

/* --- Print ------------------------------------------------- */
@media print {
  #site-header, #site-footer, .hamburger, #mobile-nav, .hero__scroll { display: none !important; }
  .hero { min-height: auto; padding: 2rem; }
  .hero__bg, .hero__overlay { display: none; }
  .hero__title { color: var(--green-dark) !important; }
}
