:root {
  --ink: #171615;
  --charcoal: #2d2b28;
  --graphite: #44413d;
  --porcelain: #fcfaf5;
  --linen: #f0e9df;
  --shell: #e4d9ca;
  --silk: #d6cabd;
  --champagne: #9b8c75;
  --blush: #b98984;
  --sage: #7b8373;
  --aubergine: #4a3d45;
  --line: rgba(23, 22, 21, 0.16);
  --light-line: rgba(252, 250, 245, 0.24);
  --shadow: 0 28px 90px rgba(34, 29, 24, 0.16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --page-pad: clamp(18px, 5vw, 76px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(155, 140, 117, 0.045) 1px, transparent 1px) 0 0 / 28px 28px,
    var(--porcelain);
  font-family: var(--sans);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

.floating-nav {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(calc(100% - 32px), 1120px);
  min-height: 70px;
  padding: 10px 12px 10px 16px;
  background: rgba(252, 250, 245, 0.84);
  border: 1px solid rgba(23, 22, 21, 0.12);
  border-radius: 999px;
  box-shadow: 0 18px 55px rgba(35, 28, 23, 0.12);
  transform: translateX(-50%);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  color: var(--porcelain);
  background: var(--ink);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  transition: transform 420ms ease, background 420ms ease;
}

.brand:hover .brand-mark {
  background: var(--champagne);
  transform: rotate(-8deg) scale(1.05);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--serif);
  font-size: 23px;
  line-height: 0.95;
  white-space: nowrap;
}

.brand small {
  color: rgba(23, 22, 21, 0.58);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.7vw, 34px);
  color: rgba(23, 22, 21, 0.66);
  font-size: 12px;
  font-weight: 900;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--champagne);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms ease;
  content: "";
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-action,
.button,
.footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  transition: transform 240ms ease, box-shadow 240ms ease, background 240ms ease, color 240ms ease;
}

.nav-action,
.button-dark,
.footer-button {
  color: var(--porcelain);
  background: var(--ink);
  border: 1px solid var(--ink);
}

.button-light {
  color: var(--ink);
  background: rgba(252, 250, 245, 0.5);
  border: 1px solid var(--ink);
}

.nav-action:hover,
.button:hover,
.footer-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(35, 28, 23, 0.16);
}

.nav-end {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(23, 22, 21, 0.18);
  border-radius: 999px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: background 220ms ease, border-color 220ms ease;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 1.6px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 260ms ease, opacity 220ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.6px) 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.6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 86px;
  left: 12px;
  right: 12px;
  z-index: 49;
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 14px;
  background: rgba(252, 250, 245, 0.96);
  border: 1px solid rgba(23, 22, 21, 0.12);
  border-radius: 22px;
  box-shadow: 0 22px 60px rgba(35, 28, 23, 0.18);
  backdrop-filter: blur(22px);
  transform-origin: top center;
  transform: translateY(-10px) scale(0.98);
  opacity: 0;
  pointer-events: none;
  transition: transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 220ms ease;
}

.mobile-menu.is-open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-links,
.mobile-menu-actions {
  display: grid;
  gap: 4px;
}

.mobile-menu-links a {
  display: block;
  padding: 12px 14px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 14px;
  transition: background 200ms ease;
}

.mobile-menu-links a:hover,
.mobile-menu-links a:focus-visible {
  background: rgba(23, 22, 21, 0.06);
}

.mobile-menu-actions {
  grid-template-columns: 1fr;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(23, 22, 21, 0.1);
}

.mobile-menu-actions a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 14px;
  color: var(--ink);
  background: rgba(23, 22, 21, 0.045);
  border: 1px solid rgba(23, 22, 21, 0.08);
  border-radius: 14px;
  font-size: 14px;
  font-weight: 900;
  transition: background 200ms ease, transform 200ms ease, border-color 200ms ease;
}

.mobile-menu-actions a:hover,
.mobile-menu-actions a:focus-visible {
  background: rgba(155, 140, 117, 0.12);
  border-color: rgba(155, 140, 117, 0.28);
  transform: translateY(-1px);
}

