/* Cofetăria David Buzău — foaie de stil principală */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --cream: #f7f2e8;
  --cream-2: #efe6d4;
  --brown-900: #1e1811;
  --brown-800: #2c2318;
  --brown-700: #453626;
  --brown-500: #6d5a42;
  --gold: #a3813f;
  --gold-light: #c9a968;
  --berry: #6c2733;
  --berry-light: #8f3a47;
  --ink: #211a13;
  --ink-soft: #6e6459;
  --white: #ffffff;
  --shadow: 0 30px 60px -30px rgba(20, 15, 10, 0.35);
  --shadow-soft: 0 16px 40px -24px rgba(20, 15, 10, 0.22);
  --radius: 2px;
  --radius-sm: 2px;
  --max-width: 1180px;
  --max-width-wide: 1400px;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(.16, .84, .44, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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(--serif);
  color: var(--brown-900);
  margin: 0 0 .5em;
  line-height: 1.15;
  letter-spacing: -.01em;
}

p {
  margin: 0 0 1em;
  color: var(--ink-soft);
  line-height: 1.7;
}

em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.section-head .eyebrow,
.text-center .eyebrow {
  justify-content: center;
}

.section {
  padding: 88px 0;
}

.section--tight {
  padding: 56px 0;
}

.section--cream2 {
  background: var(--cream-2);
}

.section--dark {
  background: var(--brown-900);
  color: var(--cream);
}

.section--dark h2, .section--dark h3 {
  color: var(--cream);
}

.section--dark p {
  color: rgba(251, 245, 236, 0.78);
}

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

.section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
}

.section-head p {
  font-size: 17px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 2px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease, opacity .25s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--brown-900);
  color: var(--cream);
}

.btn--primary:hover {
  background: var(--ink);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(251, 245, 236, 0.45);
}

.btn--ghost:hover {
  border-color: var(--cream);
  background: rgba(251, 245, 236, 0.08);
}

.btn--dark {
  background: var(--brown-900);
  color: var(--cream);
}

.btn--dark:hover {
  background: var(--brown-800);
}

.btn--outline {
  background: transparent;
  color: var(--brown-900);
  border-color: rgba(44, 28, 20, 0.35);
}

.btn--outline:hover {
  border-color: var(--brown-900);
  background: var(--brown-900);
  color: var(--cream);
}

.btn--text {
  padding: 4px 0;
  border-bottom: 1px solid currentColor;
  color: var(--brown-900);
  letter-spacing: .1em;
}

.btn--text:hover {
  color: var(--gold);
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(251, 245, 236, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid rgba(44, 28, 20, 0.08);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  color: var(--brown-900);
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 20px;
  color: var(--brown-900);
  flex-shrink: 0;
  box-shadow: 0 8px 18px -8px rgba(201, 152, 47, 0.7);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-size: 20px;
  font-weight: 700;
}

.brand-text span {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a.nav-link {
  position: relative;
  display: inline-block;
  padding: 6px 0;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--brown-800);
  transition: color .2s ease;
}

.main-nav a.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -3px;
  height: 1px;
  background: var(--gold);
  transition: right .25s var(--ease);
}

.main-nav a.nav-link:hover,
.main-nav a.nav-link.is-active {
  color: var(--brown-900);
}

.main-nav a.nav-link:hover::after,
.main-nav a.nav-link.is-active::after {
  right: 0;
}

.has-dropdown {
  position: relative;
  padding-bottom: 14px;
  margin-bottom: -14px;
}

.dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  transform: translate(-50%, 6px);
  min-width: 200px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.dropdown a {
  display: block;
  padding: 11px 16px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 500;
  color: var(--brown-800);
  white-space: nowrap;
  text-align: center;
}

.dropdown a:hover {
  background: var(--cream-2);
  color: var(--brown-900);
}

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

.header-cta .phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--brown-900);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(44, 28, 20, 0.15);
  background: var(--white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--brown-900);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero (light editorial split) ---------- */

.hero {
  position: relative;
  padding: 56px 0 0;
}

.hero .container {
  max-width: var(--max-width-wide);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  max-width: 520px;
}

.hero h1 {
  color: var(--brown-900);
  font-size: clamp(38px, 4.6vw, 72px);
  margin-bottom: 24px;
}

.hero p.lead {
  color: var(--ink-soft);
  font-size: clamp(16px, 1.4vw, 18px);
  max-width: 440px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  display: block;
  box-shadow: var(--shadow-soft);
}

.hero-quote {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 28px;
  max-width: 320px;
  background: var(--white);
  padding: 24px 26px;
  box-shadow: var(--shadow);
  border-top: 2px solid var(--gold);
}

