/* ==========================================================================
   The Nail Edit by Amelia — stylesheet
   --------------------------------------------------------------------------
   Written mobile-first: the base rules are the phone layout, and the
   @media blocks further down widen things for tablet and desktop.

   Want to change the colours or fonts? Everything lives in the
   ":root" block directly below — change it once here and it updates
   everywhere on the site.
   ========================================================================== */

:root {
  /* ---- Colour palette (blush / cream / tan) ---- */
  --cream:        #fdf6f0;   /* page background            */
  --cream-warm:   #f9ede3;   /* alternating section bg     */
  --blush:        #f3dad2;   /* soft pink panels           */
  --blush-deep:   #e3b3a5;   /* decorative pink            */
  --tan:          #c69a76;   /* warm tan accents           */
  --terracotta:   #96543c;   /* buttons + links (dark enough for white text) */
  --terracotta-dk:#7d4430;   /* button hover               */
  --ink:          #43332c;   /* body + heading text        */
  --ink-soft:     #7a6357;   /* secondary text             */
  --line:         #ecd9cd;   /* hairline borders           */
  --white:        #fffdfb;

  /* ---- Type ---- */
  --font-script:  'Parisienne', 'Segoe Script', cursive;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* ---- Layout ---- */
  --wrap:         1160px;
  --radius:       18px;
  --radius-lg:    28px;
  --shadow:       0 10px 30px rgba(112, 74, 55, 0.10);
  --shadow-lift:  0 18px 44px rgba(112, 74, 55, 0.18);
  --header-h:     68px;
  --ease:         cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ==========================================================================
   Base / reset
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* Stops the sticky header covering a heading when you jump to a section */
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--terracotta); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--terracotta-dk); }

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

h2 { font-size: clamp(1.9rem, 5.2vw, 2.75rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1.1em; }

ul, ol { margin: 0; padding: 0; }

/* Visible focus ring for keyboard users on every interactive element */
:focus-visible {
  outline: 3px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: 6px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 20px;
}

.section { padding: 64px 0; }

.skip-link {
  position: absolute;
  left: 12px;
  top: -100px;
  z-index: 200;
  background: var(--white);
  color: var(--terracotta);
  padding: 10px 16px;
  border-radius: 0 0 12px 12px;
  font-weight: 500;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 0; }

/* Decorative script text (used in the logo + accents) */
.script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--blush-deep);
  letter-spacing: 0.01em;
}
.script-accent {
  font-family: var(--font-script);
  color: var(--tan);
  font-weight: 400;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tan);
  font-weight: 500;
  margin: 0 0 0.7em;
}

.section-head { max-width: 640px; margin: 0 auto 40px; text-align: center; }
.section-head .section-lede { color: var(--ink-soft); margin-bottom: 0; }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  padding: 15px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background-color 0.25s var(--ease), color 0.25s var(--ease);
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(150, 84, 60, 0.22);
}
.btn-primary:hover {
  background: var(--terracotta-dk);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(150, 84, 60, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--terracotta);
  border-color: var(--blush-deep);
}
.btn-ghost:hover {
  background: var(--blush);
  border-color: var(--tan);
  transform: translateY(-2px);
}

.btn-small { padding: 10px 20px; font-size: 0.94rem; }
.btn-block { display: flex; width: 100%; }
.btn:active { transform: translateY(0); }

.ico { width: 1.15em; height: 1.15em; fill: currentColor; flex: none; }

/* ==========================================================================
   Header / navigation
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 246, 240, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
/* .is-scrolled is added by main.js once the page scrolls */
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 20px rgba(112, 74, 55, 0.07);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-h);
}

/* --- Logo: circular script badge + wordmark --- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}

.brand-badge {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 50%;
  background: var(--cream-warm);
  border: 1px solid var(--blush-deep);
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: transform 0.3s var(--ease);
}
.brand:hover .brand-badge { transform: rotate(-6deg) scale(1.05); }

.brand-badge-inner {
  font-family: var(--font-script);
  font-size: 0.7rem;
  line-height: 1;
  color: var(--tan);
  text-align: center;
  padding: 0 3px;
}

.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.02rem;
  letter-spacing: 0.01em;
}
.brand-sub {
  font-family: var(--font-script);
  font-size: 0.95rem;
  color: var(--tan);
}

/* --- Hamburger --- */
.nav-toggle {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.2s var(--ease);
}
.nav-toggle:hover { background: var(--blush); }

