/* ==========================================================================
   Maison Rèvive – V2 Experimental / Editorial
   Unconventional layouts, overlaps, broken grids, superimposed elements
   ========================================================================== */

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

/* ---------- CSS Variables ---------- */
:root {
  --color-primary:    #6B7F6B;
  --color-secondary:  #8A9A7B;
  --color-accent:     #A8B4A0;
  --color-dark:       #2C3530;
  --color-text:       #3D4A42;
  --color-bg:         #F5F7F4;
  --color-bg-alt:     #EBF0E9;
  --color-light:      #D6DDD3;
  --color-white:      #FFFFFF;
  --color-subtle:     #B8C4B3;
  --shadow: 0 4px 24px rgba(44,53,48,.08);
  --shadow-hover: 0 12px 48px rgba(44,53,48,.16);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Raleway', 'Segoe UI', sans-serif;
  --radius: 0px;
  --transition: all .4s cubic-bezier(.25,.46,.45,.94);
}

/* ---------- 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(--color-text);
  background: var(--color-bg); line-height: 1.7; font-weight: 400;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-secondary); }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading); color: var(--color-dark);
  font-weight: 400; line-height: 1.15;
}
h1 { font-size: clamp(3rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.15rem; }
p { margin-bottom: 1rem; }

/* ---------- Utility ---------- */
.container { width: 88%; max-width: 1400px; margin: 0 auto; }
.container-narrow { width: 88%; max-width: 900px; margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 16px 44px;
  font-family: var(--font-body); font-weight: 600; font-size: .8rem;
  letter-spacing: .12em; text-transform: uppercase;
  cursor: pointer; transition: var(--transition); border: 1px solid transparent;
}
.btn-primary {
  background: var(--color-dark); color: var(--color-white); border-color: var(--color-dark);
}
.btn-primary:hover { background: var(--color-secondary); color: var(--color-white); border-color: var(--color-secondary); }
.btn-outline {
  background: transparent; color: var(--color-white); border-color: var(--color-white);
}
.btn-outline:hover { background: var(--color-white); color: var(--color-dark); }
.btn-outline-dark {
  background: transparent; color: var(--color-dark); border-color: var(--color-dark);
}
.btn-outline-dark:hover { background: var(--color-dark); color: var(--color-white); }

/* ==========================================================================
   NAVIGATION — transparent, blends with hero
   ========================================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  transition: background .4s ease, box-shadow .4s ease;
}
.site-header.scrolled {
  background: rgba(250,246,241,.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--color-light);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between; padding: 24px 0;
}
.logo {
  font-family: var(--font-heading); font-size: 1.5rem; font-weight: 400;
  color: var(--color-white); letter-spacing: .08em; text-transform: uppercase;
  transition: color .4s ease;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { height: 36px; width: auto; border-radius: 4px; }
.logo span { font-weight: 600; }
.site-header.scrolled .logo { color: var(--color-dark); }
.site-header.scrolled .nav-links a { color: var(--color-text); }
.nav-links {
  display: flex; list-style: none; gap: 36px; align-items: center;
}
.nav-links a {
  font-size: .75rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.8); position: relative;
}
.nav-links a:hover { color: var(--color-white); }
.site-header.scrolled .nav-links a:hover { color: var(--color-secondary); }
.nav-links .btn {
  padding: 10px 28px; font-size: .72rem;
  border-color: rgba(255,255,255,.5); color: var(--color-white); background: transparent;
}
.nav-links .btn:hover {
  background: var(--color-white); color: var(--color-dark); border-color: var(--color-white);
}
.site-header.scrolled .nav-links .btn { border-color: var(--color-dark); color: var(--color-dark); }
.site-header.scrolled .nav-links .btn:hover { background: var(--color-dark); color: var(--color-white); }
.menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px;
}
.menu-toggle span {
  display: block; width: 26px; height: 2px;
  background: var(--color-white); transition: var(--transition);
}
.site-header.scrolled .menu-toggle span { background: var(--color-dark); }

/* ==========================================================================
   HERO — Split composition with superimposed watermark
   ========================================================================== */
