:root {
  /* Palette derived from main_logo.png: terracotta JM + charcoal stone */
  --ink: #121212;
  --ink-soft: #5c5c5c;
  --paper: #f3f1ef;
  --paper-2: #e8e5e1;
  --sand: #e47824;
  --gold: #b33a18;
  --rust: #901800;
  --stone: #484848;
  --mist: rgba(243, 241, 239, 0.72);
  --line: rgba(18, 18, 18, 0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --gutter: clamp(1.1rem, 5vw, 5.5rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .wa-float {
  opacity: 0;
  pointer-events: none;
}

img,
iframe,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: var(--gold);
  color: #fff;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 40;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.4rem, 7vw, 6.2rem);
}

h2 {
  font-size: clamp(1.9rem, 4.4vw, 3.8rem);
}

.lede {
  max-width: 36rem;
  font-size: clamp(0.98rem, 1.6vw, 1.08rem);
  color: rgba(243, 241, 239, 0.82);
  font-weight: 300;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease);
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--light {
  background: var(--paper);
  color: var(--ink);
}

.btn--ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(243, 241, 239, 0.35);
}

.btn--dark {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.btn--dark:hover {
  background: var(--rust);
  border-color: var(--rust);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem var(--gutter);
  background: #ffffff;
  color: var(--ink);
  border-bottom: 1px solid rgba(18, 18, 18, 0.08);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.nav::before {
  display: none;
}

.nav.scrolled,
.page-inner .nav,
.nav.open {
  background: #ffffff;
  border-bottom: 1px solid rgba(18, 18, 18, 0.08);
  box-shadow: 0 8px 24px rgba(18, 18, 18, 0.06);
}

.nav__brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 2;
}

.nav__logo {
  height: clamp(40px, 6.5vw, 56px);
  width: auto;
  max-width: min(220px, 52vw);
  object-fit: contain;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav__links a {
  position: relative;
  white-space: nowrap;
}

.nav__links a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.35s var(--ease);
}

.nav__links a:not(.nav__cta):hover::after,
.nav__links a.is-active:not(.nav__cta)::after {
  width: 100%;
}

.nav__cta {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}

.nav__cta:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.nav__cta--mobile {
  display: none;
  width: fit-content;
}

.nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 2;
}

.nav__toggle span {
  display: block;
  height: 1.5px;
  background: currentColor;
  margin: 7px 0;
  transition: transform 0.3s var(--ease);
}

.nav.open .nav__toggle span:first-child {
  transform: translateY(4.25px) rotate(45deg);
}

.nav.open .nav__toggle span:last-child {
  transform: translateY(-4.25px) rotate(-45deg);
}

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-content: end;
  color: var(--paper);
  padding: 0 var(--gutter) 3.5rem;
  overflow: hidden;
}

.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  padding: 0 var(--gutter) 9.4rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s var(--ease), visibility 0.9s var(--ease);
}

.hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero__slide-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-size: cover;
  background-position: center;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.38) 38%, rgba(0, 0, 0, 0.12) 68%, transparent 100%),
    linear-gradient(180deg, rgba(18, 12, 8, 0.35) 0%, rgba(18, 12, 8, 0.12) 36%, rgba(18, 12, 8, 0.72) 100%),
    radial-gradient(ellipse at 18% 78%, rgba(179, 58, 24, 0.22), transparent 52%);
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 58rem;
  padding-top: clamp(7rem, 22vh, 14rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
  margin-bottom: 0.85rem;
}

.hero__nav {
  position: absolute;
  top: 48%;
  z-index: 3;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(243, 241, 239, 0.35);
  border-radius: 50%;
  background: rgba(16, 12, 10, 0.35);
  color: var(--paper);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.hero__nav--prev { left: max(0.6rem, 2vw); }
.hero__nav--next { right: max(0.6rem, 2vw); }

.hero__dots {
  position: absolute;
  right: var(--gutter);
  bottom: 6.2rem;
  z-index: 3;
  display: flex;
  gap: 0.45rem;
}

.hero__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(243, 241, 239, 0.35);
  cursor: pointer;
}

