/* ===========================================================
   PVR Private Chef — Personal Chef Services
   Puerto Vallarta & Riviera Nayarit
   Palette: charcoal ink + warm gold + cream + sage
   Fonts: Playfair Display (serif) + Inter (sans)
   Mobile-first
   =========================================================== */

:root {
  --ink:      #1d1a15;
  --charcoal: #2b2620;
  --olive:    #5d6347;
  --sage:     #8a9072;
  --gold:     #c79a3f;
  --gold-dk:  #a87f2c;
  --cream:    #fbf7ef;
  --sand:     #f1e8d7;
  --paper:    #ffffff;
  --muted:    #8a8174;
  --line:     #e6dcc8;
  --text:     #3a352c;
  --shadow:   0 18px 50px rgba(29,26,21,.16);
  --shadow-sm:0 6px 20px rgba(29,26,21,.10);
  --r:        16px;
  --r-sm:     10px;
  --maxw:     1180px;
  --ease:     cubic-bezier(.22,.61,.36,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.01em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: .74rem; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold-dk);
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold); }
.eyebrow.center::after { content: ""; width: 26px; height: 1px; background: var(--gold); }
.eyebrow.center { justify-content: center; }

.section { padding: 76px 0; }
.section-head { max-width: 640px; margin: 0 auto 46px; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 5vw, 2.85rem); margin: 14px 0 14px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: .95rem;
  padding: 15px 28px; border-radius: 50px; cursor: pointer;
  border: 1px solid transparent; transition: all .3s var(--ease);
  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: #fff; box-shadow: 0 10px 26px rgba(199,154,63,.34); }