.hero {
  position: relative; min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden; background: var(--color-dark);
}
.hero-media { position: relative; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 80px 80px 60px; position: relative; z-index: 2;
}
.hero-text h1 {
  color: var(--color-white); font-style: italic;
  font-weight: 400; line-height: 1.05; margin-bottom: 32px;
}
.hero-text p {
  color: rgba(255,255,255,.65); font-size: 1rem;
  line-height: 1.9; max-width: 420px; margin-bottom: 48px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-floating-label {
  position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%);
  z-index: 10; font-family: var(--font-heading);
  font-size: clamp(6rem, 12vw, 11rem); font-weight: 300;
  color: rgba(255,255,255,.07); white-space: nowrap;
  pointer-events: none; letter-spacing: -.02em;
}
.hero-inner {
  min-height: 60vh; grid-template-columns: 1fr;
  place-items: center; text-align: center;
}
.hero-inner .hero-media { position: absolute; inset: 0; opacity: .4; }
.hero-inner .hero-text {
  padding: 160px 40px 80px; align-items: center; max-width: 700px;
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section { padding: 140px 0; }
.section-alt { background: var(--color-bg-alt); }
.section-dark { background: var(--color-dark); color: var(--color-subtle); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--color-white); }

.section-intro { margin-bottom: 100px; }
.section-intro h2 { font-style: italic; font-weight: 400; margin-bottom: 24px; }
.section-intro p {
  max-width: 520px; color: var(--color-primary); font-size: 1.05rem; line-height: 1.9;
}
.section-intro .divider {
  width: 48px; height: 1px; background: var(--color-secondary); margin-top: 32px;
}
.section-intro.centered { text-align: center; }
.section-intro.centered p { margin-left: auto; margin-right: auto; }
.section-intro.centered .divider { margin-left: auto; margin-right: auto; }

/* ==========================================================================
   TRUST STRIP — staggered chips
   ========================================================================== */
.trust-strip {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 20px 48px; padding: 80px 0;
  border-top: 1px solid var(--color-light); border-bottom: 1px solid var(--color-light);
}
.trust-chip {
  font-family: var(--font-body); font-size: .72rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--color-primary);
  padding: 12px 28px; border: 1px solid var(--color-light); transition: var(--transition);
}
.trust-chip:nth-child(odd) { transform: translateY(-8px); }
.trust-chip:nth-child(even) { transform: translateY(8px); }
.trust-chip:hover {
  background: var(--color-dark); color: var(--color-white); border-color: var(--color-dark);
}

/* ==========================================================================
   EDITORIAL GRID — offset cards
   ========================================================================== */
.editorial-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: 24px; align-items: start;
}
.editorial-card { position: relative; overflow: hidden; transition: var(--transition); }
.editorial-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.editorial-card:hover img { transform: scale(1.04); }
.editorial-card-body { padding: 28px 0 0; }
.editorial-card-body h3 { font-weight: 500; margin-bottom: 10px; }
.editorial-card-body p { font-size: .88rem; color: var(--color-primary); line-height: 1.8; }
.editorial-card:nth-child(1) { grid-column: 1 / 7; }
.editorial-card:nth-child(2) { grid-column: 7 / 13; margin-top: 80px; }
.editorial-card:nth-child(3) { grid-column: 1 / 7; }
.editorial-card:nth-child(4) { grid-column: 7 / 13; margin-top: 80px; }
.editorial-card .card-img { height: 320px; overflow: hidden; }

/* ==========================================================================
   OVERLAP COMPOSITION — image + text superimposed
   ========================================================================== */
.overlap-block {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: 24px; align-items: center; padding: 60px 0;
}
.overlap-img { overflow: hidden; }
.overlap-img img { width: 100%; height: 560px; object-fit: cover; object-position: top; }
.overlap-text {
  background: rgba(255,255,255,.72); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  padding: 56px 48px;
  box-shadow: var(--shadow); position: relative; z-index: 2;
}
.overlap-text h3 {
  font-style: italic; font-weight: 500;
  font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 20px;
}
.overlap-text p { font-size: .92rem; line-height: 1.9; color: var(--color-primary); }
.overlap-text ul { list-style: none; margin-top: 20px; }
.overlap-text ul li {
  padding: 10px 0; border-bottom: 1px solid var(--color-light);
  font-size: .9rem; padding-left: 20px; position: relative;
}
.overlap-text ul li::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 8px; height: 1px; background: var(--color-secondary);
}
.overlap-block.img-left .overlap-img { grid-column: 1 / 7; grid-row: 1; }
.overlap-block.img-left .overlap-text { grid-column: 5 / 12; grid-row: 1; margin-left: -40px; }
.overlap-block.img-right .overlap-img { grid-column: 7 / 13; grid-row: 1; }
.overlap-block.img-right .overlap-text { grid-column: 2 / 9; grid-row: 1; margin-right: -40px; }

