/* =========================================================
   Samantha DeAngelo Beauty — The Luxury Bride
   Palette: ink black · warm white · champagne gold (from the
   original logo mark). Type: Raleway (display, light + tracked)
   with Jost as the Avenir-style UI companion.
   ========================================================= */

:root {
  --ink: #14110E;
  --ink-soft: #4A443C;
  --taupe: #8C8175;
  --paper: #FFFFFF;
  --bone: #F5F1E9;
  --cream: #FBF9F5;
  --champagne: #C9A96A;
  --champagne-deep: #A9824C;
  --line: rgba(20, 17, 14, 0.14);
  --line-soft: rgba(20, 17, 14, 0.08);

  --font-display: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
  --font-ui: 'Jost', 'Raleway', 'Helvetica Neue', Arial, sans-serif;

  --max: 1220px;
  --gutter: clamp(20px, 5vw, 64px);
  --shadow: 0 30px 70px -30px rgba(20, 17, 14, 0.28);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }

body {
  font-family: var(--font-ui);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.72;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

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

h1, h2, h3, h4, .brand-name {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.015em;
}

h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.045em;
}

h3 {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
}

p { max-width: 62ch; }
strong { font-weight: 600; }

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

.section {
  padding-block: clamp(48px, 7.5vw, 96px);
  position: relative;
}

.eyebrow {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  color: var(--champagne-deep);
  margin-bottom: 16px;
}

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(30px, 4.5vw, 54px);
  text-align: center;
}
.section-head .eyebrow::after {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  background: var(--champagne);
  margin: 14px auto 0;
}
.section-lead {
  margin: 16px auto 0;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

/* ===================== Buttons ===================== */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 36px;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bg);
  cursor: pointer;
  transition: background 0.4s var(--ease), color 0.4s var(--ease),
              border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary:hover { --btn-bg: var(--champagne-deep); border-color: var(--champagne-deep); }
.btn-ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { --btn-fg: var(--champagne-deep); border-color: var(--champagne); }

/* ===================== Utility bar ===================== */
.utility-bar {
  background: var(--ink);
  color: rgba(251, 249, 245, 0.8);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  gap: 16px;
}
.utility-contact { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.utility-contact a { transition: color 0.3s var(--ease); }
.utility-contact a:hover { color: var(--champagne); }
.utility-bar .dot { color: rgba(251, 249, 245, 0.3); }
.utility-login { transition: color 0.3s var(--ease); white-space: nowrap; }
.utility-login:hover { color: var(--champagne); }

/* ===================== Header ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow 0.4s var(--ease), background 0.4s var(--ease);
}
.site-header.scrolled { box-shadow: 0 12px 40px -24px rgba(20, 17, 14, 0.3); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  transition: min-height 0.4s var(--ease);
}
.site-header.scrolled .nav { min-height: 60px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark { width: 44px; height: 44px; transition: width 0.4s var(--ease), height 0.4s var(--ease); }
.site-header.scrolled .brand-mark { width: 36px; height: 36px; }
.brand-name {
  font-size: 0.96rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  white-space: nowrap;
}
.brand-name em { font-style: italic; color: var(--champagne-deep); letter-spacing: 0.04em; }

.nav-links { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px); }
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink);
  position: relative;
  padding-block: 6px;
}
.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--champagne);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  border: 1px solid var(--ink);
  padding: 12px 20px !important;
  letter-spacing: 0.16em;
  white-space: nowrap;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.nav-cta:hover { background: var(--ink); color: var(--cream); }

.nav-social { display: flex; gap: 14px; color: var(--ink-soft); }
.nav-social a { transition: color 0.3s var(--ease), transform 0.3s var(--ease); }
.nav-social a:hover { color: var(--champagne-deep); transform: translateY(-2px); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  width: 24px; height: 1.5px;
  background: var(--ink);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===================== Hero ===================== */
.hero {
  position: relative;
  min-height: min(66vh, 540px);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -1;
}
.hero-inner { text-align: center; padding-block: clamp(40px, 6.5vh, 72px); }
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.44em;
  color: var(--champagne-deep);
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5.6vw, 4.4rem);
  text-transform: uppercase;
  letter-spacing: 0.055em;
  font-weight: 400;
}
.hero h1 span { display: block; font-style: italic; letter-spacing: 0.015em; font-weight: 500; }
.hero-tagline {
  margin: 20px auto 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.05rem, 2.4vw, 1.45rem);
  color: var(--ink-soft);
  letter-spacing: 0.03em;
}
.hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-marks {
  list-style: none;
  margin: 26px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 30px;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
}
.hero-marks li { position: relative; }
.hero-marks li + li::before {
  content: "";
  position: absolute;
  left: -18px; top: 50%;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--champagne);
  transform: translateY(-50%);
}
.hero-scroll {
  position: absolute;
  left: 50%; bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--ink-soft);
}
.hero-scroll svg { animation: bob 2.4s var(--ease) infinite; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ===================== Services ===================== */
.services { background: var(--paper); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.4vw, 30px);
}
.service-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--bone);
  border: 1px solid var(--line-soft);
}
.service-card figure { margin: 0; overflow: hidden; }
.service-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 1.1s var(--ease), filter 0.6s var(--ease);
  filter: grayscale(0.12);
}
.service-card.has-photo img { filter: grayscale(0.04) contrast(1.02); }
.service-card:hover img { transform: scale(1.06); filter: grayscale(0); }
.service-card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px 20px;
  background: linear-gradient(to top, rgba(20, 17, 14, 0.82), rgba(20, 17, 14, 0) 100%);
  color: var(--cream);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  min-height: 96px;
}
.service-card figcaption h3 {
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--cream);
}
.service-card .service-index {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--champagne);
  opacity: 0.95;
}
.service-card .service-hint {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 17, 14, 0.55);
  color: var(--cream);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.service-card:hover .service-hint { opacity: 1; }