.hero__dot.is-active {
  background: var(--sand);
  transform: scale(1.2);
}

.hero__meta {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 0.35rem;
  border-top: 1px solid rgba(243, 241, 239, 0.18);
  padding-top: 1.4rem;
}

.hero__meta span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  opacity: 0.55;
  margin-bottom: 0.35rem;
}

.hero__meta p {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-style: italic;
}

.page-hero {
  position: relative;
  min-height: min(62vh, 520px);
  display: grid;
  align-content: end;
  color: var(--paper);
  padding: 8rem var(--gutter) 3.2rem;
}

.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero .hero__veil {
  background: linear-gradient(180deg, rgba(16, 12, 10, 0.45), rgba(16, 12, 10, 0.82));
}

.page-hero h1 {
  max-width: 16ch;
}

.page-hero .rating-summary {
  color: rgba(243, 241, 239, 0.88);
  margin-top: 1rem;
  margin-bottom: 0;
}

.marquee {
  background: var(--ink);
  color: var(--sand);
  overflow: hidden;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(201, 162, 122, 0.2);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: drift 32s linear infinite;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.marquee__track span {
  padding: 0 2.4rem;
}

@keyframes drift {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.story,
.collection,
.process,
.gallery,
.visit,
.band,
.news,
.reviews,
.faqs,
.article {
  padding: clamp(3.5rem, 8vw, 7.5rem) var(--gutter);
}

.story__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  margin-bottom: 4rem;
}

.story__body {
  color: var(--ink-soft);
  display: grid;
  gap: 1.1rem;
  padding-top: 2.4rem;
}

.about-copy p + p {
  margin-top: 0;
}

.story__frames {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.8fr;
  gap: 1.2rem;
  align-items: stretch;
}

.story__frames figure {
  overflow: hidden;
}

.story__frames img {
  width: 100%;
  height: min(52vw, 520px);
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.story__frames figure:hover img {
  transform: scale(1.05);
}

.story__frames figcaption {
  margin-top: 0.7rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.story__note {
  background: var(--ink);
  color: var(--paper);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
}

.story__note a {
  margin-top: 2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--sand);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats article {
  padding: clamp(1.6rem, 3vw, 3.2rem) clamp(1.2rem, 2vw, 2.2rem);
  border-right: 1px solid var(--line);
}

.stats article:last-child {
  border-right: 0;
}

.stats h3 {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  margin-bottom: 0.8rem;
}

.stats p {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 3rem;
}

.collection {
  background:
    radial-gradient(circle at 90% 10%, rgba(201, 162, 122, 0.18), transparent 40%),
    var(--paper);
}

.collection__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.stone {
  background: #faf9f7;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(18, 18, 18, 0.05);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.collection__empty {
  grid-column: 1 / -1;
  color: var(--ink-soft);
}

.stone:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(18, 18, 18, 0.1);
}

.stone__img {
  height: clamp(200px, 28vw, 280px);
  overflow: hidden;
}

.stone__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.stone:hover .stone__img img {
  transform: scale(1.06);
}

.stone__copy {
  padding: 1.4rem 1.5rem 1.7rem;
}

.stone__copy span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.stone__copy h3 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 0.35rem 0 0.7rem;
}

.stone__copy p {
  color: var(--ink-soft);
}

.atelier {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 70vh;
}

.atelier__visual {
  position: relative;
}

.atelier__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.atelier__caption {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  background: var(--mist);
  backdrop-filter: blur(12px);
  padding: 1rem 1.3rem;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 28rem;
}

.atelier__list {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(2.5rem, 6vw, 6rem) clamp(1.4rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.atelier__list ul {
  list-style: none;
  margin: 2.2rem 0 2.4rem;
  display: grid;
  gap: 1.4rem;
}

.atelier__list li {
  padding-bottom: 1.3rem;
  border-bottom: 1px solid rgba(243, 241, 239, 0.12);
  color: rgba(243, 241, 239, 0.75);
}

.atelier__list strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--paper);
  margin-bottom: 0.25rem;
}

.service {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  min-height: 100svh;
  background: var(--paper);
}

.service__visual {
  position: relative;
  min-height: 70vh;
}

.service__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 70vh;
}