/* Founder's-note variant: narrower + slightly taller image, less text overlap so more of the torso stays visible.
   Image aspect 5/6 with source aspect 2/3 shows the top ~80% of the source (head down to about the 2nd button). */
@media (min-width: 993px) {
  .overlap-block.founder-note .overlap-img { grid-column: 1 / 6; }
  .overlap-block.founder-note .overlap-img img { height: auto; aspect-ratio: 5 / 6; }
  .overlap-block.founder-note .overlap-text { grid-column: 5 / 12; margin-left: 0; }
}

/* Team-portrait variant: text overlay pushed one column inward so it covers less of the photo. */
@media (min-width: 993px) {
  .overlap-block.team-portrait.img-left .overlap-text { grid-column: 6 / 12; margin-left: 0; }
  .overlap-block.team-portrait.img-right .overlap-text { grid-column: 2 / 8; margin-right: 0; }
}


/* ==========================================================================
   GIANT NUMBERS — superimposed behind content
   ========================================================================== */
.numbered-list { position: relative; counter-reset: diff-counter; }
.numbered-item {
  display: grid; grid-template-columns: 120px 1fr;
  margin-bottom: 64px; align-items: start; position: relative;
}
.numbered-item-num {
  font-family: var(--font-heading); font-size: 7rem; font-weight: 300;
  line-height: .85; color: var(--color-light); transition: color .4s ease;
}
.numbered-item:hover .numbered-item-num { color: var(--color-secondary); }
.numbered-item-content { padding-top: 12px; }
.numbered-item-content h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem; font-weight: 500; margin-bottom: 10px;
}
.numbered-item-content p {
  font-size: .9rem; line-height: 1.8; color: var(--color-primary); max-width: 480px;
}

/* ==========================================================================
   PRICING — overlapping cards with depth
   ========================================================================== */
.pricing-row {
  display: grid; grid-template-columns: repeat(2, 1fr);
  max-width: 880px; margin: 0 auto; gap: 16px;
}
.pricing-card {
  padding: 56px 40px; border: 1px solid var(--color-light);
  transition: var(--transition); position: relative; background: var(--color-white);
}
.pricing-card:nth-child(2) {
  transform: scale(1.05); z-index: 2;
  box-shadow: var(--shadow-hover); border-color: var(--color-secondary);
}
.pricing-card-label {
  font-size: .7rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--color-secondary); margin-bottom: 8px;
}
.pricing-card h3 { font-style: italic; font-weight: 500; margin-bottom: 8px; }
.pricing-card .price {
  font-family: var(--font-heading); font-size: 2.6rem; font-weight: 300;
  color: var(--color-dark); margin: 20px 0;
}
.pricing-card .price small { font-size: .95rem; color: var(--color-primary); white-space: nowrap; }
.pricing-card ul { list-style: none; margin: 24px 0 32px; }
.pricing-card ul li {
  padding: 10px 0; border-bottom: 1px solid var(--color-light);
  font-size: .85rem; color: var(--color-primary);
}
.pricing-card ul li .item-desc {
  display: block; font-size: .78rem; color: var(--color-text);
  margin-top: 4px; line-height: 1.5; opacity: .8;
}
.pricing-card .btn { width: 100%; text-align: center; }

/* ==========================================================================
   TESTIMONIALS — large pull-quote, alternating
   ========================================================================== */
.testimonial-block {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: 24px; margin-bottom: 80px; align-items: center;
}
.testimonial-quote { position: relative; padding-left: 40px; }
.testimonial-quote::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--color-secondary);
}
.testimonial-quote p {
  font-family: var(--font-heading); font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem); line-height: 1.6;
  color: var(--color-dark); margin-bottom: 20px;
}
.testimonial-quote .author {
  font-family: var(--font-body); font-style: normal; font-size: .8rem;
  font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--color-secondary);
}
.testimonial-block:nth-child(odd) .testimonial-quote { grid-column: 2 / 8; }
.testimonial-block:nth-child(odd) .testimonial-img { grid-column: 9 / 12; }
.testimonial-block:nth-child(even) .testimonial-quote { grid-column: 6 / 12; }
.testimonial-block:nth-child(even) .testimonial-img { grid-column: 2 / 5; grid-row: 1; }
.testimonial-img img { width: 100%; height: 240px; object-fit: cover; opacity: .7; }

/* ==========================================================================
   CTA — asymmetric with watermark
   ========================================================================== */