.services-cta {
  margin-top: clamp(32px, 4.5vw, 52px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.services-cta p { color: var(--ink-soft); }

/* ===================== About ===================== */
.about { background: var(--cream); }
.about-inner {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.about-media { position: relative; }
.about-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--line-soft);
}
.about-media::after {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid var(--champagne);
  z-index: -1;
}
.about-badge {
  position: absolute;
  right: -22px; bottom: 40px;
  background: var(--ink);
  color: var(--cream);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow);
}
.about-badge-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--champagne);
  line-height: 1;
}
.about-badge-label {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  line-height: 1.5;
}
.about-text h2 { margin-bottom: 18px; }
.about-text p + p { margin-top: 13px; }
.about-text p { color: var(--ink-soft); }
.about-sign {
  margin-top: 18px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--ink);
  letter-spacing: 0.04em;
}

/* ===================== Experience ===================== */
.experience { background: var(--ink); color: var(--cream); overflow: hidden; }
.experience .eyebrow { color: var(--champagne); }
.experience h2 { color: var(--cream); }
.experience .section-head .eyebrow::after { background: var(--champagne); }
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 40px);
  counter-reset: step;
}
.steps li {
  padding-top: 20px;
  border-top: 1px solid rgba(251, 249, 245, 0.18);
}
.step-num {
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--champagne);
}
.steps h3 { margin: 12px 0 9px; color: var(--cream); font-size: 0.98rem; }
.steps p { font-size: 0.96rem; color: rgba(251, 249, 245, 0.74); }