.hero-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--brown-900);
  margin-bottom: 10px;
  line-height: 1.5;
}

.hero-quote-by {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: .04em;
}

.hero-quote-by svg { color: var(--gold); flex-shrink: 0; }

.hero--compact {
  padding: 40px 0 0;
}

.hero--compact .hero-grid {
  grid-template-columns: 1fr .9fr;
  gap: 56px;
}

.hero--compact .hero-content {
  max-width: 480px;
}

.hero--compact h1 {
  font-size: clamp(30px, 3.6vw, 48px);
  margin-bottom: 14px;
}

.hero--compact .breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 12px;
  color: var(--ink-soft);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero--compact .hero-visual img {
  aspect-ratio: 4/5;
  object-fit: cover;
}

/* Page header (non-home hero) */

.page-header {
  position: relative;
  color: var(--cream);
  padding: 76px 0 64px;
  overflow: hidden;
}

.page-header-media {
  position: absolute;
  inset: 0;
}

.page-header-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header-media--top img {
  object-position: top center;
}

.page-header-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(28, 18, 12, 0.82), rgba(28, 18, 12, 0.6));
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  color: var(--white);
  font-size: clamp(32px, 5vw, 48px);
  max-width: 720px;
}

.page-header p {
  color: rgba(251, 245, 236, 0.85);
  max-width: 640px;
  font-size: 17px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: rgba(251, 245, 236, 0.7);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ---------- Cards & grids ---------- */

.grid {
  display: grid;
  gap: 28px;
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid--auto {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

/* ---------- Showcase (curated professional photography) ---------- */

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 48px 32px;
}

.showcase-item {
  cursor: pointer;
  text-align: center;
}

.showcase-frame {
  position: relative;
  overflow: hidden;
  background: var(--cream-2);
  aspect-ratio: 4/5;
}

.showcase-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

.showcase-item:hover .showcase-frame img {
  transform: scale(1.045);
}

.showcase-label {
  display: block;
  margin-top: 20px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16.5px;
  color: var(--brown-900);
}

.showcase-cat {
  display: block;
  margin-top: 4px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}

.showcase-item--wide { grid-column: span 2; }
.showcase-item--wide .showcase-frame { aspect-ratio: 8/5; }

.showcase-more {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 40px;
  margin-top: 56px;
}

.feature-card {
  text-align: left;
  padding: 4px 32px 4px 0;
  border-left: 1px solid rgba(44, 28, 20, 0.1);
}

.feature-card:first-child {
  border-left: none;
}

.feature-card .icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
  border: 1px solid rgba(201, 152, 47, 0.35);
  border-radius: 50%;
}

.feature-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14.5px;
  margin-bottom: 0;
}

/* ---------- Split sections ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-media {
  position: relative;
}

.split-media .float-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 14px;
}

.split-media .float-card strong {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--brown-900);
  display: block;
}

.split-media .float-card span {
  font-size: 12.5px;
  color: var(--ink-soft);
}

.list-check {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0 0;
}

.list-check li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15.5px;
  color: var(--ink);
}

.list-check li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold);
}

/* ---------- Gallery ---------- */

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1.5px solid rgba(44, 28, 20, 0.15);
  background: var(--white);
  color: var(--brown-800);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s ease;
}

.filter-btn:hover {
  border-color: var(--gold);
}

.filter-btn.is-active {
  background: var(--brown-900);
  border-color: var(--brown-900);
  color: var(--cream);
}

.gallery-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--ink-soft);
}

.gallery-note {
  text-align: center;
  max-width: 620px;
  margin: -12px auto 40px;
  font-size: 14px;
  color: var(--ink-soft);
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 13, 9, 0.92);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-inner {
  position: relative;
  max-width: 1000px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-inner img {
  max-height: 76vh;
  width: auto;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  color: var(--cream);
  margin-top: 18px;
  font-size: 15px;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  background: rgba(251, 245, 236, 0.12);
  border: 1px solid rgba(251, 245, 236, 0.3);
  color: var(--cream);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease;
  top: -60px;
  right: 0;
}

.lightbox-close:hover {
  background: rgba(251, 245, 236, 0.25);
}

/* ---------- Steps / distribution ---------- */

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

.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  border: 1px solid rgba(44, 28, 20, 0.08);
  position: relative;
}

.step-card .step-number {
  font-family: var(--serif);
  font-size: 42px;
  color: var(--gold-light);
  -webkit-text-stroke: 1.5px var(--gold);
  margin-bottom: 12px;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip {
  padding: 10px 20px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(44, 28, 20, 0.22);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--brown-800);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--brown-900);
  border-radius: 2px;
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: var(--cream);
  box-shadow: var(--shadow);
}