.nav-toggle-bars { display: block; width: 20px; height: 14px; position: relative; }
.nav-toggle-bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease), top 0.3s var(--ease);
}
.nav-toggle-bars span:nth-child(1) { top: 0; }
.nav-toggle-bars span:nth-child(2) { top: 6px; }
.nav-toggle-bars span:nth-child(3) { top: 12px; }

.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(3) { top: 6px; transform: rotate(-45deg); }

/* --- Mobile menu panel --- */
.nav {
  position: absolute;
  inset: 100% 0 auto 0;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 20px 30px rgba(112, 74, 55, 0.1);
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  visibility: hidden;
  transition: grid-template-rows 0.32s var(--ease), visibility 0.32s;
}
.nav.is-open { grid-template-rows: 1fr; visibility: visible; }

.nav-list {
  list-style: none;
  min-height: 0;
  padding: 6px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-list a {
  display: block;
  padding: 12px 4px;
  color: var(--ink);
  font-weight: 400;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s var(--ease), padding-left 0.2s var(--ease);
}
.nav-list a:hover { color: var(--terracotta); padding-left: 10px; }
/* .is-active is set by main.js as you scroll past each section */
.nav-list a.is-active { color: var(--terracotta); font-weight: 500; }

/* The "DM to book" pill inside the menu — needs to beat the plain-link rules above */
.nav-cta-item { margin-top: 14px; }
.nav-list a.btn {
  border-bottom: 0;
  display: flex;
  width: 100%;
  padding: 13px 22px;
  color: var(--white);
  font-weight: 500;
}
.nav-list a.btn:hover { padding-left: 22px; color: var(--white); }

/* ==========================================================================
   1. Hero
   ========================================================================== */

.hero {
  position: relative;
  padding: 40px 0 56px;
  background:
    radial-gradient(1100px 520px at 82% -8%, var(--blush) 0%, rgba(243, 218, 210, 0) 62%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
  overflow: hidden;
}

.hero-inner { display: grid; gap: 40px; }

.hero-title { margin: 0 0 0.35em; line-height: 0.95; }
.hero-title .script {
  display: block;
  font-size: clamp(3rem, 15vw, 5.2rem);
  color: var(--blush-deep);
}
.hero-title-sub {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 4.4vw, 1.5rem);
  font-style: italic;
  color: var(--ink);
  letter-spacing: 0.16em;
  text-transform: lowercase;
  margin-top: -0.1em;
  padding-left: 0.2em;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 4.6vw, 1.6rem);
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 0.7em;
}
.hero-lede { color: var(--ink-soft); max-width: 46ch; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 14px;
}
.hero-actions .btn { flex: 1 1 100%; }

.hero-note { font-size: 0.9rem; color: var(--ink-soft); margin: 0; }

/* --- Instagram-grid style collage --- */
.hero-collage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.hero-tile {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--blush);
}
.hero-tile img {
  width: 100%;
  height: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.hero-tile:hover img { transform: scale(1.05); }
/* Stagger the tiles so it reads like an Instagram grid rather than a table */
.hero-tile-2 { transform: translateY(18px); }
.hero-tile-3 { transform: translateY(-18px); }

/* ==========================================================================
   2. About
   ========================================================================== */

.about { background: var(--cream); }
.about-inner { display: grid; gap: 32px; }

.about-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.about-photo img { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }

.about-points {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 26px;
  padding: 22px;
  background: var(--cream-warm);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.about-points li { position: relative; padding-left: 26px; color: var(--ink-soft); }
.about-points li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--blush-deep);
}

/* ==========================================================================
   3. Services
   ========================================================================== */

.services { background: var(--cream-warm); }

.card-grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: 0 4px 14px rgba(112, 74, 55, 0.05);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: var(--blush-deep);
}
.card h3 { margin-bottom: 0.45em; }
.card p { margin: 0; color: var(--ink-soft); font-size: 1rem; }
.card-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--terracotta);
  font-size: 1rem;
}
.card-quiet { background: var(--cream); }