.mobile-menu-actions svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-menu-actions svg.whatsapp-icon {
  fill: currentColor;
  stroke: none;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.84fr) minmax(390px, 0.92fr);
  gap: clamp(24px, 5vw, 78px);
  align-items: center;
  min-height: 100svh;
  padding: clamp(102px, 14vh, 130px) var(--page-pad) clamp(34px, 7vh, 88px);
}

.hero-image {
  min-height: min(58svh, 610px);
}

.hero-storefront {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--linen);
  border: 1px solid rgba(23, 22, 21, 0.13);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.hero-storefront img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(0.92) contrast(0.97) brightness(0.98);
  transform: scale(1.5);
  padding-right: 1.6rem;
  padding-bottom: 1rem;
}

.hero-storefront::before {
  position: absolute;
  inset: 16px;
  z-index: 2;
  border: 1px solid rgba(252, 250, 245, 0.68);
  border-radius: 4px;
  content: "";
  pointer-events: none;
}

.hero-storefront::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(23, 22, 21, 0.02), rgba(23, 22, 21, 0.18)),
    linear-gradient(90deg, rgba(252, 250, 245, 0.1), transparent 48%);
  content: "";
  pointer-events: none;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--champagne);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-label::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 0.95;
}

h1 {
  max-width: 12ch;
  margin-bottom: clamp(14px, 2.4vh, 24px);
  font-size: clamp(52px, 6vw, 92px);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 6.8vw, 92px);
}

h3 {
  margin-bottom: 9px;
  font-size: 22px;
  line-height: 1.14;
}

.hero-copy p:not(.eyebrow),
.reviews-copy p {
  color: rgba(23, 22, 21, 0.7);
  font-size: clamp(16px, 1.35vw, 19px);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(18px, 3.5vh, 30px);
}

.atelier-photo,
.service-photo,
.work-card,
.social-tile {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  --fabric-a: #cdc4b8;
  --fabric-b: #fbf6ee;
  --fabric-c: #9f968d;
  --fabric-mark: rgba(74, 61, 69, 0.18);
  --fabric-glow: rgba(155, 140, 117, 0.12);
  background:
    linear-gradient(135deg, rgba(23, 22, 21, 0.08), var(--fabric-glow)),
    repeating-linear-gradient(90deg, rgba(252, 250, 245, 0.16) 0 1px, transparent 1px 17px),
    repeating-linear-gradient(0deg, rgba(23, 22, 21, 0.035) 0 1px, transparent 1px 18px),
    linear-gradient(145deg, var(--fabric-a), var(--fabric-b) 46%, var(--fabric-c));
  border: 1px solid rgba(23, 22, 21, 0.13);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.atelier-photo::before,
.service-photo::before,
.work-card::before,
.social-tile::before {
  position: absolute;
  inset: 16px;
  z-index: 2;
  border: 1px solid rgba(252, 250, 245, 0.66);
  border-radius: 4px;
  content: "";
}

.atelier-photo::after,
.service-photo::after,
.work-card::after,
.social-tile::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 54%;
  height: 54%;
  z-index: 1;
  background:
    linear-gradient(130deg, transparent 0 36%, var(--fabric-mark) 36% 53%, transparent 53%),
    radial-gradient(ellipse at center, rgba(23, 22, 21, 0.12), transparent 70%);
  transform: rotate(-8deg);
  content: "";
}

.atelier-photo span,
.service-photo span,
.work-card span,
.social-tile span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 4;
  max-width: calc(100% - 36px);
  padding: 9px 13px;
  color: var(--ink);
  background: rgba(252, 250, 245, 0.86);
  border: 1px solid rgba(23, 22, 21, 0.12);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.photo-warm {
  --fabric-a: #d0c6ba;
  --fabric-b: #fbf7f0;
  --fabric-c: #a59c92;
  --fabric-mark: rgba(155, 140, 117, 0.14);
  --fabric-glow: rgba(155, 140, 117, 0.1);
}

.photo-rose {
  --fabric-a: #d3c8c0;
  --fabric-b: #fbf6f0;
  --fabric-c: #a79d98;
  --fabric-mark: rgba(185, 137, 132, 0.12);
  --fabric-glow: rgba(185, 137, 132, 0.08);
}

