/* ==========================================================================
   YOURNAME Kitchens & Bathrooms: "The Showroom" demo
   --------------------------------------------------------------------------
   ✏️ To rebrand: change the colours and fonts in section 1.
   Contents: 1 Settings · 2 Base · 3 Buttons & labels · 4 Header · 5 Hero ·
   6 Sections · 7 Rooms · 8 Prices · 9 Projects · 10 Process · 11 Reviews ·
   12 Contact · 13 Footer & call bar · 14 Motion
   ========================================================================== */

/* 1. Settings
   ========================================================================== */
:root {
  --green-950: #0d1512;
  --green-900: #13201b;
  --green-800: #1a2a24;
  --green-700: #25372f;
  --cream: #efe8dc;
  --cream-muted: #b9b2a6;
  --brass: #c9a46a;
  --brass-light: #dcbb85;
  --ink: #16201c;
  --line: rgba(239, 232, 220, 0.14);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --container: 1200px;
  --gutter: 20px;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@media (min-width: 768px) {
  :root { --gutter: 36px; --header-h: 84px; }
}

/* 2. Base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--cream);
  background: var(--green-950);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol, dl, dd { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p, figure, blockquote { margin: 0; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

:focus-visible { outline: 2px solid var(--brass-light); outline-offset: 4px; }

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 300;
  padding: 10px 16px;
  font-weight: 700;
  color: var(--ink);
  background: var(--brass);
}

.skip-link:focus { top: 12px; }

/* 3. Buttons & labels
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 26px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: background-color 0.25s, border-color 0.25s, color 0.25s, transform 0.25s var(--ease);
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s var(--ease);
}

.btn:hover svg { transform: translateX(4px); }
.btn-lg { min-height: 56px; padding: 14px 32px; font-size: 1rem; }

.btn-brass { color: var(--ink); background: var(--brass); }
.btn-brass:hover { background: var(--brass-light); }

.btn-line { color: var(--cream); border-color: rgba(239, 232, 220, 0.35); }
.btn-line:hover { border-color: var(--brass); color: var(--brass-light); }

.label {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
}

/* 4. Header
   ========================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: background-color 0.4s, border-color 0.4s;
}

.site-header.is-scrolled,
.site-header.menu-open {
  background: rgba(13, 21, 18, 0.94);
  border-bottom-color: var(--line);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  height: 100%;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  text-align: center;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: 0.16em;
}

.logo-sub {
  margin-top: 6px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass);
}

.nav ul { display: flex; gap: 26px; }

.nav ul a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cream-muted);
  transition: color 0.2s;
}

.nav ul a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transition: transform 0.35s var(--ease);
}

.nav ul a:hover { color: var(--cream); }
.nav ul a:hover::after { transform: scaleX(1); }

.header-end { display: flex; align-items: center; justify-content: flex-end; gap: 20px; }
.header-phone { font-size: 0.9rem; font-weight: 600; color: var(--cream-muted); }
.header-phone:hover { color: var(--brass-light); }
.nav-cta { min-height: 44px; padding: 10px 20px; font-size: 0.88rem; }
.nav-cta-mobile, .menu-btn { display: none; }

@media (max-width: 1099.98px) {
  .header-inner { grid-template-columns: auto 1fr auto; }
  .logo { order: 1; align-items: flex-start; text-align: left; }
  .header-end { order: 3; }
  .header-phone, .header-end .nav-cta { display: none; }

  .menu-btn {
    display: grid;
    align-content: center;
    gap: 7px;
    width: 44px;
    height: 44px;
    margin-right: -8px;
    padding: 10px;
  }

  .menu-btn span { display: block; height: 1.5px; background: var(--cream); transition: transform 0.3s var(--ease); }
  .menu-open .menu-btn span:first-child { transform: translateY(4.25px) rotate(45deg); }
  .menu-open .menu-btn span:last-child { transform: translateY(-4.25px) rotate(-45deg); }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    order: 2;
    padding: 12px var(--gutter) 32px;
    background: var(--green-950);
    border-bottom: 1px solid var(--line);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.3s, transform 0.35s var(--ease), visibility 0s linear 0.35s;
  }

  .menu-open .nav { opacity: 1; visibility: visible; transform: none; transition: opacity 0.3s, transform 0.35s var(--ease); }
  .nav ul { flex-direction: column; gap: 0; }

  .nav ul a {
    display: block;
    padding: 14px 0;
    font-family: var(--font-display);
    font-size: 1.7rem;
    color: var(--cream);
    border-bottom: 1px solid var(--line);
  }

  .nav ul a::after { display: none; }
  .nav-cta-mobile { display: flex; width: 100%; margin-top: 24px; min-height: 52px; }
}

/* 5. Hero
   ========================================================================== */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + 36px);
  padding-bottom: clamp(72px, 9vw, 120px);
  overflow: hidden;
  background: radial-gradient(ellipse 60% 70% at 85% 30%, rgba(201, 164, 106, 0.1), transparent 70%), var(--green-950);
}