.cta-band h2 {
  color: var(--white);
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 8px;
}

.cta-band p {
  color: rgba(251, 245, 236, 0.8);
  margin-bottom: 0;
}

.cta-band-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid rgba(44, 28, 20, 0.08);
}

.contact-row {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(44, 28, 20, 0.08);
}

.contact-row:last-child {
  border-bottom: none;
}

.contact-row .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201, 152, 47, 0.35);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-row h4 {
  font-size: 15.5px;
  margin-bottom: 4px;
}

.contact-row p, .contact-row a {
  font-size: 14.5px;
  margin: 0;
}

.contact-row a:hover {
  color: var(--gold);
}

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--brown-800);
  margin-bottom: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1.5px solid rgba(44, 28, 20, 0.15);
  font-family: var(--sans);
  font-size: 14.5px;
  background: var(--cream);
  color: var(--ink);
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-note {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 10px;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--brown-900);
  color: rgba(251, 245, 236, 0.75);
  padding: 72px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(251, 245, 236, 0.12);
}

.footer-brand p {
  color: rgba(251, 245, 236, 0.65);
  font-size: 14px;
  max-width: 300px;
}

.footer-col h4 {
  color: var(--cream);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 14.5px;
  color: rgba(251, 245, 236, 0.75);
  transition: color .2s ease;
}

.footer-col a:hover {
  color: var(--gold-light);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(251, 245, 236, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, border-color .2s ease;
}

.footer-social a:hover {
  background: rgba(251, 245, 236, 0.1);
  border-color: var(--gold-light);
}

.footer-bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(251, 245, 236, 0.5);
}

/* ---------- Utilities ---------- */

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

.badge-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 152, 47, 0.12);
  color: var(--brown-800);
  border: 1px solid rgba(201, 152, 47, 0.35);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
}

/* ---------- Scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Trust bar ---------- */

.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px;
  padding: 60px 0 36px;
  border-bottom: 1px solid rgba(44, 28, 20, 0.1);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 13.5px;
  letter-spacing: .03em;
}

.trust-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

.trust-item strong {
  font-family: var(--serif);
  font-style: italic;
  color: var(--brown-900);
  font-size: 16px;
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .hero-grid,
  .hero--compact .hero-grid { grid-template-columns: 1fr; }
  .hero-content { max-width: none; }
  .hero-visual { margin-top: 8px; }
  .hero--compact { padding-top: 28px; }
  .hero--compact .hero-visual img { aspect-ratio: 16/10; }
  .split-media .float-card { right: 16px; bottom: -20px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { flex-direction: column; text-align: center; }
  .feature-card { border-left: none; border-top: 1px solid rgba(44, 28, 20, 0.1); padding: 24px 0 0; }
  .feature-card:first-child { border-top: none; padding-top: 4px; }
  .showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-item--wide { grid-column: span 2; }
}

@media (max-width: 720px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-cta .phone-link,
  .header-cta .btn { display: none; }
  .brand-text span { display: none; }
  .site-header .container { height: 72px; }
  .section { padding: 60px 0; }
  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band { padding: 36px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .lightbox-close { top: 8px; right: 8px; }
  .hero { padding-top: 32px; }
  .hero-quote { position: static; max-width: none; width: 100%; margin: 20px 0 0; padding: 22px 24px; }
  .showcase-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
  .showcase-item--wide { grid-column: span 2; }

  .trust-bar { flex-direction: column; align-items: center; gap: 14px; padding: 28px 0; }

  .hero-actions,
  .cta-band-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn,
  .cta-band-actions .btn {
    width: 100%;
  }

  /* mobile dropdown menu */
  .mobile-menu {
    position: fixed;
    inset: 72px 0 0 0;
    background: var(--cream);
    z-index: 400;
    padding: 24px;
    overflow-y: auto;
    display: none;
  }
  .mobile-menu.is-open { display: block; }
  .mobile-menu > a {
    display: block;
    padding: 16px 4px;
    font-size: 18px;
    font-family: var(--serif);
    color: var(--brown-900);
    border-bottom: 1px solid rgba(44,28,20,.08);
  }
  .mobile-menu .sub-link {
    padding-left: 20px;
    font-size: 16px;
    font-family: var(--sans);
    color: var(--brown-700);
  }
  .mobile-menu a.is-active {
    color: var(--gold);
  }
  .mobile-menu .mobile-cta {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
}

@media (min-width: 721px) {
  .mobile-menu { display: none !important; }
}