.photo-plum {
  --fabric-a: #cac2bc;
  --fabric-b: #f7f2ec;
  --fabric-c: #928a88;
  --fabric-mark: rgba(74, 61, 69, 0.14);
  --fabric-glow: rgba(74, 61, 69, 0.08);
}

.photo-moss {
  --fabric-a: #cdc8be;
  --fabric-b: #f8f4ed;
  --fabric-c: #989a90;
  --fabric-mark: rgba(123, 131, 115, 0.12);
  --fabric-glow: rgba(123, 131, 115, 0.08);
}

.section-divider {
  position: relative;
  height: 1px;
  margin: 0 var(--page-pad);
  background: linear-gradient(90deg, transparent, rgba(23, 22, 21, 0.38) 16%, rgba(155, 140, 117, 0.46) 50%, rgba(23, 22, 21, 0.38) 84%, transparent);
}

.section-divider.with-arrow::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 9px;
  height: 9px;
  border-top: 1px solid rgba(155, 140, 117, 0.58);
  border-right: 1px solid rgba(155, 140, 117, 0.58);
  transform: translateY(-50%) rotate(45deg);
  content: "";
}

.services-section {
  padding: clamp(28px, 3vw, 48px) var(--page-pad) clamp(28px, 3vw, 48px);
  background: var(--porcelain);
}

.services-section h2 {
  font-size: clamp(36px, 5.2vw, 64px);
}

.section-title.centered {
  max-width: 760px;
  margin: 0 auto clamp(38px, 6vw, 72px);
  text-align: center;
}

.section-title.centered.tight {
  margin-bottom: clamp(14px, 1.8vw, 22px);
}

.section-title.centered .section-label {
  justify-content: center;
}

.services-stage {
  max-width: 1120px;
  margin: 0 auto;
}

.services-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.services-track {
  display: flex;
  width: 400%;
  transform: translateX(0%);
  transition: transform 620ms cubic-bezier(0.65, 0.05, 0.18, 1);
  will-change: transform;
}

.services-page {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2.4vw, 28px);
  width: calc(100% / 4);
  flex-shrink: 0;
  padding: 6px 30px 8px;
}

.services-page.is-single .service-card {
  grid-column: 2;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 4px 2px 0;
  transition: transform 260ms ease;
}

.service-photo-wrap {
  position: relative;
  margin-bottom: 12px;
}

.service-photo {
  aspect-ratio: 1 / 1;
  box-shadow: 0 16px 32px rgba(35, 28, 23, 0.1);
  transition: transform 360ms ease, box-shadow 360ms ease;
}

.service-photo.has-image::after {
  display: none;
}

.service-photo::before {
  display: none;
}

.service-photo img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-photo img.card-1-image {
  object-position: 50% 50%;
}

.service-photo img.card-2-image {
  object-position: 50% 50%;
}

.service-photo img.card-3-image {
  object-position: 50% 50%;
}

.service-photo img.card-4-image {
  object-position: 50% 50%;
}

.service-photo img.card-5-image {
  object-position: 50% 50%;
}

.service-photo img.card-6-image {
  object-position: 50% 50%;
}

.service-photo img.card-7-image {
  object-position: 50% 50%;
}

.service-photo img.card-8-image {
  object-position: 50% 50%;
}

.service-photo img.card-9-image {
  object-position: 50% 50%;
}

.service-photo img.card-10-image {
  object-position: 50% 50%;
}

.service-card h3 {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: 0.005em;
  color: var(--ink);
}

.service-card p {
  max-width: 260px;
  margin: 0 auto;
  color: rgba(23, 22, 21, 0.66);
  font-size: 13px;
  line-height: 1.5;
}

.card-next,
.card-prev {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--ink);
  background: var(--porcelain);
  border: 1px solid rgba(23, 22, 21, 0.14);
  border-radius: 999px;
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.card-next {
  right: -23px;
}

.card-prev {
  left: -23px;
}

.card-next svg,
.card-prev svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-prev svg {
  transform: scaleX(-1);
}

.card-next:hover {
  background: var(--ink);
  color: var(--porcelain);
  transform: translate(2px, -50%);
}

.card-prev:hover {
  background: var(--ink);
  color: var(--porcelain);
  transform: translate(-2px, -50%);
}

.services-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: clamp(18px, 2.4vw, 28px);
}