.pricing-note {
  margin-top: 32px;
  padding: 30px 26px;
  background: var(--blush);
  border-radius: var(--radius-lg);
  text-align: center;
}
.pricing-note-title {
  font-family: var(--font-script);
  font-size: 2rem;
  font-weight: 400;
  color: var(--terracotta);
  margin-bottom: 0.2em;
}
.pricing-note p { max-width: 56ch; margin-inline: auto; color: var(--ink); }

/* ==========================================================================
   4. Gallery
   ========================================================================== */

.gallery { background: var(--cream); }

.gallery-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--blush);
  box-shadow: 0 4px 14px rgba(112, 74, 55, 0.06);
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.4s var(--ease);
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(150, 84, 60, 0) 55%, rgba(93, 55, 38, 0.22) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover::after { opacity: 1; }

.gallery-cta { text-align: center; margin: 32px 0 0; }

/* ==========================================================================
   5. Client love
   ========================================================================== */

.reviews { background: var(--cream-warm); }

.review-grid { display: grid; gap: 18px; }

.review {
  margin: 0;
  padding: 30px 26px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 14px rgba(112, 74, 55, 0.05);
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.review:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.review::before {
  content: "“";
  position: absolute;
  top: 6px;
  left: 20px;
  font-family: var(--font-display);
  font-size: 3.6rem;
  line-height: 1;
  color: var(--blush);
}
.review blockquote { margin: 0; position: relative; }
.review blockquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.55;
  margin: 0 0 0.9em;
}
.review figcaption {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tan);
  font-weight: 500;
}

/* ==========================================================================
   6. How to book
   ========================================================================== */

.booking { background: var(--cream); }