.marquee {
  margin-top: clamp(38px, 5.5vw, 64px);
  overflow: hidden;
  border-block: 1px solid rgba(251, 249, 245, 0.16);
  padding-block: 16px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: scroll 38s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: rgba(251, 249, 245, 0.55);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 48px;
}
.marquee-track span::after { content: "✦"; color: var(--champagne); font-style: normal; font-size: 0.7rem; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ===================== Portfolio ===================== */
.portfolio { background: var(--paper); }
.gallery {
  columns: 3;
  column-gap: clamp(14px, 2vw, 24px);
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: clamp(14px, 2vw, 24px);
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border: 1px solid var(--line-soft);
}
.gallery-item img {
  width: 100%;
  transition: transform 1s var(--ease), filter 0.6s var(--ease);
  filter: grayscale(0.1);
}
.gallery-item:hover img { transform: scale(1.05); filter: grayscale(0); }
.gallery-item::after {
  content: "＋";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--cream);
  background: rgba(20, 17, 14, 0.4);
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item.is-hidden { display: none; }
.gallery-actions { text-align: center; margin-top: clamp(26px, 4vw, 44px); }

/* ===================== Lightbox ===================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(15, 13, 11, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5vw;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-stage { max-width: 760px; text-align: center; }
.lightbox-stage img {
  max-height: 78vh;
  width: auto;
  margin: 0 auto;
  border: 1px solid rgba(251, 249, 245, 0.14);
}
.lightbox-stage figcaption {
  margin-top: 18px;
  color: rgba(251, 249, 245, 0.7);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}
.lightbox-close, .lightbox-nav {
  position: absolute;
  background: none;
  border: none;
  color: rgba(251, 249, 245, 0.75);
  cursor: pointer;
  transition: color 0.3s var(--ease);
}
.lightbox-close { top: 26px; right: 32px; font-size: 2rem; }
.lightbox-nav { top: 50%; transform: translateY(-50%); font-size: 3rem; padding: 0 18px; }
.lightbox-nav.prev { left: max(2vw, 12px); }
.lightbox-nav.next { right: max(2vw, 12px); }
.lightbox-close:hover, .lightbox-nav:hover { color: var(--champagne); }

/* ===================== Testimonials ===================== */
.testimonials { background: var(--bone); }
.quote-rotator {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 40px);
}
.quote-rotator blockquote {
  flex: 1;
  text-align: center;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.quote-rotator blockquote.fade { opacity: 0; transform: translateY(8px); }
.quote-rotator blockquote p {
  max-width: none;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.2rem, 2.7vw, 1.7rem);
  line-height: 1.6;
  color: var(--ink);
}
.quote-rotator blockquote footer {
  margin-top: 16px;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--champagne-deep);
}
.quote-rotator blockquote .stars { color: var(--champagne); letter-spacing: 0.3em; margin-bottom: 13px; font-size: 0.7rem; }
.rot-nav {
  background: none;
  border: 1px solid var(--line);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  color: var(--ink);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.rot-nav:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.rot-dots { display: flex; justify-content: center; gap: 10px; margin-top: 24px; }
.rot-dots span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.rot-dots span.on { background: var(--champagne-deep); transform: scale(1.5); }

/* ===================== Quote / Contact ===================== */
.quote { background: var(--cream); }
.quote-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 84px);
  align-items: start;
}
.quote-text h2 { margin-bottom: 16px; }
.quote-text > p { color: var(--ink-soft); }
.quote-contact { list-style: none; margin: 22px 0; display: grid; gap: 13px; }
.quote-contact li { display: flex; align-items: center; gap: 14px; font-size: 0.9rem; color: var(--ink-soft); }
.quote-contact svg { color: var(--champagne-deep); flex-shrink: 0; }
.quote-contact a:hover { color: var(--champagne-deep); }
.quote-social { display: flex; gap: 14px; }
.quote-social a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.quote-social a:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.quote-form { background: var(--paper); border: 1px solid var(--line-soft); padding: clamp(24px, 4vw, 44px); box-shadow: var(--shadow); }
.field { position: relative; margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field input, .field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 14px 2px 10px;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink);
  transition: border-color 0.3s var(--ease);
}
.field textarea { resize: vertical; min-height: 90px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--champagne-deep); }
.field label {
  position: absolute;
  left: 2px; top: 16px;
  font-size: 0.95rem;
  color: var(--taupe);
  pointer-events: none;
  transition: transform 0.3s var(--ease), font-size 0.3s var(--ease), color 0.3s var(--ease);
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label {
  transform: translateY(-22px);
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--champagne-deep);
}
.quote-form .btn { width: 100%; margin-top: 8px; }
.form-note { margin-top: 16px; font-size: 0.78rem; color: var(--taupe); text-align: center; max-width: none; }

/* ===================== Footer ===================== */
.site-footer { background: var(--ink); color: rgba(251, 249, 245, 0.7); padding-top: clamp(40px, 6vw, 64px); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(24px, 4vw, 52px);
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(251, 249, 245, 0.14);
}
.footer-brand img { width: 52px; margin-bottom: 16px; }
.footer-brand .brand-name { color: var(--cream); font-size: 0.95rem; display: block; margin-bottom: 14px; }
.footer-brand .brand-name em { color: var(--champagne); }
.footer-brand p { font-size: 0.85rem; }
.footer-nav { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a {
  font-size: 0.76rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  transition: color 0.3s var(--ease);
}
.footer-nav a:hover { color: var(--champagne); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; font-size: 0.82rem; }
.footer-contact a:hover { color: var(--champagne); }
.footer-social { display: flex; gap: 14px; margin-top: 10px; }
.footer-social a { color: rgba(251, 249, 245, 0.6); transition: color 0.3s var(--ease); }
.footer-social a:hover { color: var(--champagne); }
.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-block: 18px;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(251, 249, 245, 0.45);
}

/* ===================== Reveal animation ===================== */
/* Gated on .js so content is never hidden when scripting is unavailable. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.js [data-reveal].in { opacity: 1; transform: none; }

/* ===================== Responsive ===================== */
@media (max-width: 1120px) {
  .brand-name { display: none; }
}

@media (max-width: 960px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { columns: 2; }
  .about-inner { grid-template-columns: 1fr; }
  .about-media { max-width: 440px; }
  .about-badge { right: 20px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .quote-inner { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-social { display: none; }
  .menu-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(78vw, 320px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    padding: 40px;
    background: var(--cream);
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    box-shadow: var(--shadow);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 0.9rem; }
  .utility-contact .dot:last-of-type,
  .utility-contact a:last-child { display: none; }
  .utility-login { display: none; }
}

@media (max-width: 560px) {
  .service-grid { grid-template-columns: 1fr; }
  .gallery { columns: 1; }
  .steps { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .hero-marks { gap: 10px 24px; }
  .hero-marks li + li::before { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-legal { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