.services-controls-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.discover-btn {
  display: inline-flex;
  align-items: center;
  height: 52px;
  padding: 0 28px;
  color: var(--porcelain);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.discover-btn:hover {
  background: var(--charcoal);
  transform: translateY(-1px);
}

.services-next,
.services-prev {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(23, 22, 21, 0.22);
  border-radius: 999px;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease, border-color 220ms ease;
}

.services-next svg,
.services-prev svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.services-prev svg {
  transform: scaleX(-1);
}

.services-next:hover {
  background: var(--ink);
  color: var(--porcelain);
  border-color: var(--ink);
  transform: translateX(2px);
}

.services-prev:hover {
  background: var(--ink);
  color: var(--porcelain);
  border-color: var(--ink);
  transform: translateX(-2px);
}

.services-prev,
.card-prev {
  display: none;
}

.services-stage.is-past-start .services-prev {
  display: inline-grid;
}

.services-stage.is-past-start .card-prev {
  display: inline-grid;
}

.services-stage.is-at-end .services-next {
  opacity: 0;
  pointer-events: none;
}

.services-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.services-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  background: rgba(23, 22, 21, 0.22);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 220ms ease, transform 220ms ease;
}

.services-dot:hover {
  background: rgba(23, 22, 21, 0.4);
}

.services-dot.is-active {
  background: var(--ink);
  transform: scale(1.25);
}

.work-pin-section {
  position: relative;
  height: var(--work-section-height, 320vh);
  background:
    linear-gradient(180deg, var(--porcelain), var(--linen) 18%, var(--linen) 82%, var(--porcelain));
}

.work-sticky {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(14px, 3vh, 34px);
  min-height: 100svh;
  padding: clamp(84px, 13vh, 104px) 0 clamp(28px, 6vh, 62px);
  overflow: hidden;
}

.work-heading {
  width: 100%;
  padding: 0 var(--page-pad);
  text-align: center;
}

.work-heading .section-label {
  justify-content: center;
}

.work-heading h2 {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(38px, 5vw, 72px);
}

.work-window {
  position: relative;
  overflow: visible;
  width: 100%;
  --work-card-w: min(72vw, 780px);
}

.work-window::before,
.work-window::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 8;
  width: min(11vw, 150px);
  pointer-events: none;
  content: "";
}

.work-window::before {
  left: 0;
  background: linear-gradient(90deg, var(--linen), transparent);
}

.work-window::after {
  right: 0;
  background: linear-gradient(270deg, var(--linen), transparent);
}

.work-progress {
  position: absolute;
  right: 50%;
  bottom: -30px;
  z-index: 12;
  width: min(220px, 42vw);
  height: 2px;
  overflow: hidden;
  background: rgba(23, 22, 21, 0.12);
  border-radius: 999px;
  pointer-events: none;
  transform: translateX(50%);
}

.work-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--champagne), var(--ink));
  border-radius: inherit;
  transform: scaleX(var(--work-progress, 0));
  transform-origin: left;
}

.work-track {
  display: flex;
  gap: clamp(20px, 5vw, 76px);
  width: max-content;
  padding: 0 calc((100vw - var(--work-card-w)) / 2);
  transform: translate3d(var(--work-x, 0px), 0, 0);
  will-change: transform;
}

.work-card {
  display: grid;
  align-items: end;
  width: var(--work-card-w);
  height: clamp(300px, 46vh, 540px);
  min-height: 300px;
  padding: 34px;
}

.work-card h3 {
  position: relative;
  z-index: 4;
  max-width: 420px;
  margin: auto 0 0;
  color: var(--porcelain);
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 76px);
  line-height: 0.92;
  text-shadow: 0 12px 28px rgba(23, 22, 21, 0.32);
}

.work-card.has-image::before,
.work-card.has-image::after {
  display: none;
}

.work-after-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.work-card-before {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  background:
    repeating-linear-gradient(45deg, rgba(252, 250, 245, 0.04) 0 6px, transparent 6px 14px),
    linear-gradient(140deg, var(--ink), var(--charcoal) 52%, var(--graphite));
  border-radius: inherit;
  clip-path: inset(0 var(--reveal, 0%) 0 0);
  will-change: clip-path, transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  pointer-events: none;
}

