:root {
  --bg: #f4f1ec;
  --paper: #fbfaf7;
  --ink: #1f1d1a;
  --muted: #6e685f;
  --line: #d8d1c7;
  --accent: #a487c6;
  --accent-deep: #6d4f86;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 20px 45px rgba(36, 32, 26, 0.08);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 10% 20%, #fffdfa 0%, var(--bg) 45%, #ece8e1 100%);
  line-height: 1.55;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.ambient {
  position: fixed;
  z-index: -1;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.45;
}

.ambient-one {
  width: 350px;
  height: 350px;
  top: -120px;
  right: -80px;
  background: #d9cab7;
}

.ambient-two {
  width: 280px;
  height: 280px;
  bottom: 8%;
  left: -110px;
  background: #c9d2d0;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.section-space {
  padding: clamp(3.2rem, 6vw, 5.6rem) 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(251, 250, 247, 0.78);
  border-bottom: 1px solid rgba(216, 209, 199, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}

.brand-mark {
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.brand-mark-icon {
  width: auto;
  height: 2.55rem;
  max-width: none;
  display: block;
}

.brand-name {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-title {
  font-size: 1.68rem;
  font-weight: 700;
}

.brand-subtitle {
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 0.08rem;
  text-align: center;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  padding: 0.2rem;
  border-radius: 0;
  font: inherit;
  color: var(--ink);
  line-height: 1;
}

.menu-toggle .material-symbols-outlined {
  font-size: 1.55rem;
  line-height: 1;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.hero {
  padding-top: clamp(4.2rem, 8vw, 6.8rem);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero.hero-static-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: center / cover no-repeat url("images/hero-poster.jpg");
  pointer-events: none;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

.hero.hero-static-media .hero-bg-video {
  opacity: 0;
  visibility: hidden;
}

.hero-bg-video::-webkit-media-controls,
.hero-bg-video::-webkit-media-controls-enclosure,
.hero-bg-video::-webkit-media-controls-panel,
.hero-bg-video::-webkit-media-controls-play-button,
.hero-bg-video::-webkit-media-controls-start-playback-button,
.hero-bg-video::-webkit-media-controls-overlay-play-button {
  display: none !important;
  -webkit-appearance: none;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(120deg, rgba(248, 244, 238, 0.78) 0%, rgba(248, 244, 238, 0.42) 45%, rgba(248, 244, 238, 0.62) 100%);
  pointer-events: none;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.2rem, 4vw, 3rem);
  align-items: stretch;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.hero-copy h1,
.hero-copy .lead,
.hero-copy .eyebrow {
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.45), 0 1px 2px rgba(255, 255, 255, 0.32);
}

.eyebrow {
  color: var(--accent-deep);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.05;
  margin: 0;
}

h1 {
  font-size: clamp(2.2rem, 6vw, 4.3rem);
  letter-spacing: -0.012em;
  max-width: 15ch;
}

h2 {
  font-size: clamp(1.85rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.45rem;
}

.gold-word {
  color: var(--accent);
  background: linear-gradient(135deg, #e7dbf7 0%, var(--accent) 46%, var(--accent-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead {
  margin: 1.1rem 0 0;
  max-width: 54ch;
  color: #4e4941;
}

.hero-actions {
  margin-top: 1.6rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-note {
  margin: 0.34rem 0 0;
  font-size: 0.9rem;
  color: #5b544a;
}

.hero-note a {
  color: var(--accent-deep);
  text-decoration: none;
  border-bottom: 1px solid rgba(143, 117, 88, 0.35);
}

.hero-down-trigger {
  display: none;
}

.hero-contact {
  margin-top: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.38rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 18px rgba(39, 33, 26, 0.2);
  width: fit-content;
}

.contact-divider {
  color: #8a775f;
  font-size: 0.78rem;
  line-height: 1;
}

.hero-contact.is-wrapped .contact-divider {
  display: none;
}

.hero-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.26rem;
  text-decoration: none;
  font-size: 0.82rem;
  color: #4f473d;
  line-height: 1.05;
  white-space: nowrap;
}

.hero-contact .icon {
  font-size: 0.98rem;
  line-height: 1;
  color: #4f473d;
}


.btn {
  border: none;
  border-radius: 999px;
  padding: 0.78rem 1.2rem;
  text-decoration: none;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 150ms ease, background-color 150ms ease, color 150ms ease, border-color 150ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-solid {
  background: var(--accent-deep);
  color: #fffdf8;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.btn-solid:hover,
.btn-solid:focus-visible {
  background: #5b3f73;
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: rgba(109, 79, 134, 0.55);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.38);
  border-color: rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(12px) saturate(1.15);
  -webkit-backdrop-filter: blur(12px) saturate(1.15);
  box-shadow: 0 12px 24px rgba(34, 29, 22, 0.16);
}

.btn-glass:hover,
.btn-glass:focus-visible {
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.78);
}

.btn-icon {
  font-size: 1rem;
  line-height: 1;
}

.long-arrow {
  font-size: 1.22rem;
  transform: translateY(1px);
}

.enquiry-btn {
  min-width: 220px;
  justify-content: space-between;
  gap: 1.1rem;
  padding-left: 1.15rem;
  padding-right: 0.95rem;
}

.enquiry-arrow {
  font-size: 1.55rem;
  transform: translateY(1px) scaleX(1.15);
  transform-origin: left center;
  font-variation-settings: "opsz" 48, "wght" 300, "FILL" 0, "GRAD" 0;
}

.material-symbols-outlined.icon {
  font-size: 1.08rem;
  line-height: 1;
}


.section-head {
  max-width: 70ch;
}

.section-head p {
  margin: 0.8rem 0 0;
  color: #565149;
}

.material-grid {
  margin-top: 1.55rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.material-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.material-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.material-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.material-meta {
  padding: 0.9rem 0.95rem 1rem;
  display: grid;
  gap: 0.4rem;
}

.meta-swap {
  position: relative;
  min-height: 2.8em;
  overflow: hidden;
}

.material-meta p {
  margin: 0;
  font-size: 0.9rem;
  color: #575046;
  transition: opacity 280ms ease, transform 280ms ease, filter 280ms ease;
}

.collection-cta {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--accent-deep);
  opacity: 0;
  transform: translateY(6px);
  filter: blur(3px);
  transition: transform 320ms ease, opacity 320ms ease, filter 320ms ease;
}

.cta-text {
  text-decoration: underline;
  text-underline-offset: 0.18rem;
  text-decoration-thickness: 1px;
}

.cta-arrow {
  font-size: 0.98rem;
  line-height: 1;
}

.material-card:hover .material-meta p,
.material-card:focus-within .material-meta p {
  transform: translateY(-6px);
  opacity: 0;
  filter: blur(3px);
}

.material-card:hover .collection-cta,
.material-card:focus-within .collection-cta {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.process {
  border-top: 1px solid rgba(216, 209, 199, 0.7);
  border-bottom: 1px solid rgba(216, 209, 199, 0.7);
}

.process-grid {
  margin-top: 1.45rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.step {
  background: rgba(255, 254, 251, 0.72);
  border: 1px solid rgba(216, 209, 199, 0.85);
  border-radius: var(--radius-sm);
  padding: 0.95rem;
}

.step span {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 0.45rem;
}

.step p {
  margin: 0.45rem 0 0;
  color: #5a544b;
  font-size: 0.9rem;
}

.visualizer {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.44), rgba(239, 233, 224, 0.7));
}

.visualizer-grid {
  display: grid;
  grid-template-columns: 1.32fr 0.68fr;
  gap: 1.1rem;
}

.visualizer .section-head {
  max-width: none;
}

.visualizer .section-head > p:not(.eyebrow) {
  max-width: 62ch;
}

.viz-carousel {
  margin-top: 1rem;
  position: relative;
  overflow: visible;
}

.viz-track {
  display: flex;
  gap: 0.5rem;
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 0.9rem;
  position: relative;
  z-index: 1;
}

.viz-track::-webkit-scrollbar {
  display: none;
}

.viz-shot {
  margin: 0;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.75 / 1;
  border: 1px solid #d8d0c4;
  border-radius: 11px;
  background: #ece5db;
  flex: 0 0 calc((100% - 1rem) / 3);
  scroll-snap-align: start;
  z-index: 1;
}

.viz-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.viz-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  border: 1px solid rgba(33, 30, 26, 0.45);
  background: rgba(251, 250, 247, 0.82);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(32, 29, 24, 0.16);
  cursor: pointer;
  backdrop-filter: blur(6px);
  z-index: 3;
}

.viz-arrow .material-symbols-outlined {
  font-size: 1.3rem;
  line-height: 1;
}

.viz-arrow-prev {
  left: -0.6rem;
}

.viz-arrow-next {
  right: 0;
}

.visualizer-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  display: grid;
  gap: 0.55rem;
}

.visualizer-steps {
  margin: 0.2rem 0 0.8rem;
  padding-left: 1.2rem;
  color: #574f45;
}

.visualizer-steps li + li {
  margin-top: 0.3rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  margin: 0 0 0.5rem;
  padding: 0.3rem 0.92rem;
  border: 1px solid #d6c9b9;
  border-radius: 999px;
  background: #f2ebe2;
  color: #695742;
  font-size: 0.74rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

label {
  font-size: 0.84rem;
  color: #4f4a42;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #d7cec1;
  border-radius: 10px;
  padding: 0.6rem 0.65rem;
  font: inherit;
  background: #fffcf8;
}

input:disabled,
select:disabled {
  color: #8c877e;
  background: #f5f2ee;
}

.preview-grid {
  margin-top: 1.45rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.preview-card {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid #d8d0c4;
  min-height: 250px;
  background: #ebe5dd;
}

.preview-card img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.preview-card .blurred {
  filter: blur(7px) saturate(0.85);
  transform: scale(1.06);
}

.preview-card p {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: 0;
  transform: translate(-50%, -50%);
  width: max-content;
  max-width: 88%;
  font-size: 0.84rem;
  background: rgba(251, 250, 247, 0.9);
  border: 1px solid #dfd6ca;
  border-radius: 999px;
  padding: 0.42rem 0.7rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: start;
}

.contact-lines {
  margin-top: 1rem;
  display: grid;
  gap: 0.5rem;
}

.contact-lines a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.95rem;
  text-decoration: none;
}

.contact-form {
  background: #fffdf9;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  position: relative;
  display: grid;
  gap: 0.55rem;
}

.form-note {
  margin: 0.4rem 0 0;
  font-size: 0.85rem;
  color: #625444;
  min-height: 1.3rem;
}

.form-note.is-loading {
  color: #625444;
}

.form-note.is-error {
  color: #8b3227;
}

.form-note.is-success {
  color: #18633d;
  margin: 0.45rem 0 0;
  padding: 0.42rem 0.62rem;
  border-radius: 999px;
  border: 1px solid #bfe2cc;
  background: rgba(244, 252, 247, 0.98);
  box-shadow: 0 8px 18px rgba(32, 66, 44, 0.12);
  font-size: 0.78rem;
  line-height: 1.15;
  justify-self: start;
  animation: form-note-toast-in 240ms ease-out;
}

.form-note-success {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
}

.form-note-check {
  width: 1.15rem;
  height: 1.15rem;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 50%;
  border: 1px solid #58af7e;
  background: #eaf8f0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
  animation: form-note-check-pop 340ms ease-out;
}

.form-note-check::after {
  content: "";
  position: absolute;
  width: 0.34rem;
  height: 0.62rem;
  border-right: 0.14rem solid #16854b;
  border-bottom: 0.14rem solid #16854b;
  left: 0.36rem;
  top: 0.18rem;
  transform: rotate(45deg) scale(0.3);
  transform-origin: center;
  opacity: 0;
  animation: form-note-check-draw 220ms 140ms ease forwards;
}

@keyframes form-note-check-pop {
  0% {
    transform: scale(0.6);
    opacity: 0.25;
  }

  70% {
    transform: scale(1.08);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes form-note-toast-in {
  0% {
    opacity: 0;
    transform: translateY(-6px) scale(0.98);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes form-note-check-draw {
  to {
    opacity: 1;
    transform: rotate(45deg) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .form-note.is-success,
  .form-note-check,
  .form-note-check::after {
    animation: none;
  }

  .form-note-check::after {
    opacity: 1;
    transform: rotate(45deg) scale(1);
  }
}

@media (max-width: 560px) {
  .form-note-success {
    white-space: normal;
  }
}

.site-footer {
  border-top: 1px solid rgba(216, 209, 199, 0.8);
  padding: 1.2rem 0 1.6rem;
}

.footer-inner {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer p {
  margin: 0;
  color: #5c554d;
}

.tiny {
  font-size: 0.8rem;
}

[data-animate] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms ease, transform 520ms ease;
  transition-delay: var(--delay, 0s);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.marble-cursor,
.marble-cursor-aura {
  display: none;
}

@media (pointer: fine) and (hover: hover) {
  body.has-custom-cursor {
    cursor: none;
  }

  body.has-custom-cursor * {
    cursor: none;
  }

  .marble-cursor,
  .marble-cursor-aura {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    z-index: 1000;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.82);
    transition: opacity 180ms ease, transform 220ms ease;
  }

  .marble-cursor {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: #161412;
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.28),
      0 0 6px rgba(20, 17, 14, 0.32);
  }

  .marble-cursor::before {
    content: none;
  }

  .marble-cursor::after {
    content: none;
  }

  .marble-cursor-aura {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid rgba(31, 29, 26, 0.36);
    background: rgba(251, 250, 247, 0.06);
    filter: blur(1.6px);
  }

  body.has-custom-cursor.cursor-visible .marble-cursor,
  body.has-custom-cursor.cursor-visible .marble-cursor-aura {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  body.has-custom-cursor.cursor-hover .marble-cursor {
    transform: translate(-50%, -50%) scale(1.18);
    background: #0f0e0c;
  }

  body.has-custom-cursor.cursor-hover .marble-cursor-aura {
    transform: translate(-50%, -50%) scale(1.22);
    border-color: rgba(31, 29, 26, 0.52);
    background: rgba(176, 156, 129, 0.08);
    filter: blur(2px);
    opacity: 0.92;
  }

  body.has-custom-cursor.cursor-pressed .marble-cursor {
    transform: translate(-50%, -50%) scale(0.82);
  }

  body.has-custom-cursor.cursor-pressed .marble-cursor-aura {
    transform: translate(-50%, -50%) scale(0.9);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .visualizer-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

  .viz-shot {
    flex-basis: calc((100% - 0.5rem) / 2);
  }
}

@media (max-width: 720px) {
  body.mobile-intro-locked main > section:not(.hero),
  body.mobile-intro-locked .site-footer {
    display: none;
  }

  body.mobile-intro-locked .hero {
    min-height: calc(100vh - 76px);
    padding-bottom: calc(7rem + env(safe-area-inset-bottom));
  }

  body.mobile-intro-locked .hero-down-trigger {
    position: fixed;
    left: 50%;
    bottom: calc(1.5rem + env(safe-area-inset-bottom));
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1.8px solid #171513;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #171513;
    box-shadow: 0 10px 20px rgba(20, 18, 15, 0.18);
    z-index: 5;
    animation: hero-arrow-float 1.8s ease-in-out infinite;
  }

  body.mobile-intro-locked .hero-down-trigger .material-symbols-outlined {
    font-size: 1.2rem;
    line-height: 1;
  }

  body.mobile-intro-locked .hero-down-trigger:active {
    transform: translateX(-50%) scale(0.96);
  }

  .site-header {
    background: rgba(251, 250, 247, 0.72);
    backdrop-filter: blur(10px) saturate(1.08);
    -webkit-backdrop-filter: blur(10px) saturate(1.08);
    overflow: visible;
    isolation: isolate;
  }

  .site-header::after {
    display: none;
  }

  .header-inner {
    position: relative;
    z-index: 1;
    min-height: 62px;
  }

  .brand-mark {
    width: auto;
    height: auto;
  }

  .brand-mark-icon {
    width: auto;
    height: 2.1rem;
  }

  .brand-name {
    align-items: center;
  }

  .brand-title {
    font-size: 1.38rem;
  }

  .brand-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.22em;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0.6rem;
    right: 0.6rem;
    width: auto;
    transform: none;
    background: rgba(252, 250, 246, 0.98);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 0.9rem 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero {
    padding-top: 3.4rem;
    overflow: visible;
    transition: padding-bottom 320ms ease;
  }

  .hero::before {
    content: none;
  }

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

  h1 {
    font-size: clamp(2.45rem, 11vw, 3.2rem);
  }

  .hero-actions {
    width: 100%;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 20%;
    margin-bottom: 1.1rem;
  }

  .hero-actions .btn {
    flex: 1 1 0;
    max-width: 160px;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.66rem 0.65rem;
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .hero-actions .btn .btn-icon {
    font-size: 0.9rem;
  }

  .hero-note {
    margin-bottom: 0.64rem;
  }

  .hero-note {
    display: none;
  }

  .hero-actions .btn-ghost {
    background: rgba(255, 255, 255, 0.58);
    border-color: rgba(255, 255, 255, 0.68);
    color: #2f2922;
    backdrop-filter: blur(9px) saturate(1.08);
    -webkit-backdrop-filter: blur(9px) saturate(1.08);
    box-shadow: 0 8px 18px rgba(34, 29, 22, 0.15);
  }

  .hero-actions .btn-ghost:hover,
  .hero-actions .btn-ghost:focus-visible {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.64);
  }

  .hero-contact {
    margin: 0.56rem auto 1rem;
    display: flex;
    align-self: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: calc(100% - 1rem);
    font-size: 0.75rem;
    padding: 0.38rem 0.8rem;
  }

  .hero-contact a {
    white-space: nowrap;
  }

  .material-grid,
  .preview-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .viz-shot {
    flex-basis: 78%;
  }

  .viz-arrow {
    width: 2rem;
    height: 2rem;
  }

  .viz-arrow-prev {
    left: 0.1rem;
  }

  .viz-arrow-next {
    right: 0.1rem;
  }
}

@keyframes hero-arrow-float {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(4px);
  }
}