.hero-grid {
  display: grid;
  gap: 56px;
  align-items: center;
}

.hero-title {
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: clamp(3rem, 1.7rem + 5.4vw, 6rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-title em,
.section-title em {
  font-style: italic;
  color: var(--brass-light);
}

.hero-lead {
  max-width: 32rem;
  margin-top: 26px;
  font-size: clamp(1.05rem, 1rem + 0.3vw, 1.18rem);
  color: var(--cream-muted);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 34px;
  font-size: 0.9rem;
  color: var(--cream-muted);
}

.hero-facts li { display: inline-flex; align-items: center; gap: 22px; }

.hero-facts li + li::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--brass);
  transform: rotate(45deg);
}

.hero-arch {
  position: relative;
  width: min(100%, 520px);
  margin-inline: auto;
}

.hero-arch img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 999px 999px 0 0;
}

/* Thin brass outline echoing the arch */
.hero-arch::before {
  content: "";
  position: absolute;
  inset: -16px -16px 16px 16px;
  border: 1px solid rgba(201, 164, 106, 0.55);
  border-radius: 999px 999px 0 0;
  pointer-events: none;
}

.hero-badge {
  position: absolute;
  left: -18px;
  bottom: 40px;
  display: grid;
  place-content: center;
  width: 132px;
  height: 132px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.25;
  text-align: center;
  color: var(--ink);
  background: var(--brass);
  border-radius: 50%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

@media (max-width: 519.98px) {
  .hero-actions .btn { flex: 1 1 100%; }
  .hero-badge { left: 4px; width: 108px; height: 108px; font-size: 0.9rem; }
}

@media (min-width: 960px) {
  .hero { padding-top: calc(var(--header-h) + 64px); }
  .hero-grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: 72px; }
  .hero-arch { margin-right: 16px; }
}

/* 6. Sections
   ========================================================================== */
.section { position: relative; padding-block: clamp(84px, 10vw, 136px); }
.section-deep { background: var(--green-900); }

.section-head { max-width: 760px; margin-bottom: 48px; }

.section-head-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  max-width: none;
}

.section-title {
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 1.5rem + 3.4vw, 4.2rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.section-lead {
  max-width: 36rem;
  margin-top: 20px;
  font-size: 1.05rem;
  color: var(--cream-muted);
}

.ticks { display: grid; gap: 10px; }

.ticks li {
  position: relative;
  padding-left: 28px;
  color: var(--cream-muted);
}

.ticks li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 2px;
  width: 12px;
  height: 1px;
  background: var(--brass);
}

/* 7. Rooms (signature selector)
   ========================================================================== */
.room-tabs {
  display: flex;
  gap: 8px 36px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

.room-tabs button {
  position: relative;
  padding: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1rem + 1vw, 1.9rem);
  color: var(--cream-muted);
  transition: color 0.25s;
}

.room-tabs button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.room-tabs button:hover { color: var(--cream); }
.room-tabs button[aria-selected="true"] { color: var(--cream); font-style: italic; }
.room-tabs button[aria-selected="true"]::after { transform: scaleX(1); }

.room-panel {
  display: grid;
  gap: 32px;
  align-items: center;
  animation: roomIn 0.7s var(--ease) both;
}

/* Only the chosen room shows */
.room-panel[hidden],
.quote[hidden] { display: none; }

.room-panel img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 4px;
}

.room-info h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
}

.room-info > p:first-of-type { margin: 12px 0 20px; color: var(--cream-muted); }

.room-price {
  margin: 26px 0 22px;
  padding-top: 20px;
  color: var(--cream-muted);
  border-top: 1px solid var(--line);
}