.work-card-before img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-before-label {
  padding: 9px 16px;
  color: var(--porcelain);
  background: rgba(23, 22, 21, 0.45);
  border: 1px solid rgba(252, 250, 245, 0.22);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.reviews-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.9fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
  padding: clamp(76px, 11vw, 150px) var(--page-pad);
  background: var(--porcelain);
}

.reviews-copy {
  max-width: 650px;
}

.reviews-copy h2 {
  max-width: 9ch;
}

.marquee-wall {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  height: min(68vh, 660px);
  min-height: 500px;
  overflow: hidden;
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 86%, transparent);
}

.marquee-column {
  overflow: hidden;
}

.marquee-stack {
  display: grid;
  gap: 16px;
  animation: marquee-up 18s linear infinite;
}

.marquee-down .marquee-stack {
  animation-name: marquee-down;
}

.review-card {
  min-height: 184px;
  padding: 20px;
  background: rgba(244, 234, 220, 0.9);
  border: 1px solid rgba(23, 22, 21, 0.12);
  border-radius: 10px;
  box-shadow: 0 16px 44px rgba(35, 28, 23, 0.1);
}

.review-card.alt {
  background: rgba(252, 250, 245, 0.92);
}

.review-stars {
  margin-bottom: 14px;
  color: var(--champagne);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.avatar-placeholder {
  display: block;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  background:
    linear-gradient(135deg, rgba(155, 140, 117, 0.16), rgba(23, 22, 21, 0.08)),
    var(--porcelain);
  border: 1px solid rgba(23, 22, 21, 0.16);
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px rgba(252, 250, 245, 0.55);
}

.review-author strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.1;
}

.review-card p {
  margin-bottom: 0;
  color: rgba(23, 22, 21, 0.74);
  font-size: 14px;
  font-weight: 700;
}

@keyframes marquee-up {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(calc(-50% - 8px));
  }
}

@keyframes marquee-down {
  from {
    transform: translateY(calc(-50% - 8px));
  }
  to {
    transform: translateY(0);
  }
}

.social-section {
  padding: clamp(70px, 10vw, 136px) var(--page-pad) clamp(58px, 8vw, 110px);
  background: var(--linen);
}

.social-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 20px);
  max-width: 1260px;
  margin: 0 auto 30px;
  justify-items: stretch;
}

.social-embed-card {
  min-width: 0;
}

.social-gallery .instagram-media {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  height: 600px !important;
  margin: 0 !important;
  overflow: hidden !important;
  border-radius: 10px !important;
  box-shadow: 0 16px 42px rgba(35, 28, 23, 0.12) !important;
}

.social-gallery .instagram-media iframe {
  height: 600px !important;
  min-height: 600px !important;
}

.social-tile {
  aspect-ratio: 3 / 4;
  min-height: 230px;
  box-shadow: 0 16px 42px rgba(35, 28, 23, 0.12);
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.social-tile::after {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(155, 140, 117, 0.18), rgba(252, 250, 245, 0.1)),
    linear-gradient(145deg, transparent, rgba(23, 22, 21, 0.06));
  opacity: 0;
  transform: none;
  transition: opacity 280ms ease;
}

.social-tile:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 70px rgba(35, 28, 23, 0.16);
}

.social-tile:hover::after {
  opacity: 1;
}

.social-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(18px, 4vw, 34px);
}

.social-actions a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.01em;
  transition: color 240ms ease, transform 240ms ease;
}

.social-actions a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 31px;
  height: 1px;
  background: linear-gradient(90deg, var(--champagne), rgba(155, 140, 117, 0));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms ease;
  content: "";
}

.social-actions svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: color 240ms ease, transform 240ms ease, filter 240ms ease;
}


.social-actions svg.whatsapp-icon {
  fill: currentColor;
  stroke: none;
}

.social-actions a:hover {
  color: var(--champagne);
  transform: translateY(-2px);
}

.social-actions a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.social-actions a:hover svg {
  transform: translateY(-1px) scale(1.04);
  filter: drop-shadow(0 8px 14px rgba(155, 140, 117, 0.18));
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) minmax(140px, 0.55fr) minmax(140px, 0.55fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding: clamp(54px, 8vw, 86px) var(--page-pad) clamp(38px, 6vw, 60px);
  color: rgba(252, 250, 245, 0.68);
  background: var(--ink);
}