.steps {
  list-style: none;
  counter-reset: step;
  display: grid;
  gap: 18px;
}
.step {
  position: relative;
  padding: 30px 24px 26px;
  background: var(--cream-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.step-num {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.25rem;
}
.step h3 { margin-bottom: 0.4em; }
.step p { margin: 0; color: var(--ink-soft); font-size: 1rem; }

.booking-cta { text-align: center; margin: 34px 0 12px; }
.booking-cta .btn { width: 100%; }
.booking-smallprint {
  text-align: center;
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 0;
}

/* ==========================================================================
   7. Contact
   ========================================================================== */

.contact { background: var(--cream-warm); }
.contact-inner { display: grid; gap: 36px; }

.contact-facts { margin: 26px 0 0; }
.contact-facts dt {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tan);
  font-weight: 500;
  margin-top: 16px;
}
.contact-facts dd { margin: 4px 0 0; color: var(--ink-soft); }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 { margin-bottom: 0.3em; }
.form-intro { color: var(--ink-soft); font-size: 0.98rem; }

.field { margin-bottom: 18px; }
.field label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
}
.field input,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input::placeholder,
.field textarea::placeholder { color: #a08b7d; }
.field input:hover,
.field textarea:hover { border-color: var(--blush-deep); }
.field input:focus,
.field textarea:focus { background: var(--white); border-color: var(--tan); }

.field-error {
  margin: 6px 0 0;
  font-size: 0.88rem;
  color: #9c3b2c;
}
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border-color: #c0604f; }

.form-status {
  margin: 14px 0 0;
  font-size: 0.95rem;
  min-height: 1.4em;
}
.form-status.is-ok { color: #4a6b3d; }
.form-status.is-error { color: #9c3b2c; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--ink);
  color: #f4e6dc;
  padding: 52px 0 0;
}
.site-footer a { color: #f4e6dc; text-decoration: none; }
.site-footer a:hover { color: var(--blush-deep); }

.footer-inner { display: grid; gap: 32px; }

.footer-script { font-size: 2.4rem; line-height: 1; display: block; color: var(--blush-deep); }
.footer-by {
  font-family: var(--font-display);
  font-style: italic;
  letter-spacing: 0.14em;
  color: #d9c3b4;
  display: block;
  margin-top: 2px;
}
.footer-loc { margin: 14px 0 0; color: #cbb4a6; font-size: 0.95rem; }

.footer-nav ul { list-style: none; display: grid; gap: 10px; }
.footer-nav a { transition: padding-left 0.2s var(--ease); }
.footer-nav a:hover { padding-left: 6px; }

.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid rgba(244, 230, 220, 0.35);
  border-radius: 999px;
  font-weight: 500;
  transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.ig-link:hover {
  background: rgba(244, 230, 220, 0.1);
  border-color: var(--blush-deep);
  transform: translateY(-2px);
}
.footer-social-note { margin: 14px 0 0; color: #cbb4a6; font-size: 0.9rem; }

.footer-legal {
  margin-top: 44px;
  padding: 18px 20px 22px;
  border-top: 1px solid rgba(244, 230, 220, 0.16);
}
.footer-legal p { margin: 0; font-size: 0.85rem; color: #bda595; text-align: center; }

/* ==========================================================================
   Scroll-in animation (progressively enhanced by main.js)
   ========================================================================== */

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ==========================================================================
   Breakpoints — 560px (large phone) / 860px (tablet) / 1024px (desktop)
   ========================================================================== */

@media (min-width: 560px) {
  .hero-actions .btn { flex: 0 1 auto; }
  /* On a wide phone / tablet the collage sits below the text, so lay it out
     as a single row of four — it reads like an Instagram strip. */
  .hero-collage { grid-template-columns: repeat(4, 1fr); }
  .booking-cta .btn { width: auto; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form-wrap { padding: 34px 32px; }
}

@media (min-width: 860px) {
  :root { --header-h: 78px; }

  .section { padding: 92px 0; }
  .wrap { padding-inline: 32px; }

  /* Nav becomes a horizontal bar; the hamburger is hidden */
  .nav-toggle { display: none; }
  .nav {
    position: static;
    background: none;
    border: 0;
    box-shadow: none;
    display: block;
    grid-template-rows: none;
    overflow: visible;
    visibility: visible;
  }
  .nav-list {
    flex-direction: row;
    align-items: center;
    gap: 6px;
    padding: 0;
  }
  .nav-list a {
    border-bottom: 0;
    padding: 8px 12px;
    font-size: 0.98rem;
    position: relative;
  }
  .nav-list a:hover { padding-left: 12px; }
  /* Underline that grows out from the middle on hover */
  .nav-list li:not(.nav-cta-item) a::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 2px;
    height: 1px;
    background: var(--tan);
    transform: scaleX(0);
    transition: transform 0.3s var(--ease);
  }
  .nav-list li:not(.nav-cta-item) a:hover::after,
  .nav-list li:not(.nav-cta-item) a.is-active::after { transform: scaleX(1); }
  .nav-cta-item { margin: 0 0 0 10px; }
  .nav-list a.btn { width: auto; display: inline-flex; padding: 11px 22px; }

  .brand-badge { width: 54px; height: 54px; }
  .brand-badge-inner { font-size: 0.82rem; }
  .brand-name { font-size: 1.15rem; }
  .brand-sub { font-size: 1.05rem; }

  .hero { padding: 72px 0 96px; }
  .hero-inner {
    grid-template-columns: 1.02fr 1fr;
    align-items: center;
    gap: 56px;
  }
  /* Desktop: collage returns to a 2×2 block beside the text */
  .hero-collage { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .about-inner { grid-template-columns: 0.85fr 1fr; align-items: center; gap: 52px; }

  .card-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .review-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }

  .steps { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .step { padding: 34px 28px 30px; }

  .contact-inner { grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
  .contact-primary .btn-block { width: auto; display: inline-flex; }

  .footer-inner { grid-template-columns: 1.2fr 0.8fr 1fr; gap: 40px; }
  .footer-legal p { text-align: left; }
  .pricing-note { padding: 42px 36px; }
}

@media (min-width: 1024px) {
  .hero-title .script { font-size: clamp(4.4rem, 7vw, 6rem); }
  .gallery-grid { gap: 18px; }
}

/* ==========================================================================
   Respect "reduce motion" / print
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-tile-2, .hero-tile-3 { transform: none; }
}

@media print {
  .site-header, .nav, .hero-collage, .contact-form-wrap { display: none; }
  body { background: #fff; color: #000; }
}