.cta-section {
  background: var(--color-dark); padding: 120px 0;
  position: relative; overflow: hidden;
}
.cta-section::after {
  content: 'Rèvive'; position: absolute; bottom: -40px; right: -20px;
  font-family: var(--font-heading); font-size: clamp(10rem, 20vw, 18rem);
  font-style: italic; font-weight: 300; color: rgba(255,255,255,.03);
  pointer-events: none; line-height: 1;
}
.cta-content { max-width: 560px; }
.cta-content h2 {
  color: var(--color-white); font-style: italic; font-weight: 400; margin-bottom: 20px;
}
.cta-content p { color: rgba(255,255,255,.6); margin-bottom: 40px; line-height: 1.9; }

/* ==========================================================================
   FORMS — editorial underline style
   ========================================================================== */
.form-group { margin-bottom: 28px; }
.form-group label {
  display: block; margin-bottom: 8px; font-size: .72rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--color-primary);
}
.form-control {
  width: 100%; padding: 16px 0; border: none;
  border-bottom: 1px solid var(--color-light);
  font-family: var(--font-body); font-size: .95rem;
  color: var(--color-text); background: transparent; transition: var(--transition);
}
.form-control:focus { outline: none; border-color: var(--color-dark); }
textarea.form-control { min-height: 120px; resize: vertical; }
select.form-control { appearance: none; }
.form-row { display: flex; gap: 40px; }
.form-row .form-group { flex: 1; }

/* ==========================================================================
   TOGGLE / FAQ — minimal editorial
   ========================================================================== */