.footer-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--porcelain);
}

.footer-lockup svg {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  fill: none;
  stroke: var(--champagne);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-lockup strong {
  display: block;
  color: var(--porcelain);
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 700;
  line-height: 0.9;
}

.footer-lockup small {
  display: block;
  margin-top: 6px;
  color: rgba(252, 250, 245, 0.6);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-brand p {
  max-width: 360px;
  margin: 18px 0 0;
  font-size: 14px;
}

.footer-column,
.footer-message {
  display: grid;
  gap: 12px;
}

.footer-column span,
.footer-message > span {
  display: block;
  color: var(--porcelain);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column a {
  position: relative;
  width: fit-content;
  color: rgba(252, 250, 245, 0.68);
  font-size: 14px;
  font-weight: 800;
  transition: color 220ms ease, transform 220ms ease;
}

.footer-column a::after {
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--champagne), rgba(155, 140, 117, 0));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms ease;
  content: "";
}

.footer-column a:hover {
  color: var(--porcelain);
  transform: translateX(3px);
}

.footer-column a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.footer-message p {
  max-width: 340px;
  margin: 0;
  font-size: 13px;
}

.message-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  align-items: center;
  min-height: 52px;
  margin-top: 6px;
  overflow: hidden;
  color: var(--porcelain);
  background: rgba(252, 250, 245, 0.08);
  border: 1px solid rgba(252, 250, 245, 0.18);
  border-radius: 8px;
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.message-link span {
  min-width: 0;
  padding: 0 15px;
  overflow: hidden;
  font-size: 13px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.message-link svg {
  width: 42px;
  height: 52px;
  padding: 13px;
  background: var(--champagne);
  stroke: var(--ink);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.message-link:hover {
  background: rgba(252, 250, 245, 0.12);
  border-color: rgba(155, 140, 117, 0.7);
  transform: translateY(-2px);
}

[data-reveal] {
  opacity: 1;
}

body.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

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

  body.reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .floating-nav {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }

  .hero-section,
  .reviews-section {
    grid-template-columns: 1fr;
  }

  .hero-image {
    min-height: 480px;
    order: 2;
  }

  .hero-copy {
    max-width: 760px;
  }

  .timeline-rail {
    gap: 18px;
  }

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

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --page-pad: 16px;
  }

  .floating-nav {
    top: 12px;
    grid-template-columns: minmax(0, 1fr) auto;
    width: calc(100% - 24px);
    min-height: 58px;
    padding: 7px 6px 7px 8px;
  }

  .brand:hover .brand-mark {
    background: var(--ink);
    transform: none;
  }

  .nav-end {
    justify-self: end;
  }

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

  .mobile-menu {
    display: flex;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    font-size: 16px;
  }

  .brand strong {
    font-size: 19px;
  }

  .brand small {
    display: none;
  }

  .nav-action {
    min-height: 34px;
    padding: 0 11px;
    font-size: 11px;
  }

  .hero-section {
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: auto;
    padding-top: 94px;
    padding-bottom: 64px;
    align-items: start;
  }

  h1 {
    max-width: 11ch;
    margin: 0 auto 14px;
    font-size: clamp(43px, 13.8vw, 58px);
    text-align: center;
  }

  h2 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .hero-copy p:not(.eyebrow) {
    max-width: 34ch;
    margin: 0 auto;
    font-size: 13px;
    line-height: 1.55;
    text-align: center;
  }

  .hero-copy .eyebrow {
    display: none;
  }

  .hero-copy {
    max-width: none;
  }

  .button-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: min(100%, 280px);
    margin: 24px auto 0;
    padding-bottom: 0;
  }

  .button {
    width: 100%;
    min-height: 38px;
    padding: 0 12px;
    font-size: 11px;
  }

  .hero-image {
    width: 100%;
    min-height: 0;
    aspect-ratio: 1.64 / 1;
    order: 0;
  }

  .hero-storefront img {
    object-fit: cover;
    object-position: center;
    padding: 0;
    transform: none;
  }

  .services-section {
    padding-top: 64px;
    padding-bottom: 12px;
  }

  .services-viewport {
    overflow: visible;
    border-radius: 0;
  }

  .services-track {
    display: flex;
    width: auto;
    transform: none !important;
    transition: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 16px;
    gap: 14px;
    padding: 6px 16px 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

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

  .services-page {
    display: contents;
  }

  .service-card {
    flex: 0 0 82%;
    scroll-snap-align: center;
  }

  .service-photo {
    max-width: none;
    margin: 0 auto 12px;
    aspect-ratio: 1 / 1;
  }

  .service-card p {
    max-width: 320px;
    margin: 0 auto 6px;
  }

  .services-controls,
  .card-prev,
  .card-next {
    display: none !important;
  }

  .work-sticky {
    justify-content: flex-start;
    gap: 20px;
    padding-top: 96px;
    padding-bottom: 0;
  }

  .work-window {
    --work-card-w: calc(100vw - 32px);
  }

  .work-card {
    height: min(64svh, 420px);
    min-height: 0;
    padding: 18px;
  }

  .reviews-section {
    position: relative;
    display: block;
    min-height: 560px;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 96px;
  }

  .reviews-section::before {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
      linear-gradient(180deg, var(--porcelain) 0%, rgba(252, 250, 245, 0.96) 22%, rgba(252, 250, 245, 0.84) 48%, rgba(252, 250, 245, 0.18) 66%, transparent 100%),
      radial-gradient(ellipse at 34% 34%, rgba(252, 250, 245, 0.94) 0 34%, rgba(252, 250, 245, 0.58) 52%, transparent 72%);
    content: "";
    pointer-events: none;
  }

  .reviews-copy {
    position: relative;
    z-index: 3;
    max-width: 330px;
  }

  .reviews-copy h2 {
    max-width: 10ch;
  }

  .marquee-wall {
    position: absolute;
    inset: 0 -18px 0;
    z-index: 1;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    height: auto;
    min-height: 0;
    opacity: 0.84;
    mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
    pointer-events: none;
  }

  .marquee-column:nth-child(1) {
    padding-top: 216px;
  }

  .marquee-column:nth-child(2) {
    padding-top: 76px;
  }

  .review-card {
    min-height: 144px;
    padding: 14px;
    background: rgba(244, 234, 220, 0.82);
    box-shadow: 0 14px 34px rgba(35, 28, 23, 0.08);
  }

  .social-section {
    padding-top: 104px;
    padding-bottom: 124px;
  }

  .social-gallery {
    display: flex;
    gap: 14px;
    width: calc(100% + 32px);
    max-width: none;
    margin: 0 -16px 24px;
    padding: 4px 16px 18px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    scroll-padding: 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .social-gallery::-webkit-scrollbar {
    display: none;
  }

  .social-embed-card {
    flex: 0 0 min(84vw, 326px);
    width: min(84vw, 326px) !important;
    height: 420px !important;
    cursor: pointer;
    overflow: hidden;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
  }

  .social-gallery .instagram-media,
  .social-gallery iframe.instagram-media {
    width: 100% !important;
    max-width: 100% !important;
    height: 420px !important;
  }

  .social-gallery iframe.instagram-media {
    pointer-events: none;
  }

  .social-gallery .instagram-media iframe {
    height: 420px !important;
    min-height: 420px !important;
    pointer-events: none;
  }

  .social-tile {
    min-height: 210px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    gap: 26px 18px;
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .footer-brand,
  .footer-message {
    grid-column: 1 / -1;
  }

  .footer-lockup {
    gap: 10px;
  }

  .footer-lockup svg {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .footer-lockup strong {
    font-size: 34px;
  }

  .footer-lockup small {
    max-width: 220px;
    font-size: 9px;
    line-height: 1.35;
    letter-spacing: 0.08em;
    white-space: normal;
  }

  .footer-brand p,
  .footer-message p {
    max-width: none;
    font-size: 13px;
    line-height: 1.55;
  }

  .footer-column {
    align-content: start;
    gap: 10px;
  }

  .footer-column a {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .message-link {
    grid-template-columns: minmax(0, 1fr) 42px;
  }

  .message-link span {
    white-space: normal;
    text-overflow: clip;
    line-height: 1.25;
  }
}