.service__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(6.8rem, 10vw, 8.5rem) clamp(1.5rem, 5vw, 4.2rem) 3.5rem;
}

.service__copy h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: 1.2rem;
}

.service__copy .about-copy {
  color: var(--ink-soft);
  display: grid;
  gap: 1rem;
}

.service__copy .hero__actions {
  margin-top: 2rem;
  margin-bottom: 0;
}

.service__copy .btn--outline {
  color: var(--ink);
}

.process {
  background: var(--paper-2);
}

.process__steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.process__steps span {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--gold);
}

.process__steps h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 0.8rem 0 0.7rem;
}

.process__steps p {
  color: var(--ink-soft);
}

.gallery {
  padding-bottom: 4rem;
}

.gallery__mosaic {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  grid-auto-rows: 260px;
  gap: 0.8rem;
}

.gallery__mosaic[data-count="1"] {
  grid-template-columns: 1fr;
  grid-auto-rows: minmax(280px, 48vh);
}

.gallery__mosaic[data-count="2"] {
  grid-template-columns: 1.3fr 1fr;
}

.gallery__mosaic[data-count="3"] {
  grid-auto-rows: 320px;
}

.gallery__shot {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: #121212;
  cursor: zoom-in;
  overflow: hidden;
}

.gallery__mosaic img,
.gallery__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.gallery__shot:hover img,
.gallery__shot:focus-visible img {
  transform: scale(1.05);
}

.gallery__mosaic:not([data-count="1"]):not([data-count="2"]):not([data-count="3"]) .gallery__shot:nth-child(1) {
  grid-row: span 2;
}

.gallery__mosaic:not([data-count="1"]):not([data-count="2"]):not([data-count="3"]) .gallery__shot:nth-child(4) {
  grid-column: span 2;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
}

.lightbox[hidden] {
  display: none;
}

.lightbox__scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(60, 40, 28, 0.35), transparent 55%),
    rgba(10, 8, 6, 0.88);
  backdrop-filter: blur(16px);
}

.lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(92vw, 1080px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.6rem;
}

.lightbox__figure {
  margin: 0;
  background: #0a0a0a;
  border: 1px solid rgba(201, 162, 122, 0.28);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.lightbox__figure img {
  display: block;
  width: 100%;
  max-height: min(78vh, 820px);
  object-fit: contain;
  background: #0a0a0a;
}

.lightbox__figure figcaption {
  padding: 0.85rem 1.2rem 1.05rem;
  color: rgba(243, 241, 239, 0.82);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.lightbox__close,
.lightbox__nav {
  border: 1px solid rgba(201, 162, 122, 0.4);
  background: rgba(16, 12, 10, 0.72);
  color: var(--sand);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}

.lightbox__close {
  position: absolute;
  top: -2.6rem;
  right: 0;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  z-index: 2;
}

.lightbox__nav {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  font-size: 1.8rem;
  font-family: "Cormorant Garamond", serif;
}

.lightbox__close:hover,
.lightbox__nav:hover,
.lightbox__close:focus-visible,
.lightbox__nav:focus-visible {
  background: var(--sand);
  color: var(--ink);
  transform: translateY(-1px);
}

body.lightbox-open {
  overflow: hidden;
}

body.lightbox-open .wa-float {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 720px) {
  .lightbox__dialog {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    justify-items: center;
  }

  .lightbox__nav--prev {
    order: 2;
  }

  .lightbox__figure {
    order: 1;
    width: 100%;
  }

  .lightbox__nav--next {
    order: 3;
  }

  .lightbox__nav {
    position: static;
  }

  .lightbox__close {
    top: 0.4rem;
    right: 0.4rem;
  }
}

.gallery__empty {
  color: var(--ink-soft);
  max-width: 36rem;
}

.visit {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  background: var(--ink);
  color: var(--paper);
}

.visit__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem 2rem;
  margin-top: 2.4rem;
}

.visit dt {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 0.35rem;
}

.visit dd {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-style: italic;
}

.visit a:hover {
  color: var(--sand);
}

.visit__map {
  margin-top: 2.2rem;
  height: min(42vw, 240px);
  min-height: 180px;
  overflow: hidden;
  border: 1px solid rgba(243, 241, 239, 0.12);
}

.visit__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.35) contrast(1.05);
}