.room-price strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--brass-light);
}

@media (min-width: 900px) {
  .room-panel { grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr); gap: 56px; }
}

/* 8. Prices (menu)
   ========================================================================== */
.prices { display: grid; gap: 48px; }
.prices-head .btn { margin-top: 30px; }

.menu { display: grid; gap: 44px; }

.menu-group h3 {
  padding-bottom: 12px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 400;
  color: var(--brass-light);
  border-bottom: 1px solid var(--line);
}

.menu-group dl { display: grid; gap: 18px; margin-top: 20px; }

.menu-group dl div {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.menu-group dt { order: 1; font-weight: 600; }

.menu-group dt small {
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--cream-muted);
}

/* Dotted leader between the service and its price */
.menu-group dl div::after {
  content: "";
  order: 2;
  flex: 1;
  min-width: 20px;
  border-bottom: 1px dotted rgba(239, 232, 220, 0.35);
  transform: translateY(-5px);
}

.menu-group dd {
  order: 3;
  font-family: var(--font-display);
  font-size: 1.2rem;
  white-space: nowrap;
  color: var(--cream);
}

@media (min-width: 960px) {
  .prices { grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: 80px; align-items: start; }
  .prices-head { position: sticky; top: calc(var(--header-h) + 40px); }
}

/* 9. Projects reel
   ========================================================================== */
.reel-controls { display: flex; gap: 10px; }

.reel-btn {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(239, 232, 220, 0.3);
  border-radius: 50%;
  transition: border-color 0.25s, background-color 0.25s;
}

.reel-btn:hover { border-color: var(--brass); background: rgba(201, 164, 106, 0.1); }
.reel-btn svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.reel {
  display: flex;
  gap: 20px;
  padding-inline: max(var(--gutter), calc((100vw - var(--container)) / 2));
  padding-bottom: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: max(var(--gutter), calc((100vw - var(--container)) / 2));
  scrollbar-width: thin;
  scrollbar-color: var(--brass) transparent;
}

.reel-item {
  flex: 0 0 clamp(260px, 30vw, 380px);
  scroll-snap-align: start;
}

.reel-item img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.8s var(--ease), filter 0.8s;
}

.reel-item:hover img { transform: scale(0.98); filter: brightness(1.05); }

.reel-cap {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.reel-cap strong { font-family: var(--font-display); font-size: 1.2rem; font-weight: 400; }
.reel-cap span { font-size: 0.85rem; color: var(--brass); white-space: nowrap; }

/* 10. Process (why choose us)
   ========================================================================== */
.process { display: grid; gap: 48px; }

.process-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 200px 4px 4px 4px;
}

.process-steps { display: grid; gap: 28px; margin-top: 40px; }

.process-steps li { display: flex; gap: 22px; }

.step-num {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--brass-light);
  border: 1px solid rgba(201, 164, 106, 0.5);
  border-radius: 50%;
}

.process-steps h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; }
.process-steps p { margin-top: 4px; color: var(--cream-muted); }

.figures {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.figures div { display: flex; flex-direction: column-reverse; }
.figures dt { font-size: 0.82rem; color: var(--cream-muted); }
.figures dd { font-family: var(--font-display); font-size: clamp(2rem, 1.4rem + 2vw, 3rem); line-height: 1.1; color: var(--brass-light); }

@media (min-width: 960px) {
  .process { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: 80px; align-items: center; }
}

/* 11. Reviews
   ========================================================================== */
.reviews { max-width: 960px; text-align: center; }
.quotes { display: grid; margin-top: 30px; }

.quote { grid-area: 1 / 1; }
.quote.is-active { animation: roomIn 0.8s var(--ease) both; }

.quote blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 1rem + 2.2vw, 2.7rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.3;
}

.quote blockquote p::before { content: "\201C"; color: var(--brass); }
.quote blockquote p::after { content: "\201D"; color: var(--brass); }

.quote figcaption {
  margin-top: 26px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
}

.quote-dots { display: flex; justify-content: center; gap: 4px; margin-top: 36px; }

.quote-dots button {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
}

.quote-dots button::before {
  content: "";
  width: 28px;
  height: 2px;
  background: rgba(239, 232, 220, 0.25);
  transition: background-color 0.3s;
}

.quote-dots button[aria-pressed="true"]::before { background: var(--brass); }