.btn-gold:hover { background: var(--gold-dk); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(199,154,63,.42); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-dk); }
.btn-light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.35); backdrop-filter: blur(6px); }
.btn-light:hover { background: #fff; color: var(--ink); }
.btn-wa { background: #25d366; color: #fff; }
.btn-wa:hover { background: #1ebe57; transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: all .35s var(--ease);
  padding: 18px 0;
}
.site-header.scrolled {
  background: rgba(251,247,239,.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
  padding: 11px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand .logo {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center; flex-shrink: 0;
  background: var(--gold); color: #fff; font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700;
  box-shadow: 0 6px 16px rgba(199,154,63,.4);
}
.brand-txt { line-height: 1.1; }
.brand-txt b { font-family: 'Playfair Display', serif; font-size: 1.18rem; color: var(--ink); display: block; font-weight: 600; }
.brand-txt span { font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.site-header:not(.scrolled) .brand-txt b { color: #fff; }
.site-header:not(.scrolled) .brand-txt span { color: rgba(255,255,255,.75); }
.site-header.light-text:not(.scrolled) .brand-txt b { color: #fff; }

.nav-links { display: none; align-items: center; gap: 30px; }
.nav-links a {
  font-size: .92rem; font-weight: 500; color: var(--ink);
  position: relative; transition: color .25s;
}
.site-header:not(.scrolled) .nav-links a { color: rgba(255,255,255,.92); }
.nav-links a:hover { color: var(--gold); }
.site-header:not(.scrolled) .nav-links a:hover { color: var(--gold); }
.nav-cta { display: none; }

.burger {
  display: flex; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 6px;
}
.burger span { width: 26px; height: 2px; background: var(--ink); transition: .3s; border-radius: 2px; }
.site-header:not(.scrolled) .burger span { background: #fff; }

.mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  background: var(--ink); color: #fff;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 26px; transform: translateX(100%); transition: transform .4s var(--ease);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { font-family: 'Playfair Display', serif; font-size: 1.7rem; color: #fff; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .close { position: absolute; top: 26px; right: 26px; font-size: 2rem; background: none; border: none; color: #fff; cursor: pointer; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  color: #fff; text-align: left; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, rgba(20,17,13,.86) 0%, rgba(20,17,13,.62) 45%, rgba(20,17,13,.28) 100%);
}
.hero-inner { padding: 120px 0 70px; max-width: 720px; }
.hero h1 { font-size: clamp(2.5rem, 8vw, 4.6rem); color: #fff; margin: 20px 0 22px; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p { font-size: clamp(1.05rem, 2.6vw, 1.3rem); color: rgba(255,255,255,.9); max-width: 560px; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 22px 30px; margin-top: 42px;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,.18);
}
.hero-trust div b { font-family: 'Playfair Display', serif; font-size: 1.9rem; color: var(--gold); display: block; }
.hero-trust div span { font-size: .82rem; color: rgba(255,255,255,.75); letter-spacing: .03em; }

/* ---------- Service / occasion cards ---------- */
.occasions { background: var(--paper); }
.occ-grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
.occ-card {
  position: relative; border-radius: var(--r); overflow: hidden;
  min-height: 320px; display: flex; align-items: flex-end;
  box-shadow: var(--shadow-sm); isolation: isolate;
}
.occ-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .8s var(--ease); }
.occ-card::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(0deg, rgba(20,17,13,.85) 8%, rgba(20,17,13,.15) 70%); }
.occ-card:hover img { transform: scale(1.07); }
.occ-card .occ-body { padding: 26px; color: #fff; }
.occ-card h3 { color: #fff; font-size: 1.5rem; margin-bottom: 6px; }
.occ-card p { color: rgba(255,255,255,.84); font-size: .94rem; }
.occ-card .tag { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); font-weight: 600; }

/* ---------- How it works ---------- */
.steps { display: grid; gap: 26px; grid-template-columns: 1fr; counter-reset: step; }
.step { position: relative; padding-left: 64px; }
.step::before {
  counter-increment: step; content: counter(step,decimal-leading-zero);
  position: absolute; left: 0; top: -4px;
  font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700;
  color: #fff; background: var(--olive); width: 46px; height: 46px;
  border-radius: 50%; display: grid; place-items: center;
}
.step h3 { font-size: 1.25rem; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: .96rem; }

/* ---------- Menus / cuisine ---------- */
.menus { background: var(--sand); }
.menu-cats { display: grid; gap: 20px; grid-template-columns: 1fr; margin-bottom: 40px; }
.menu-card {
  background: var(--paper); border-radius: var(--r); padding: 30px 26px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.menu-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.menu-card .ic {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: var(--cream); color: var(--gold-dk); font-size: 1.5rem; margin-bottom: 16px;
  border: 1px solid var(--line);
}
.menu-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.menu-card ul li {
  font-size: .92rem; color: var(--text); padding: 6px 0 6px 22px; position: relative;
  border-bottom: 1px dashed var(--line);
}
.menu-card ul li:last-child { border-bottom: none; }
.menu-card ul li::before { content: "\f805"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 0; color: var(--gold); font-size: .7rem; top: 9px; }
.menu-card ul li span { display: block; font-size: .8rem; color: var(--muted); }

/* tasting menu */
.tasting {
  background: var(--ink); color: #fff; border-radius: var(--r);
  padding: 40px 30px; box-shadow: var(--shadow);
  background-image: radial-gradient(circle at 100% 0%, rgba(199,154,63,.16), transparent 55%);
}
.tasting .eyebrow { color: var(--gold); }
.tasting h3 { color: #fff; font-size: 1.9rem; margin: 12px 0 26px; }
.tasting-course { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.tasting-course:last-of-type { border-bottom: none; }
.tasting-course .num { font-family: 'Playfair Display', serif; color: var(--gold); font-size: 1.1rem; width: 34px; flex-shrink: 0; }
.tasting-course b { display: block; font-size: 1.06rem; color: #fff; font-weight: 600; margin-bottom: 2px; }
.tasting-course p { color: rgba(255,255,255,.7); font-size: .9rem; }
.tasting .note { margin-top: 22px; font-size: .85rem; color: rgba(255,255,255,.6); font-style: italic; }

/* ---------- Pricing ---------- */
.pricing { background: var(--paper); }
.price-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
.price-card {
  border: 1px solid var(--line); border-radius: var(--r); padding: 34px 28px;
  background: var(--cream); position: relative; transition: transform .3s var(--ease);
}
.price-card.featured { background: var(--ink); color: #fff; border-color: var(--ink); transform: scale(1.0); box-shadow: var(--shadow); }
.price-card.featured h3, .price-card.featured .amount { color: #fff; }
.price-card .ribbon {
  position: absolute; top: -13px; left: 28px; background: var(--gold); color: #fff;
  font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
  padding: 6px 14px; border-radius: 50px;
}
.price-card h3 { font-size: 1.4rem; margin-bottom: 4px; }
.price-card .sub { font-size: .85rem; color: var(--muted); margin-bottom: 18px; }
.price-card.featured .sub { color: rgba(255,255,255,.65); }
.price-card .amount { font-family: 'Playfair Display', serif; font-size: 2.6rem; color: var(--ink); }
.price-card .amount small { font-size: .9rem; color: var(--muted); font-family: 'Inter', sans-serif; }
.price-card.featured .amount small { color: rgba(255,255,255,.65); }
.price-card ul { margin: 22px 0 26px; }
.price-card ul li { padding: 8px 0 8px 26px; position: relative; font-size: .92rem; border-bottom: 1px solid var(--line); }
.price-card.featured ul li { border-color: rgba(255,255,255,.12); }
.price-card ul li:last-child { border-bottom: none; }
.price-card ul li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 0; color: var(--gold); font-size: .8rem; top: 11px; }
.price-card .btn { width: 100%; }

/* ---------- About / chef ---------- */
.about { background: var(--sand); }
.about-grid { display: grid; gap: 36px; grid-template-columns: 1fr; align-items: center; }
.about-photo { border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); position: relative; }
.about-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-badge {
  position: absolute; bottom: 18px; left: 18px; right: 18px;
  background: rgba(251,247,239,.94); backdrop-filter: blur(6px);
  border-radius: var(--r-sm); padding: 16px 18px; display: flex; gap: 14px; align-items: center;
}
.about-badge i { color: var(--gold); font-size: 1.4rem; }
.about-badge b { font-size: .95rem; color: var(--ink); display: block; }
.about-badge span { font-size: .8rem; color: var(--muted); }
.about-text h2 { font-size: clamp(1.9rem, 5vw, 2.6rem); margin: 14px 0 18px; }
.about-text p { color: var(--text); margin-bottom: 16px; }
.about-text .sig { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.4rem; color: var(--gold-dk); margin-top: 8px; }

/* ---------- Zones ---------- */
.zones { background: var(--paper); }
.zone-pills { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 820px; margin: 0 auto; }
.zone-pill {
  background: var(--cream); border: 1px solid var(--line); border-radius: 50px;
  padding: 11px 22px; font-size: .92rem; font-weight: 500; color: var(--text);
  display: inline-flex; align-items: center; gap: 8px; transition: all .25s;
}
.zone-pill:hover { border-color: var(--gold); color: var(--gold-dk); transform: translateY(-2px); }
.zone-pill i { color: var(--gold); }

/* ---------- Testimonials ---------- */
.testi { background: var(--ink); color: #fff; }
.testi .section-head h2 { color: #fff; }
.testi .section-head p { color: rgba(255,255,255,.7); }
.testi-grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
.testi-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r); padding: 28px;
}
.testi-card .stars { color: var(--gold); margin-bottom: 14px; font-size: .9rem; }
.testi-card p { color: rgba(255,255,255,.88); font-size: 1rem; font-style: italic; margin-bottom: 18px; }
.testi-card .who { display: flex; align-items: center; gap: 12px; }
.testi-card .who .av { width: 44px; height: 44px; border-radius: 50%; background: var(--olive); display: grid; place-items: center; font-family: 'Playfair Display', serif; color: #fff; font-weight: 700; }
.testi-card .who b { display: block; font-size: .95rem; color: #fff; }
.testi-card .who span { font-size: .8rem; color: rgba(255,255,255,.6); }

/* ---------- Blog preview ---------- */
.blog-preview { background: var(--cream); }
.blog-grid { display: grid; gap: 26px; grid-template-columns: 1fr; }
.post-card {
  background: var(--paper); border-radius: var(--r); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s; display: flex; flex-direction: column;
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.post-card .thumb { aspect-ratio: 16/10; overflow: hidden; }
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.post-card:hover .thumb img { transform: scale(1.06); }
.post-card .pc-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.post-card .cat { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-dk); font-weight: 600; margin-bottom: 10px; }
.post-card h3 { font-size: 1.28rem; margin-bottom: 10px; line-height: 1.25; }
.post-card p { color: var(--muted); font-size: .92rem; margin-bottom: 16px; flex: 1; }
.post-card .more { color: var(--gold-dk); font-weight: 600; font-size: .9rem; display: inline-flex; align-items: center; gap: 7px; }
.post-card .more i { transition: transform .25s; }
.post-card:hover .more i { transform: translateX(4px); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; color: #fff; text-align: center; overflow: hidden;
}
.cta-band .cta-bg { position: absolute; inset: 0; z-index: -2; }
.cta-band .cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(0deg, rgba(20,17,13,.9), rgba(20,17,13,.7)); }
.cta-band .wrap { padding: 86px 22px; }
.cta-band h2 { color: #fff; font-size: clamp(2rem, 6vw, 3.2rem); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto 30px; font-size: 1.08rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- Contact / form ---------- */
.contact { background: var(--sand); }
.contact-grid { display: grid; gap: 36px; grid-template-columns: 1fr; }
.contact-info h2 { font-size: clamp(1.9rem,5vw,2.6rem); margin: 14px 0 16px; }
.contact-info p { color: var(--text); margin-bottom: 26px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.contact-item .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--paper); display: grid; place-items: center; color: var(--gold-dk); font-size: 1.1rem; flex-shrink: 0; border: 1px solid var(--line); }
.contact-item b { display: block; font-size: .95rem; color: var(--ink); }
.contact-item a, .contact-item span { color: var(--muted); font-size: .92rem; }
.contact-item a:hover { color: var(--gold-dk); }

.form-card { background: var(--paper); border-radius: var(--r); padding: 30px 26px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.form-card h3 { font-size: 1.5rem; margin-bottom: 6px; }
.form-card .fc-sub { color: var(--muted); font-size: .9rem; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .82rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--r-sm);
  font-family: 'Inter', sans-serif; font-size: .94rem; color: var(--text); background: var(--cream);
  transition: border .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(199,154,63,.16); }
.field textarea { resize: vertical; min-height: 96px; }
.field-row { display: grid; gap: 16px; grid-template-columns: 1fr; }
.form-note { font-size: .8rem; color: var(--muted); margin-top: 12px; text-align: center; }
.form-ok { display: none; background: #e8f3ea; border: 1px solid #b9dcc0; color: #2c6b3a; padding: 14px; border-radius: var(--r-sm); margin-top: 14px; font-size: .9rem; }
.form-ok.show { display: block; }

/* ---------- FAQ ---------- */
.faq { background: var(--paper); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 22px 40px 22px 0; font-family: 'Playfair Display', serif; font-size: 1.18rem; color: var(--ink);
  position: relative; }
.faq-q::after { content: "\2b"; position: absolute; right: 6px; top: 22px; color: var(--gold); font-weight: 700; transition: transform .3s; font-family: "Font Awesome 6 Free"; }
.faq-item.open .faq-q::after { content: "\f068"; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { padding: 0 0 22px; color: var(--muted); font-size: .96rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.72); padding: 60px 0 30px; }
.footer-grid { display: grid; gap: 34px; grid-template-columns: 1fr; margin-bottom: 40px; }
.footer-col h4 { color: #fff; font-family: 'Inter', sans-serif; font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col p { font-size: .9rem; margin-bottom: 14px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: .9rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand .brand-txt b { color: #fff; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: all .25s; }
.footer-social a:hover { background: var(--gold); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 24px; display: flex; flex-direction: column; gap: 10px; align-items: center; text-align: center; font-size: .82rem; }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center; font-size: 1.7rem; box-shadow: 0 10px 28px rgba(37,211,102,.5);
  transition: transform .25s; animation: wapulse 2.6s infinite;
}
.wa-float:hover { transform: scale(1.1); }
@keyframes wapulse { 0%,100% { box-shadow: 0 10px 28px rgba(37,211,102,.5); } 50% { box-shadow: 0 10px 28px rgba(37,211,102,.5), 0 0 0 14px rgba(37,211,102,0); } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Inner page hero (blog/menus) ---------- */
.page-hero {
  position: relative; color: #fff; text-align: center; padding: 150px 0 70px; overflow: hidden;
}
.page-hero .ph-bg { position: absolute; inset: 0; z-index: -2; }
.page-hero .ph-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(0deg, rgba(20,17,13,.88), rgba(20,17,13,.6)); }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem,6vw,3.6rem); margin: 16px 0 14px; }
.page-hero p { color: rgba(255,255,255,.85); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.breadcrumb { font-size: .82rem; color: rgba(255,255,255,.7); margin-top: 18px; }
.breadcrumb a:hover { color: var(--gold); }

/* ---------- Article ---------- */
.article { background: var(--cream); padding: 64px 0; }
.article-wrap { max-width: 760px; margin: 0 auto; }
.article-meta { display: flex; flex-wrap: wrap; gap: 16px; color: var(--muted); font-size: .85rem; margin-bottom: 26px; align-items: center; }
.article-meta .cat { color: var(--gold-dk); font-weight: 600; text-transform: uppercase; letter-spacing: .12em; }
.article-body { font-size: 1.06rem; color: var(--text); }
.article-body h2 { font-size: 1.7rem; margin: 38px 0 14px; }
.article-body h3 { font-size: 1.3rem; margin: 28px 0 10px; }
.article-body p { margin-bottom: 18px; }
.article-body ul.bullets { margin: 0 0 20px; padding-left: 4px; }
.article-body ul.bullets li { padding: 7px 0 7px 28px; position: relative; }
.article-body ul.bullets li::before { content: "\f805"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 0; color: var(--gold); font-size: .8rem; top: 11px; }
.article-body blockquote { border-left: 3px solid var(--gold); padding: 6px 0 6px 22px; margin: 24px 0; font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.3rem; color: var(--ink); }
.article-body img.full { border-radius: var(--r); margin: 28px 0; box-shadow: var(--shadow-sm); }
.article-body .tip { background: var(--sand); border-radius: var(--r-sm); padding: 18px 20px; margin: 24px 0; font-size: .95rem; }
.article-body .tip b { color: var(--gold-dk); }
.article-cta { background: var(--ink); color: #fff; border-radius: var(--r); padding: 34px 28px; margin: 40px 0 0; text-align: center; }
.article-cta h3 { color: #fff; font-size: 1.5rem; margin-bottom: 10px; }
.article-cta p { color: rgba(255,255,255,.8); margin-bottom: 20px; }

/* ---------- Responsive ---------- */
@media (min-width: 600px) {
  .occ-grid { grid-template-columns: 1fr 1fr; }
  .menu-cats { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 860px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .burger { display: none; }
  .section { padding: 96px 0; }
  .occ-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .menu-cats { grid-template-columns: repeat(3, 1fr); }
  .price-grid { grid-template-columns: repeat(3, 1fr); }
  .price-card.featured { transform: scale(1.05); }
  .about-grid { grid-template-columns: 1fr 1.1fr; }
  .testi-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1.05fr; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
@media (min-width: 1000px) {
  .menu-flex { display: grid; grid-template-columns: 1.3fr 1fr; gap: 36px; align-items: start; }
}