.visit__form,
.review-form {
  background: rgba(243, 241, 239, 0.06);
  border: 1px solid rgba(243, 241, 239, 0.1);
  padding: clamp(1.4rem, 3vw, 2.4rem);
  display: grid;
  gap: 1rem;
}

.visit__form h3,
.review-form h3 {
  font-size: 2rem;
  margin-bottom: 0.4rem;
}

.visit__form label,
.review-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.visit__form input,
.visit__form textarea,
.review-form input,
.review-form textarea,
.review-form select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(243, 241, 239, 0.25);
  color: var(--paper);
  font: inherit;
  padding: 0.7rem 0;
  resize: vertical;
  width: 100%;
}

.review-form {
  background: #faf9f7;
  border: 1px solid var(--line);
  color: var(--ink);
}

.review-form input,
.review-form textarea,
.review-form select {
  border-bottom-color: var(--line);
  color: var(--ink);
}

.visit__form input:focus,
.visit__form textarea:focus,
.review-form input:focus,
.review-form textarea:focus,
.review-form select:focus {
  outline: none;
  border-bottom-color: var(--sand);
}

.visit__form .btn,
.review-form .btn {
  margin-top: 0.8rem;
  justify-self: start;
}

.form-note {
  font-size: 0.85rem;
  color: var(--sand);
}

.review-form .form-note {
  color: var(--gold);
}

.news-grid,
.review-grid,
.values,
.home-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}