/* 12. Contact
   ========================================================================== */
.contact { display: grid; gap: 48px; align-items: start; }

.contact-list { display: grid; margin-top: 32px; border-top: 1px solid var(--line); }

.contact-list div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.contact-list dt { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brass); padding-top: 3px; }
.contact-list dd { font-family: var(--font-display); font-size: 1.2rem; overflow-wrap: anywhere; }
.contact-list a:hover { color: var(--brass-light); }

.form-card {
  padding: 32px 22px;
  color: var(--ink);
  background: var(--cream);
  border-radius: 4px;
}

.form-card h3 { font-family: var(--font-display); font-size: 2rem; font-weight: 400; }
.form-grid { display: grid; gap: 18px; margin-top: 18px; }

.field label,
.field legend {
  display: block;
  margin-bottom: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5b5a50;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 0;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(22, 32, 28, 0.3);
  border-radius: 0;
}

.field textarea { min-height: 96px; resize: vertical; }

.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-bottom: 2px solid var(--green-700); }

.field.has-error input { border-bottom-color: #b3261e; }
.field-error { display: block; margin-top: 4px; font-size: 0.85rem; font-weight: 600; color: #b3261e; }

.chips { margin: 22px 0 0; padding: 0; border: 0; }
.chips label { position: relative; display: inline-block; margin: 0 6px 8px 0; text-transform: none; letter-spacing: 0; }

.chips input {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  min-height: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
}

.chips span {
  display: inline-block;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  border: 1px solid rgba(22, 32, 28, 0.3);
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

.chips input:checked + span { color: var(--cream); background: var(--green-800); border-color: var(--green-800); }
.chips input:focus-visible + span { outline: 2px solid var(--green-700); outline-offset: 2px; }

.form-submit { width: 100%; margin-top: 26px; color: var(--cream); background: var(--green-800); }
.form-submit:hover { background: var(--green-700); }
.form-note { margin-top: 12px; font-size: 0.85rem; text-align: center; color: #5b5a50; }

.form-success { padding: 36px 4px; text-align: center; }
.form-success:focus { outline: none; }
.form-success .label { color: #8a6b3a; }
.form-success h3 { margin-top: 10px; }
.form-success p:last-child { margin-top: 10px; color: #5b5a50; }

@media (min-width: 600px) {
  .form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 28px; }
  .field-full { grid-column: 1 / -1; }
  .form-card { padding: 44px 40px; }
}

@media (min-width: 960px) {
  .contact { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: 80px; }
}

/* 13. Footer & call bar
   ========================================================================== */
.site-footer {
  padding: 64px 0 96px;
  text-align: center;
  background: var(--green-950);
  border-top: 1px solid var(--line);
}

.footer-inner { display: grid; justify-items: center; gap: 24px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 28px; }
.footer-links a { color: var(--cream-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--brass-light); }
.footer-areas { font-family: var(--font-display); font-style: italic; color: var(--brass-light); }
.footer-legal { max-width: 46rem; font-size: 0.82rem; color: var(--cream-muted); }

.call-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  padding-bottom: env(safe-area-inset-bottom);
  background: var(--green-950);
  border-top: 1px solid var(--line);
}

.call-bar a { display: grid; place-items: center; min-height: 56px; font-weight: 600; border-right: 1px solid var(--line); }
.call-bar .call-bar-main { color: var(--ink); background: var(--brass); border: 0; }

@media (min-width: 768px) {
  .site-footer { padding-bottom: 40px; }
  .call-bar { display: none; }
}

/* 14. Motion
   ========================================================================== */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  transition-delay: var(--delay, 0s);
}

.js [data-reveal].is-visible { opacity: 1; transform: none; }

.hero-copy > * { animation: rise 1s var(--ease) both; }
.hero-copy > :nth-child(2) { animation-delay: 0.1s; }
.hero-copy > :nth-child(3) { animation-delay: 0.2s; }
.hero-copy > :nth-child(4) { animation-delay: 0.3s; }
.hero-copy > :nth-child(5) { animation-delay: 0.4s; }
.hero-arch { animation: archIn 1.4s var(--ease) 0.2s both; }

@keyframes rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes archIn { from { opacity: 0; transform: translateY(40px) scale(0.97); } to { opacity: 1; transform: none; } }
@keyframes roomIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