.toggle-item { border-bottom: 1px solid var(--color-light); overflow: hidden; }
.toggle-header {
  padding: 28px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-heading); font-style: italic;
  font-weight: 500; font-size: 1.2rem; color: var(--color-dark);
  transition: var(--transition);
}
.toggle-header:hover { color: var(--color-secondary); }
.toggle-icon {
  font-family: var(--font-body); font-style: normal;
  font-size: .9rem; transition: var(--transition);
}
.toggle-item.open .toggle-icon { transform: rotate(45deg); }
.toggle-body { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.toggle-body-inner {
  padding: 0 0 28px; font-size: .9rem; color: var(--color-primary);
  line-height: 1.9; max-width: 640px;
}

/* ==========================================================================
   GALLERY — broken grid mosaic
   ========================================================================== */
.gallery-mosaic {
  display: grid; grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 200px; gap: 16px;
}
.gallery-mosaic-item {
  overflow: hidden; position: relative; cursor: pointer;
}
.gallery-mosaic-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.gallery-mosaic-item:hover img { transform: scale(1.06); }
.gallery-mosaic-item .overlay {
  position: absolute; inset: 0; background: rgba(61,52,41,.5);
  display: flex; align-items: flex-end; padding: 20px;
  opacity: 0; transition: opacity .3s ease;
}
.gallery-mosaic-item:hover .overlay { opacity: 1; }
.gallery-mosaic-item .overlay span {
  color: var(--color-white); font-family: var(--font-heading);
  font-size: 1.1rem;
}
.gallery-mosaic-item:nth-child(1)  { grid-column: 1 / 5; grid-row: span 2; }
.gallery-mosaic-item:nth-child(2)  { grid-column: 5 / 9; grid-row: span 1; }
.gallery-mosaic-item:nth-child(3)  { grid-column: 9 / 13; grid-row: span 2; }
.gallery-mosaic-item:nth-child(4)  { grid-column: 5 / 9; grid-row: span 2; }
.gallery-mosaic-item:nth-child(5)  { grid-column: 1 / 4; grid-row: span 1; }
.gallery-mosaic-item:nth-child(6)  { grid-column: 4 / 7; grid-row: span 2; }
.gallery-mosaic-item:nth-child(7)  { grid-column: 7 / 10; grid-row: span 1; }
.gallery-mosaic-item:nth-child(8)  { grid-column: 10 / 13; grid-row: span 2; }
.gallery-mosaic-item:nth-child(9)  { grid-column: 1 / 4; grid-row: span 2; }
.gallery-mosaic-item:nth-child(10) { grid-column: 7 / 10; grid-row: span 2; }
.gallery-mosaic-item:nth-child(11) { grid-column: 4 / 7; grid-row: span 1; }
.gallery-mosaic-item:nth-child(12) { grid-column: 10 / 13; grid-row: span 2; }
.gallery-mosaic-item:nth-child(13) { grid-column: 1 / 4; grid-row: span 1; }

/* ==========================================================================
   BLURB GRID
   ========================================================================== */
.blurb-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.blurb-v2 { padding: 0; }
.blurb-v2-icon { font-size: 1.6rem; color: var(--color-secondary); margin-bottom: 16px; }
.blurb-v2 h4 {
  font-family: var(--font-heading); font-style: italic;
  font-weight: 400; font-size: 1.2rem; margin-bottom: 12px;
}
.blurb-v2 p { font-size: .88rem; color: var(--color-primary); line-height: 1.8; }

/* ==========================================================================
   FOOTER — minimal, asymmetric
   ========================================================================== */
.site-footer {
  background: var(--color-dark); color: var(--color-subtle); padding: 100px 0 40px;
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 80px;
}
.footer-col h4 {
  color: var(--color-white); font-family: var(--font-heading); font-style: italic;
  font-size: 1.2rem; margin-bottom: 24px; font-weight: 500;
}
.footer-col p { font-size: .85rem; line-height: 1.8; color: var(--color-subtle); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { font-size: .82rem; letter-spacing: .04em; color: var(--color-subtle); }
.footer-col ul a:hover { color: var(--color-white); }
.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 32px; margin-bottom: 24px;
  font-size: .75rem; line-height: 1.7; color: rgba(255,255,255,.45);
  max-width: 920px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .78rem; color: rgba(255,255,255,.3);
}

/* reCAPTCHA v3: hide the floating badge but keep the required disclosure
   visible in the footer whenever the script is active. */
.grecaptcha-badge { visibility: hidden !important; }
.recaptcha-disclosure { display: none; font-size: .72rem; color: rgba(255,255,255,.35); margin-top: 12px; }
.recaptcha-disclosure a { color: rgba(255,255,255,.55); text-decoration: underline; }
body.recaptcha-active .recaptcha-disclosure { display: block; }

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
.animate-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.animate-in.visible { opacity: 1; transform: translateY(0); }
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: .1s; }
.stagger > *:nth-child(3) { transition-delay: .2s; }
.stagger > *:nth-child(4) { transition-delay: .3s; }
.stagger > *:nth-child(5) { transition-delay: .4s; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 992px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-media { height: 50vh; }
  .hero-text { padding: 60px 40px 80px; }
  .hero-floating-label { display: none; }
  .hero-inner { min-height: 50vh; }
  .editorial-card:nth-child(n) { grid-column: 1 / 13; margin-top: 0; }
  .overlap-block { grid-template-columns: 1fr; }
  .overlap-block.img-left .overlap-img,
  .overlap-block.img-right .overlap-img,
  .overlap-block.img-left .overlap-text,
  .overlap-block.img-right .overlap-text {
    grid-column: 1 / -1; grid-row: auto; margin: 0;
  }
  .overlap-text { margin-top: -40px; position: relative; z-index: 2; background: var(--color-white); backdrop-filter: none; -webkit-backdrop-filter: none; }
  .pricing-row { grid-template-columns: 1fr; gap: 20px; }
  .pricing-card:nth-child(2) { transform: none; }
  .testimonial-block { grid-template-columns: 1fr; }
  .testimonial-block:nth-child(n) .testimonial-quote,
  .testimonial-block:nth-child(n) .testimonial-img { grid-column: 1 / -1; grid-row: auto; }
  .blurb-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0; background: var(--color-bg);
    padding: 24px; border-bottom: 1px solid var(--color-light);
    box-shadow: 0 8px 24px rgba(61,52,41,.1); gap: 16px;
  }
  .nav-links.open a { color: var(--color-text); }
  .nav-links.open .btn { border-color: var(--color-dark); color: var(--color-dark); }
  .menu-toggle { display: flex; }
  .section { padding: 80px 0; }
  .numbered-item { grid-template-columns: 80px 1fr; }
  .numbered-item-num { font-size: 4.5rem; }
}

@media (max-width: 768px) {
  .form-row { flex-direction: column; gap: 0; }
  .footer-top { grid-template-columns: 1fr; }
  .gallery-mosaic { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .gallery-mosaic-item:nth-child(n) { grid-column: auto; grid-row: auto; }
  .gallery-mosaic-item:nth-child(1),
  .gallery-mosaic-item:nth-child(4),
  .gallery-mosaic-item:nth-child(7),
  .gallery-mosaic-item:nth-child(10) { grid-column: span 2; }
  .blurb-grid { grid-template-columns: 1fr; }
  .trust-strip { gap: 12px 24px; }
  .trust-chip:nth-child(n) { transform: none; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-text { padding: 100px 24px 60px; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn { width: 100%; text-align: center; }
  .gallery-mosaic { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-mosaic-item:nth-child(n) { grid-column: auto; }
}