.card,
.review-card {
  background: #faf9f7;
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.card__body,
.review-card {
  padding: 1.4rem 1.5rem 1.6rem;
}

.card time,
.review-card .stars {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.card h3,
.review-card h3 {
  font-size: 1.7rem;
  margin: 0.45rem 0 0.7rem;
}

.card p,
.review-card p,
.values p {
  color: var(--ink-soft);
}

.card .btn {
  margin-top: 1.2rem;
  align-self: start;
}

.review-card cite {
  display: block;
  margin-top: 1.1rem;
  font-style: italic;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
}

.values article {
  padding: 1.6rem;
  background: #faf9f7;
  border: 1px solid var(--line);
}

.values h3 {
  font-size: 1.7rem;
  margin-bottom: 0.6rem;
}

.article {
  max-width: 46rem;
  margin: 0 auto;
  color: var(--ink-soft);
  padding-top: clamp(7.5rem, 14vw, 9rem);
}

.article h1 {
  color: var(--ink);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 0.8rem;
}

.article time {
  display: block;
  margin-bottom: 2rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold);
}

.article p + p,
.article h2 {
  margin-top: 1.2rem;
}

.article h2 {
  color: var(--ink);
  font-size: 2rem;
  margin-top: 2rem;
}

.article img {
  width: 100%;
  height: min(48vw, 380px);
  object-fit: cover;
  margin: 1.6rem 0;
}

.article.article--wide {
  max-width: 52rem;
}

.article .about-copy {
  display: grid;
  gap: 1.1rem;
}

.article__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.page-empty {
  grid-column: 1 / -1;
  max-width: 36rem;
  color: var(--ink-soft);
}

.page-empty h2 {
  color: var(--ink);
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

.page-empty .btn {
  margin-top: 1.2rem;
}

.card {
  color: inherit;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

a.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(18, 18, 18, 0.1);
}

.faq-list {
  max-width: 46rem;
  margin: 0 auto;
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  background: #faf9f7;
  border: 1px solid var(--line);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  background: transparent;
  border: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.faq-toggle {
  flex-shrink: 0;
  width: 1.7rem;
  height: 1.7rem;
  border: 1px solid var(--sand);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
}

.faq-item.is-open .faq-toggle {
  transform: rotate(45deg);
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-item.is-open .faq-answer {
  max-height: 40rem;
}

.faq-answer p {
  padding: 0 1.4rem 1.35rem;
  color: var(--ink-soft);
}

.review-card .stars {
  display: flex;
  gap: 0.12rem;
  letter-spacing: 0;
  text-transform: none;
  font-size: 1rem;
}

.star {
  color: rgba(18, 18, 18, 0.18);
}

.star.is-filled {
  color: var(--gold);
}

.star.is-half {
  background: linear-gradient(90deg, var(--gold) 50%, rgba(18, 18, 18, 0.18) 50%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-hero .rating-summary {
  color: rgba(243, 241, 239, 0.88);
  margin: 0.8rem 0 0;
}

.rating-summary .stars {
  font-size: 1.05rem;
}

.star-picker {
  display: flex;
  gap: 0.25rem;
}

.star-picker button {
  background: none;
  border: 0;
  padding: 0;
  font-size: 1.6rem;
  color: rgba(18, 18, 18, 0.2);
  cursor: pointer;
  line-height: 1;
}

.star-picker button.is-on {
  color: var(--gold);
}

.more-journal {
  padding-top: 0;
}

.app {
  position: relative;
  padding: clamp(3.5rem, 8vw, 7.5rem) var(--gutter);
  background:
    linear-gradient(180deg, rgba(16, 12, 10, 0.72), rgba(16, 12, 10, 0.88)),
    url("mazeras3.png") center / cover no-repeat;
  color: var(--paper);
}

.app__inner {
  max-width: 68rem;
  margin: 0 auto;
}

.app__intro {
  max-width: 40rem;
  margin-bottom: 2.6rem;
}

.app__intro p:not(.eyebrow) {
  color: rgba(243, 241, 239, 0.8);
  font-size: 1.05rem;
}

.app__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-bottom: 2.2rem;
}

.app__steps article {
  padding: 1.6rem 1.5rem 1.7rem;
  background: rgba(243, 241, 239, 0.06);
  border: 1px solid rgba(201, 162, 122, 0.22);
  backdrop-filter: blur(10px);
}

.app__steps span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--sand);
  margin-bottom: 0.7rem;
}

.app__steps h3 {
  font-size: 1.7rem;
  margin-bottom: 0.55rem;
}

.app__steps p {
  color: rgba(243, 241, 239, 0.75);
  font-size: 0.95rem;
}

.app__stores {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.store {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 12rem;
  padding: 0.85rem 1.15rem;
  border-radius: 0.9rem;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.store:hover {
  transform: translateY(-2px);
}

.store svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.store span {
  display: grid;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.store small {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.6;
}

.wa-float {
  position: fixed;
  right: max(1rem, 2.4vw);
  bottom: max(1rem, calc(1rem + env(safe-area-inset-bottom, 0px)));
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.4rem 0.95rem 0.4rem 0.4rem;
  border-radius: 999px;
  background: #fff;
  color: #121212;
  box-shadow:
    0 10px 28px rgba(16, 12, 10, 0.18),
    0 0 0 1px rgba(18, 18, 18, 0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), opacity 0.3s ease;
}

.wa-float__ping {
  position: absolute;
  left: 0.4rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.35);
  animation: wa-pulse 2.4s ease-out infinite;
  z-index: -1;
}

.wa-float__btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(37, 211, 102, 0.4);
}

.wa-float__btn svg {
  width: 28px;
  height: 28px;
}

.wa-float__text {
  display: grid;
  padding-right: 0.35rem;
  line-height: 1.15;
}

.wa-float__text strong {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wa-float__text em {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.wa-float:hover {
  transform: translateY(-3px);
  box-shadow:
    0 16px 32px rgba(16, 12, 10, 0.22),
    0 0 0 1px rgba(18, 18, 18, 0.06);
}

@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .wa-float__ping { animation: none; }
  .marquee__track { animation: none; }
}

@media (max-width: 720px) {
  .wa-float {
    padding: 0;
    width: 58px;
    height: 58px;
    background: transparent;
    box-shadow: none;
  }

  .wa-float__ping {
    left: 3px;
    top: 3px;
  }

  .wa-float__text {
    display: none;
  }
}

.footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 0%, rgba(201, 162, 122, 0.16), transparent 36%),
    #100c0a;
  color: rgba(243, 241, 239, 0.68);
  padding: 0;
}

.footer__glow {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--sand), var(--gold), transparent);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr;
  gap: 2.2rem;
  padding: 3.2rem var(--gutter) 2.4rem;
}

.footer__brand {
  display: block;
}

.footer__logo {
  height: clamp(64px, 10vw, 88px);
  width: auto;
  max-width: 280px;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
}

.footer__brand p {
  max-width: 22rem;
  margin-bottom: 1.3rem;
}

.socials {
  display: flex;
  gap: 0.65rem;
}

.socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(228, 120, 36, 0.35);
  display: grid;
  place-items: center;
  color: var(--sand);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}

.socials a svg {
  width: 18px;
  height: 18px;
}

.socials a:hover {
  background: var(--sand);
  color: var(--ink);
  transform: translateY(-2px);
}

.footer__col {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.footer__col h3 {
  font-size: 1.35rem;
  color: var(--paper);
  margin-bottom: 0.4rem;
}

.footer__col a:hover {
  color: var(--sand);
}

.footer__bar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.15rem var(--gutter);
  border-top: 1px solid rgba(243, 241, 239, 0.08);
  font-size: 0.82rem;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
}

.footer__legal a {
  color: var(--sand);
}

@media (max-width: 1180px) {
  .nav__links,
  .nav__cta--desk {
    display: none;
  }

  .nav.open .nav__links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    inset: 0;
    z-index: 201;
    background: #ffffff;
    color: var(--ink);
    padding: 6.5rem var(--gutter) 2rem;
    gap: 1.3rem;
    font-size: 1rem;
    overflow: auto;
  }

  .nav.open .nav__brand,
  .nav.open .nav__toggle {
    z-index: 202;
  }

  .nav.open .nav__cta--mobile {
    display: inline-flex;
    margin-top: 0.8rem;
  }

  .nav__toggle {
    display: block;
  }
}

@media (max-width: 980px) {
  .hero__meta,
  .story__grid,
  .story__frames,
  .collection__grid,
  .atelier,
  .process__steps,
  .visit,
  .visit__facts,
  .gallery__mosaic,
  .news-grid,
  .review-grid,
  .values,
  .home-links,
  .app__steps,
  .footer__top {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }

  .gallery__mosaic,
  .gallery__mosaic[data-count="1"],
  .gallery__mosaic[data-count="2"],
  .gallery__mosaic[data-count="3"] {
    grid-template-columns: 1fr 1fr;
  }

  .gallery__mosaic img,
  .gallery__mosaic .gallery__shot:nth-child(1),
  .gallery__mosaic .gallery__shot:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
    height: 220px;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
  }

  .stats article:nth-child(2) {
    border-right: 0;
  }

  .hero {
    min-height: 92svh;
  }

  .service {
    grid-template-columns: 1fr;
  }

  .service__visual,
  .service__visual img {
    min-height: 42vh;
  }
}

@media (max-width: 720px) {
  .hero__meta,
  .story__grid,
  .story__frames,
  .stats,
  .collection__grid,
  .atelier,
  .process__steps,
  .visit,
  .visit__facts,
  .gallery__mosaic,
  .news-grid,
  .review-grid,
  .values,
  .home-links,
  .app__steps,
  .footer__top {
    grid-template-columns: 1fr;
  }

  .stats article,
  .stats article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .story__frames img {
    height: 240px;
  }

  .story__note {
    min-height: 0;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__slide {
    padding-bottom: 12.5rem;
  }

  .visit__form .btn,
  .review-form .btn {
    width: 100%;
    justify-self: stretch;
  }

  .footer__bar {
    flex-direction: column;
  }

  .page-hero {
    min-height: 48vh;
    padding-top: 7.2rem;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.15rem;
  }

  .nav__logo {
    height: 42px;
  }

  .hero__nav {
    display: none;
  }

  .hero__dots {
    right: auto;
    left: var(--gutter);
    bottom: 5.6rem;
  }

  .store {
    width: 100%;
  }
}
