
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("./assets/fonts/cormorant-normal-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("./assets/fonts/cormorant-normal-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("./assets/fonts/cormorant-italic-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("./assets/fonts/cormorant-italic-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("./assets/fonts/manrope-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("./assets/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ivory: #f3eee7;
  --ivory-soft: #faf7f2;
  --ink: #171310;
  --ink-soft: #211b17;
  --espresso: #2a211c;
  --gold: #c7a56a;
  --gold-light: #e0c28d;
  --whatsapp: #25d366;
  --whatsapp-deep: #128c4a;
  --taupe: #95877b;
  --line: rgba(27, 22, 18, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --shell: min(100% - 48px, 1240px);
  --header-h: 92px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  background: var(--ivory);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

::selection {
  color: var(--ivory-soft);
  background: var(--espresso);
}

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

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 0.25s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

/* Opening scene */
.page-curtain {
  position: fixed;
  z-index: 999;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  background: var(--ink);
  pointer-events: none;
  transition: transform 1.15s var(--ease) 0.45s;
}

.page-curtain__mark {
  font-family: var(--serif);
  font-size: clamp(56px, 10vw, 118px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.07em;
  opacity: 0;
  transform: translateY(12px);
  animation: curtain-mark 0.7s var(--ease) 0.08s forwards;
}

.page-curtain__line {
  position: absolute;
  top: calc(50% + 76px);
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: curtain-line 0.7s var(--ease) 0.18s forwards;
}

.is-ready .page-curtain {
  transform: translateY(-102%);
}

@keyframes curtain-mark {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes curtain-line {
  to { width: min(260px, 52vw); }
}

/* Header */
.site-header {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--ivory-soft);
  transition: top 0.35s var(--ease), color 0.35s ease, background 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(calc(100% - 48px), 1240px);
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(-50%);
  transition: opacity 0.3s ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(243, 238, 231, 0.9);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled::after {
  opacity: 0;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand__monogram {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.brand__text strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}

.brand__text small {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
  margin-right: 0;
}

.desktop-nav a {
  position: relative;
  padding-block: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.action-brand-icon {
  display: block;
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
}

.whatsapp-logo,
.whatsapp-logo path {
  stroke: none;
}

.whatsapp-logo__bubble { fill: #fff; }
.whatsapp-logo__phone { fill: var(--whatsapp-deep); }

.menu-toggle {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  position: absolute;
  left: 14px;
  width: 16px;
  height: 1px;
  background: currentColor;
  transition: transform 0.4s var(--ease), top 0.4s var(--ease);
}

.menu-toggle > span:first-child { top: 19px; }
.menu-toggle > span:nth-child(2) { top: 25px; }
.menu-toggle[aria-expanded="true"] > span:first-child { top: 22px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:nth-child(2) { top: 22px; transform: rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  z-index: 75;
  inset: 0;
  visibility: hidden;
  pointer-events: none;
}

.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 7, 6, 0.54);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  width: min(520px, 91vw);
  height: 100%;
  padding: 148px 54px 48px;
  flex-direction: column;
  color: var(--ivory-soft);
  background: var(--ink-soft);
  transform: translateX(102%);
  transition: transform 0.75s var(--ease);
}

.mobile-menu.is-open {
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu.is-open .mobile-menu__backdrop { opacity: 1; }
.mobile-menu.is-open .mobile-menu__panel { transform: translateX(0); }

.mobile-menu__eyebrow {
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.mobile-menu__panel > a {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--serif);
  font-size: clamp(31px, 7vw, 48px);
  line-height: 1;
}

.mobile-menu__panel > a span {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.mobile-menu__social {
  margin-top: auto;
  padding-top: 38px;
}

.mobile-menu__social-label {
  display: block;
  margin-bottom: 13px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mobile-menu__social-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.mobile-menu__social-link {
  display: flex;
  min-width: 0;
  min-height: 70px;
  padding: 9px 7px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.035);
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: color 0.35s ease, border-color 0.35s ease, background 0.35s ease, transform 0.4s var(--ease);
}

.mobile-menu__social-link:hover {
  color: var(--ivory-soft);
  border-color: rgba(213, 176, 112, 0.45);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

.mobile-menu__social-link > span:last-child { display: none; }

.mobile-menu__social-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #833ab4, #e1306c 58%, #f77737);
}

.mobile-menu__social-icon svg { width: 16px; height: 16px; }

.mobile-menu__social-icon--threads {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #211c18;
  background: var(--ivory-soft);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.07em;
}

.mobile-menu__social-icon--facebook,
.social-channel__icon--facebook {
  color: #fff;
  background: #1877f2;
  box-shadow: 0 12px 30px rgba(24, 119, 242, 0.2);
}

/* Typography and shared controls */
.kicker {
  margin: 0 0 24px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  margin-right: 11px;
  vertical-align: middle;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 6.5vw, 88px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.045em;
}

h2 em,
h1 em {
  color: var(--gold);
  font-weight: 500;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 206px;
  min-height: 58px;
  padding: 0 21px 0 25px;
  border: 1px solid transparent;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.45s var(--ease), background 0.45s var(--ease), border-color 0.45s var(--ease), transform 0.45s var(--ease);
}

.button:hover {
  transform: translateY(-3px);
}

.button__arrow {
  font-size: 17px;
  transition: transform 0.45s var(--ease);
}

.button:hover .button__arrow { transform: translate(3px, -3px); }

.button__brand-icon {
  display: block;
  width: 23px;
  height: 23px;
  margin-left: 18px;
  flex: 0 0 auto;
  transition: transform 0.4s var(--ease);
}

.button:hover .button__brand-icon { transform: translateY(-2px) scale(1.06); }
.button--dark { color: var(--ivory-soft); background: var(--ink); }
.button--dark:hover { background: var(--gold); }
.button--gold { color: var(--ink); background: var(--gold-light); }
.button--gold:hover { background: #f0d9ac; }
.button--instagram {
  min-width: 232px;
  min-height: 62px;
  padding: 0 15px 0 25px;
  border-color: rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(118deg, #833ab4 0%, #c13584 34%, #e1306c 57%, #fd1d1d 78%, #f77737 100%);
  box-shadow: 0 18px 42px rgba(193, 53, 132, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), filter 0.35s ease;
}
.button--instagram:hover {
  color: #fff;
  box-shadow: 0 24px 52px rgba(193, 53, 132, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  filter: saturate(1.08) brightness(1.04);
}
.button--threads {
  min-width: 232px;
  min-height: 52px;
  padding: 0 15px 0 25px;
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #211c18;
  background: linear-gradient(120deg, #fffdf9 0%, #eee8df 100%);
  box-shadow: 0 14px 34px rgba(5, 4, 3, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.button--threads:hover {
  color: #100e0c;
  background: #fff;
  box-shadow: 0 19px 42px rgba(5, 4, 3, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.button__threads-mark {
  display: grid;
  width: 31px;
  height: 31px;
  margin-left: 18px;
  place-items: center;
  border: 1px solid rgba(33, 28, 24, 0.22);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.06em;
  transition: transform 0.4s var(--ease), background 0.4s ease, color 0.4s ease;
}
.button--threads:hover .button__threads-mark {
  color: #fff;
  background: #171412;
  transform: scale(1.06) rotate(-5deg);
}
.button__social-icon {
  display: block;
  width: 25px;
  height: 25px;
  margin-left: 20px;
  flex: 0 0 auto;
  transition: transform 0.4s var(--ease);
}
.button:hover .button__social-icon { transform: scale(1.08) rotate(-4deg); }
.button--intro {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-width: 306px;
  min-height: 62px;
  padding: 0 10px 0 26px;
  border-color: rgba(213, 176, 112, 0.42);
  border-radius: 999px;
  color: var(--ivory-soft);
  background: linear-gradient(112deg, rgba(42, 34, 28, 0.82), rgba(18, 15, 13, 0.72));
  backdrop-filter: blur(12px);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 10px;
  letter-spacing: 0.1em;
  transition: color 0.45s var(--ease), transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}
.button--intro::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 54%);
  pointer-events: none;
}
.button--intro > * { position: relative; z-index: 1; }
.button--intro:hover {
  color: #fff;
  border-color: rgba(229, 199, 143, 0.72);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.button--intro__mark {
  display: grid;
  width: 42px;
  height: 42px;
  margin-left: 18px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(229, 199, 143, 0.55);
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(10, 8, 7, 0.42);
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.4s var(--ease), background 0.4s var(--ease), transform 0.4s var(--ease);
}
.button--intro:hover .button--intro__mark {
  color: var(--ink);
  background: var(--gold-light);
  transform: rotate(6deg);
}
.button--outline { border-color: var(--ink); background: transparent; }
.button--outline:hover { color: var(--ivory); background: var(--ink); }
.button--full { width: 100%; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s ease, gap 0.4s var(--ease);
}

.text-link:hover { gap: 21px; color: var(--gold); }
/* Hero */
.hero {
  --hero-image: url("./assets/premium-hero-v2.png");
  position: relative;
  min-height: max(830px, 100svh);
  padding: calc(var(--header-h) + 93px) 0 36px;
  overflow: hidden;
  color: var(--ivory-soft);
  background: #1c1714;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 14, 12, 0.97) 0%, rgba(18, 14, 12, 0.9) 39%, rgba(18, 14, 12, 0.22) 74%, rgba(18, 14, 12, 0.4) 100%),
    var(--hero-image) 80% 30% / cover no-repeat;
  filter: saturate(0.7) contrast(1.05);
  transform: scale(1.04);
  animation: hero-breathe 16s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2), transparent 36%, rgba(7,5,4,0.42));
  pointer-events: none;
}

.hero__ambient {
  position: absolute;
  z-index: 1;
  width: 620px;
  height: 620px;
  top: 7%;
  left: 29%;
  border-radius: 50%;
  background: rgba(184, 130, 70, 0.12);
  filter: blur(110px);
}

@keyframes hero-breathe {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.095) translate3d(-0.7%, -0.4%, 0); }
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(350px, 0.7fr);
  min-height: 620px;
  align-items: center;
  gap: 6vw;
}

.hero__copy {
  max-width: 760px;
  padding-top: 34px;
}

.hero__kicker { color: var(--gold-light); }

.hero__title {
  max-width: 760px;
  margin: 0 0 30px;
  font-family: var(--serif);
  font-size: clamp(73px, 8.2vw, 128px);
  font-weight: 500;
  line-height: 0.78;
  letter-spacing: -0.06em;
}

.hero__title > span { display: block; }

.hero__title em {
  display: block;
  margin-left: 10vw;
  font-style: italic;
  line-height: 0.98;
}

.hero__lead {
  max-width: 520px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero__signature {
  display: flex;
  max-width: 420px;
  align-items: flex-start;
  gap: 16px;
  margin-top: 39px;
  color: rgba(255, 255, 255, 0.56);
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  line-height: 1.35;
}

.hero__signature p { margin: 0; }
.hero__signature-line { width: 40px; height: 1px; margin-top: 12px; flex: 0 0 auto; background: var(--gold); }

.hero__visual {
  position: relative;
  justify-self: end;
  width: min(380px, 100%);
}

.hero__frame {
  position: relative;
  aspect-ratio: 0.72;
  margin: 0;
  overflow: hidden;
  background: #2a211d;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.36);
}

.hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  filter: saturate(0.72) contrast(1.05);
  transform: scale(1.04);
  transition: transform 1.2s var(--ease);
}

.hero__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.02);
  pointer-events: none;
}

.hero__visual:hover .hero__frame img { transform: scale(1.1); }

.hero__visual-note {
  position: absolute;
  right: -24px;
  bottom: 76px;
  display: grid;
  width: 95px;
  height: 95px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(20, 15, 12, 0.72);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.hero__visual-note span:first-child {
  margin-top: 13px;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1;
}

.hero__visual-note span:last-child {
  margin-top: -21px;
  font-size: 7px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.image-label {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 9px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(15, 12, 10, 0.6);
  font-size: 7px;
  line-height: 1;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.image-label--dark { color: var(--ivory); }

.hero__facts {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.fact {
  display: flex;
  min-height: 76px;
  padding: 17px 24px;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.fact:last-child { border-right: 0; }
.fact strong { font-family: var(--serif); font-size: 22px; font-weight: 500; line-height: 1; }
.fact span { margin-top: 5px; color: rgba(255, 255, 255, 0.48); font-size: 8px; letter-spacing: 0.12em; text-transform: uppercase; }

/* Marquee */
.service-marquee {
  overflow: hidden;
  padding: 21px 0 18px;
  color: var(--ink);
  background: var(--gold-light);
}

.service-marquee__track {
  display: flex;
  width: max-content;
  align-items: center;
  white-space: nowrap;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  animation-name: service-marquee-loop;
  animation-duration: var(--marquee-duration, 26s);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-play-state: running;
}

.service-marquee__group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 30px;
  padding-right: 30px;
}

.service-marquee span {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
}

.service-marquee i { font-size: 8px; font-style: normal; }

@keyframes service-marquee-loop {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

/* Sections */
.section-dark {
  color: var(--ivory-soft);
  background: var(--ink);
}

.services {
  position: relative;
  padding: 145px 0 155px;
  overflow: hidden;
}

.services::before {
  content: "ÖK";
  position: absolute;
  top: 90px;
  right: -3vw;
  color: rgba(255, 255, 255, 0.025);
  font-family: var(--serif);
  font-size: 33vw;
  line-height: 0.7;
  letter-spacing: -0.1em;
  pointer-events: none;
}

.section-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: end;
  gap: 8vw;
  margin-bottom: 80px;
}

.section-heading__copy {
  max-width: 420px;
  margin: 0 0 4px;
  color: #73685f;
  font-size: 13px;
}

.section-heading--light .section-heading__copy { color: rgba(255, 255, 255, 0.52); }

.service-list {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line-light);
}

.service-row {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  min-height: 154px;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--line-light);
  transition: padding 0.55s var(--ease), background 0.55s var(--ease);
}

.service-row::before {
  content: "";
  position: absolute;
  inset: 0 -24px;
  z-index: -1;
  background: rgba(255, 255, 255, 0.045);
  opacity: 0;
  transform: scaleY(0.72);
  transition: opacity 0.45s ease, transform 0.55s var(--ease);
}

.service-row:hover::before { opacity: 1; transform: scaleY(1); }
.service-row:hover { padding-inline: 12px; }

.service-row__number {
  align-self: start;
  padding-top: 36px;
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 0.15em;
}

.service-row__content {
  display: grid;
  grid-template-columns: minmax(250px, 0.68fr) minmax(240px, 0.32fr);
  align-items: center;
  gap: 4vw;
}

.service-row h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.service-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.service-row > a {
  display: flex;
  width: 86px;
  height: 86px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.4s ease, background 0.4s ease, transform 0.5s var(--ease);
}

.service-row > a span { font-size: 13px; }
.service-row > a:hover { color: var(--ink); background: var(--gold-light); transform: rotate(-7deg); }

/* Editorial */
.editorial-section {
  padding: 155px 0;
  background: var(--ivory-soft);
}

.editorial-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.74fr);
  align-items: center;
  gap: 9vw;
}

.editorial-media {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background: #d5c7ba;
}

.editorial-media::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  pointer-events: none;
}

.editorial-media img {
  width: 100%;
  height: 100%;
  min-height: 690px;
  object-fit: cover;
  filter: saturate(0.65) sepia(0.08);
  transition: transform 1.3s var(--ease), filter 0.8s ease;
}

.editorial-media img.editorial-media__owner {
  object-position: center 38%;
  filter: saturate(0.84) contrast(1.02) sepia(0.03);
}

.editorial-media:hover img { transform: scale(1.045); filter: saturate(0.85); }
.editorial-media:hover img.editorial-media__owner { filter: saturate(0.96) contrast(1.02); }
.editorial-copy { max-width: 590px; }
.editorial-copy h2 { font-size: clamp(50px, 5.9vw, 78px); }

.editorial-copy__lead {
  max-width: 500px;
  margin: 39px 0 0;
  color: #6f645c;
  font-size: 14px;
}

.portfolio-section[hidden] { display: none; }

.portfolio-section {
  position: relative;
  padding: 145px 0 120px;
  overflow: hidden;
  color: var(--ivory-soft);
  background:
    radial-gradient(circle at 85% 10%, rgba(201, 165, 104, 0.16), transparent 28rem),
    linear-gradient(145deg, #17120f, #0d0a08 72%);
}

.portfolio-section::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(213, 176, 112, 0.42), transparent);
  content: "";
}

.portfolio-section__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  align-items: end;
  gap: 80px;
}

.portfolio-section__heading h2 {
  max-width: 850px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(54px, 6.1vw, 92px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.portfolio-section__heading > p {
  max-width: 410px;
  margin: 0 0 8px;
  color: rgba(248, 243, 235, 0.5);
  font-size: 12px;
  line-height: 1.75;
}

.portfolio-marquee {
  position: relative;
  width: 100%;
  margin-top: 72px;
  overflow: hidden;
  outline: 0;
  touch-action: pan-y pinch-zoom;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.portfolio-marquee::-webkit-scrollbar { display: none; }

.portfolio-marquee__track {
  display: flex;
  width: max-content;
  animation: portfolio-marquee-loop var(--portfolio-duration, 48s) linear infinite;
  animation-play-state: running;
  will-change: transform;
}

.portfolio-marquee__group {
  display: flex;
  padding-right: 18px;
  align-items: flex-start;
  gap: 18px;
}

.portfolio-card {
  position: relative;
  width: clamp(235px, 24vw, 350px);
  aspect-ratio: 4 / 5;
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #241c17;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.2);
}

.portfolio-card:nth-child(3n + 2) {
  width: clamp(280px, 30vw, 430px);
  aspect-ratio: 1.25 / 1;
  margin-top: 50px;
}

.portfolio-card:nth-child(4n) { margin-top: 24px; }

.portfolio-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.02);
  transform: scale(1.015);
  transition: transform 900ms var(--ease), filter 700ms ease;
}

.portfolio-card:hover img { filter: saturate(1); transform: scale(1.055); }

.portfolio-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 7, 6, 0.82));
  pointer-events: none;
  content: "";
}

.portfolio-card figcaption {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 18px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.portfolio-card figcaption span {
  color: var(--gold-light);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.portfolio-card figcaption strong {
  overflow: hidden;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@keyframes portfolio-marquee-loop {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.statement {
  --statement-image: url("./assets/premium-detail-v2.png");
  position: relative;
  min-height: 74vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--ivory-soft);
  background:
    linear-gradient(100deg, rgba(16, 12, 10, 0.96), rgba(16, 12, 10, 0.65)),
    var(--statement-image) center / cover fixed;
}

.statement::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 76% 30%, rgba(201, 165, 104, 0.18), transparent 34%);
}

.statement__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: start;
  gap: 28px;
  padding: 120px 0;
}

.statement__mark {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 110px;
  line-height: 0.7;
}

.statement p {
  max-width: 1050px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 6.5vw, 92px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.statement em { color: var(--gold-light); font-weight: 500; }

/* Gallery */
.gallery-section {
  padding: 150px 0 170px;
  background: var(--ivory);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 390px 390px;
  gap: 18px;
}

.gallery-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #d5c8bc;
}

.gallery-card--tall { grid-row: 1 / 3; }

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.62) contrast(1.03);
  transform: scale(1.02);
  transition: transform 1.1s var(--ease), filter 0.8s ease;
}

.gallery-card--tall img { object-position: center 27%; }
.gallery-card:hover img { transform: scale(1.085); filter: saturate(0.9); }

.gallery-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 34px 24px 18px;
  color: #fff;
  background: linear-gradient(transparent, rgba(12, 9, 7, 0.72));
  font-family: var(--serif);
  font-size: 19px;
}

.gallery-card figcaption span { color: var(--gold-light); font-family: var(--sans); font-size: 8px; }
.gallery-card figcaption b { font-weight: inherit; }

.instagram-proof {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  margin-top: 18px;
  padding: 30px;
  color: var(--ivory-soft);
  background: var(--espresso);
}

.instagram-proof__mark {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
}

.instagram-proof__copy { min-width: 0; }
.instagram-proof__copy > span {
  display: block;
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.instagram-proof__copy strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(27px, 3vw, 40px);
  font-weight: 500;
  line-height: 1;
}
.instagram-proof__copy p {
  max-width: 570px;
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
}

.instagram-proof__actions {
  display: grid;
  min-width: 232px;
  gap: 10px;
}

.rating-block {
  color: var(--ivory-soft);
  background: var(--espresso);
}

.rating-block__inner {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  min-height: 430px;
}

.rating-block__score {
  display: flex;
  min-height: 230px;
  align-items: flex-end;
  padding-right: 70px;
  border-right: 1px solid var(--line-light);
}

.rating-block__score strong {
  font-family: var(--serif);
  font-size: clamp(110px, 15vw, 210px);
  font-weight: 400;
  line-height: 0.7;
  letter-spacing: -0.08em;
}

.rating-block__score span { margin: 0 0 8px 14px; color: var(--gold); font-size: 12px; }
.rating-block__copy { padding-left: 8vw; }
.rating-block__copy h2 { margin-bottom: 32px; font-size: clamp(39px, 4.5vw, 58px); }

/* Editorial contact and social closing */
.appointment-section {
  position: relative;
  padding: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 82%, rgba(37, 211, 102, 0.1), transparent 31%),
    radial-gradient(circle at 88% 18%, rgba(199, 165, 106, 0.11), transparent 27%),
    var(--ink);
}

.whatsapp-contact {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.68fr);
  min-height: 520px;
  padding: 108px 0 68px;
  align-items: center;
  gap: clamp(70px, 8vw, 130px);
}

.contact-kicker {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 27px;
}

.contact-kicker .kicker { margin: 0; }

.contact-kicker__signal {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(37, 211, 102, 0.36);
  border-radius: 50%;
  color: var(--whatsapp);
  background: rgba(37, 211, 102, 0.07);
  box-shadow: 0 0 0 8px rgba(37, 211, 102, 0.025);
}

.contact-kicker__signal svg { width: 23px; height: 23px; }

.whatsapp-contact__copy h2 {
  max-width: 680px;
  font-size: clamp(50px, 5.7vw, 78px);
}

.whatsapp-contact__copy h2 em { color: var(--whatsapp); }

.whatsapp-contact__copy > p:not(.kicker) {
  max-width: 590px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.whatsapp-contact__actions {
  display: grid;
  align-self: center;
  gap: 22px;
}

.whatsapp-primary {
  position: relative;
  display: grid;
  isolation: isolate;
  overflow: hidden;
  grid-template-columns: 48px minmax(0, 1fr);
  min-height: 80px;
  padding: 11px 24px 11px 11px;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(115deg, #0c6d3b 0%, #128c4a 54%, #1aaf59 100%);
  box-shadow: 0 18px 48px rgba(4, 61, 31, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), filter 0.35s ease;
}

.whatsapp-primary::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 52%);
  pointer-events: none;
}

.whatsapp-primary > * { position: relative; z-index: 1; }

.whatsapp-primary:hover {
  box-shadow: 0 23px 58px rgba(4, 82, 41, 0.46), inset 0 1px 0 rgba(255, 255, 255, 0.26);
  filter: saturate(1.08) brightness(1.04);
  transform: translateY(-3px);
}

.whatsapp-primary__icon {
  width: 48px;
  height: 48px;
  padding: 9px;
  border-radius: 50%;
  color: var(--whatsapp-deep);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 22px rgba(3, 55, 27, 0.24), inset 0 0 0 1px rgba(18, 140, 74, 0.08);
}

.whatsapp-primary span {
  display: grid;
  gap: 3px;
}

.whatsapp-primary small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.whatsapp-primary strong {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
}

.contact-quick-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.contact-quick-link {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  min-width: 0;
  min-height: 78px;
  padding: 17px 2px;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.19);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.35s ease, border-color 0.35s ease, padding 0.45s var(--ease);
}

.contact-quick-link:hover {
  padding-left: 8px;
  border-top-color: rgba(213, 176, 112, 0.62);
  color: var(--ivory-soft);
}

.contact-quick-link__icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(213, 176, 112, 0.3);
  border-radius: 50%;
  color: var(--gold-light);
}

.contact-quick-link__icon svg { width: 18px; height: 18px; }
.contact-quick-link__icon--maps { border-color: rgba(255, 255, 255, 0.22); background: rgba(255, 255, 255, 0.92); }
.contact-quick-link__icon--maps svg { width: 19px; height: 19px; }

.contact-quick-link > span:nth-child(2) { display: grid; min-width: 0; gap: 4px; }
.contact-quick-link small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.contact-quick-link strong {
  overflow: hidden;
  font-size: 12px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.contact-quick-link__arrow { color: var(--gold); font-size: 16px; transition: transform 0.4s var(--ease); }
.contact-quick-link:hover .contact-quick-link__arrow { transform: translate(3px, -3px); }

.contact-ledger {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, 0.85fr);
  align-items: end;
  gap: clamp(54px, 9vw, 150px);
  padding: 39px 0 45px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.contact-ledger span,
.social-signature__copy > span {
  display: block;
  margin-bottom: 11px;
  color: var(--gold);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-ledger address {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--serif);
  font-size: 20px;
  font-style: normal;
  line-height: 1.35;
  white-space: pre-line;
}

.contact-ledger__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
}

.contact-ledger__meta a,
.contact-ledger__meta strong {
  color: rgba(255, 255, 255, 0.84);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-ledger__meta a:hover { color: var(--gold-light); }

.social-signature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.72fr);
  align-items: end;
  gap: clamp(60px, 9vw, 145px);
  padding: 88px 0 104px;
  overflow: hidden;
}

.social-signature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 210px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.social-signature__ornament {
  position: absolute;
  right: 31%;
  bottom: -0.17em;
  color: rgba(255, 255, 255, 0.025);
  font-family: var(--serif);
  font-size: clamp(190px, 25vw, 360px);
  line-height: 0.75;
  pointer-events: none;
}

.social-signature__copy,
.social-signature__links { position: relative; z-index: 1; }

.social-signature__copy h3 {
  margin: 0;
  color: var(--ivory-soft);
  font-family: var(--serif);
  font-size: clamp(46px, 5.2vw, 72px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.social-signature__copy h3 em { color: var(--gold); font-weight: 500; }
.social-signature__copy p {
  max-width: 590px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}
.social-signature__copy p strong { color: rgba(255, 255, 255, 0.8); font-weight: 600; }

.social-signature__links { border-top: 1px solid rgba(255, 255, 255, 0.17); }

.social-channel {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  min-height: 86px;
  padding: 16px 2px;
  align-items: center;
  gap: 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.35s ease, padding 0.45s var(--ease), border-color 0.35s ease;
}

.social-channel:hover {
  padding-left: 10px;
  color: var(--ivory-soft);
  border-bottom-color: rgba(213, 176, 112, 0.55);
}

.social-channel__icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #833ab4, #e1306c 58%, #f77737);
  box-shadow: 0 12px 30px rgba(193, 53, 132, 0.22);
}

.social-channel__icon svg { width: 22px; height: 22px; }
.social-channel__icon--threads {
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #211c18;
  background: var(--ivory-soft);
  box-shadow: none;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.07em;
}

.social-channel__icon.social-channel__icon--facebook {
  color: #fff;
  background: #1877f2;
  box-shadow: 0 12px 30px rgba(24, 119, 242, 0.24);
}

.social-channel__icon--facebook svg { width: 24px; height: 24px; }

.social-channel > span:nth-child(2) { display: grid; gap: 4px; }
.social-channel small {
  color: rgba(255, 255, 255, 0.4);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.social-channel strong { font-family: var(--serif); font-size: 21px; font-weight: 500; }
.social-channel__arrow { color: var(--gold); font-size: 17px; transition: transform 0.4s var(--ease); }
.social-channel:hover .social-channel__arrow { transform: translate(3px, -3px); }

/* Footer */
.site-footer { padding: 65px 0 28px; color: rgba(255, 255, 255, 0.72); background: #0e0c0b; }
.site-footer__top { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--line-light); }
.brand--footer { color: var(--ivory-soft); }
.site-footer__top > p { max-width: 270px; margin: 0; font-family: var(--serif); font-size: 18px; font-style: italic; }
.footer-up { display: flex; width: 74px; height: 74px; align-items: center; justify-content: center; gap: 7px; border: 1px solid var(--line-light); border-radius: 50%; font-size: 8px; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.3s ease, background 0.3s ease; }
.footer-up:hover { color: var(--ink); background: var(--gold-light); }
.site-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding-top: 23px; color: rgba(255, 255, 255, 0.38); font-size: 8px; letter-spacing: 0.08em; text-transform: uppercase; }
.site-footer__bottom p { margin: 0; }
.site-footer__bottom button { padding: 5px; color: inherit; background: transparent; font-size: inherit; letter-spacing: inherit; text-transform: inherit; cursor: pointer; }

.mobile-sticky-cta { display: none; }

/* Modals */
.modal {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.4s, opacity 0.4s ease;
}

.modal.is-open { visibility: visible; opacity: 1; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(12, 9, 7, 0.75); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }

.modal__card {
  position: relative;
  width: min(100%, 580px);
  max-height: calc(100svh - 44px);
  padding: 46px;
  overflow: auto;
  background: var(--ivory-soft);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  transform: translateY(25px) scale(0.98);
  transition: transform 0.55s var(--ease);
}

.modal.is-open .modal__card { transform: translateY(0) scale(1); }
.modal__close { position: absolute; top: 16px; right: 16px; display: grid; width: 35px; height: 35px; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: transparent; font-size: 22px; cursor: pointer; }
.modal h2 { margin-bottom: 21px; font-size: clamp(38px, 5vw, 55px); }
.modal p { color: #6f645c; font-size: 12px; }
.modal pre { max-height: 250px; margin: 22px 0; padding: 18px; overflow: auto; white-space: pre-wrap; color: #51483f; background: #e9e1d8; font: 11px/1.6 var(--sans); }

/* Motion */
.js .load-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.js.is-ready .load-reveal { opacity: 1; transform: translateY(0); }
.js.is-ready .load-reveal:nth-child(2) { transition-delay: 0.12s; }
.js.is-ready .load-reveal:nth-child(3) { transition-delay: 0.22s; }
.js.is-ready .load-reveal:nth-child(4) { transition-delay: 0.31s; }
.js.is-ready .load-reveal:nth-child(5) { transition-delay: 0.4s; }

.js .load-visual {
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1.4s var(--ease) 0.2s;
}

.js.is-ready .load-visual { clip-path: inset(0 0 0 0); }

.js .reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

.js .reveal-media {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.15s var(--ease);
}

.js .reveal-media img {
  transform: scale(1.11);
  transition: transform 1.4s var(--ease), filter 0.8s ease;
}

.js .reveal-media.is-visible { clip-path: inset(0 0 0 0); }
.js .reveal-media.is-visible img { transform: scale(1.02); }
.js .reveal-media.is-visible:hover img { transform: scale(1.08); }

section[id] { scroll-margin-top: calc(var(--header-h) + 18px); }

:target .reveal,
:target .reveal-media {
  opacity: 1 !important;
  transform: none !important;
  clip-path: none !important;
}

:target .reveal-media img { transform: scale(1.02); }

@media (max-width: 1050px) {
  :root { --shell: min(100% - 38px, 930px); }
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .hero__grid { grid-template-columns: 1.15fr 0.55fr; gap: 3vw; }
  .hero__title { font-size: clamp(72px, 9.5vw, 105px); }
  .hero__visual { width: 300px; }
  .section-heading { grid-template-columns: 1fr 0.62fr; gap: 5vw; }
  .service-row__content { grid-template-columns: 1fr 0.65fr; }
  .editorial-section__grid { gap: 6vw; }
  .editorial-media,
  .editorial-media img { min-height: 570px; }
  .whatsapp-contact { grid-template-columns: minmax(0, 1fr); min-height: auto; padding: 90px 0 62px; gap: 48px; }
  .whatsapp-contact__actions { width: min(100%, 680px); }
  .contact-ledger { grid-template-columns: minmax(0, 1fr) minmax(350px, 0.8fr); gap: 54px; }
  .social-signature { grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr); gap: 54px; }
}

@media (max-width: 780px) {
  :root { --shell: min(100% - 28px, 680px); --header-h: 70px; }
  body { font-size: 14px; }
  .site-header { top: 0; }
  .site-header.is-scrolled { top: 0; padding-top: env(safe-area-inset-top); }
  .site-header__inner { height: 70px; }
  .site-header::after { width: calc(100% - 28px); }
  .brand__monogram { width: 40px; height: 40px; font-size: 15px; }
  .brand__text strong { font-size: 19px; }
  .brand__text small { font-size: 7px; }
  .menu-toggle { width: 42px; height: 42px; }
  .menu-toggle > span:not(.sr-only) { left: 13px; }
  .mobile-menu__panel {
    width: min(480px, 100vw);
    padding: calc(105px + env(safe-area-inset-top)) 25px max(25px, env(safe-area-inset-bottom));
    overflow-y: auto;
  }
  .mobile-menu__panel > a { padding: 11px 0; }

  .hero {
    min-height: auto;
    padding: 112px 0 26px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(15, 12, 10, 0.7), rgba(15, 12, 10, 0.84) 54%, rgba(15, 12, 10, 0.99) 86%),
      var(--hero-image) 58% 25% / cover no-repeat;
  }

  .hero::before {
    filter: saturate(0.72) contrast(1.03);
    animation: none;
    transform: scale(1.025);
  }
  .hero__ambient { display: none; }
  .hero__grid { display: block; min-height: auto; }
  .hero__copy { position: relative; z-index: 2; max-width: none; padding-top: clamp(235px, 35svh, 320px); }
  .hero__title {
    max-width: 100%;
    margin-bottom: 24px;
    font-size: clamp(52px, 15.5vw, 76px);
    line-height: 0.86;
    letter-spacing: -0.065em;
  }
  .hero__title em { margin-left: 7vw; }
  .hero__lead { max-width: 430px; font-size: 12.5px; line-height: 1.65; }
  .hero__actions { align-items: stretch; gap: 18px; }
  .hero__actions .button { min-width: 178px; min-height: 56px; }
  .hero__actions .text-link { align-self: center; }
  .hero__signature { display: none; }
  .hero__visual { display: none; }
  .hero__facts { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 42px; }
  .fact { min-width: 0; min-height: 72px; padding: 13px 10px; }
  .fact strong { font-size: 20px; }
  .fact span { line-height: 1.35; }

  .service-marquee { padding: 16px 0 14px; }
  .service-marquee span { font-size: 18px; }
  .services,
  .editorial-section,
  .gallery-section,
  .portfolio-section { padding: 84px 0; }
  .section-heading { display: block; margin-bottom: 55px; }
  .section-heading__copy { margin-top: 27px; }
  h2 { font-size: clamp(44px, 12.8vw, 64px); }
  .portfolio-section__heading { grid-template-columns: 1fr; gap: 28px; }
  .portfolio-section__heading h2 { font-size: clamp(44px, 12.8vw, 64px); }
  .portfolio-section__heading > p { max-width: 520px; }
  .portfolio-marquee { margin-top: 52px; }
  .portfolio-card { width: clamp(220px, 66vw, 310px); }
  .portfolio-card:nth-child(3n + 2) { width: clamp(255px, 76vw, 355px); margin-top: 34px; }

  .service-row { grid-template-columns: 30px minmax(0, 1fr); min-height: 132px; gap: 11px; overflow: hidden; }
  .service-row__content { display: block; }
  .service-row h3 { margin-bottom: 10px; font-size: clamp(34px, 9.7vw, 48px); line-height: 1; }
  .service-row p { max-width: 390px; }
  .service-row > a { display: none; }
  .service-row__number { padding-top: 34px; }

  .editorial-section__grid { display: flex; flex-direction: column; gap: 52px; }
  .editorial-media { width: 100%; min-height: 440px; order: 2; }
  .editorial-media img { min-height: 440px; }
  .editorial-copy { order: 1; }

  .statement { min-height: auto; background-attachment: scroll; }
  .statement__inner { grid-template-columns: 34px 1fr; gap: 6px; padding: 86px 0; }
  .statement__mark { font-size: 68px; }
  .statement p { font-size: clamp(39px, 10.8vw, 57px); }

  .gallery-grid { grid-template-columns: minmax(0, 1fr); grid-template-rows: 520px 280px 280px; }
  .gallery-card--tall { grid-row: auto; }
  .rating-block__inner { grid-template-columns: 1fr; padding: 75px 0; }
  .rating-block__score { min-height: auto; padding: 0 0 42px; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .rating-block__score strong { font-size: 35vw; }
  .rating-block__copy { padding: 45px 0 0; }

  .whatsapp-contact {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 76px 0 48px;
    gap: 42px;
  }
  .contact-kicker { margin-bottom: 23px; }
  .whatsapp-contact__copy h2 { font-size: clamp(44px, 12.8vw, 64px); }
  .whatsapp-contact__copy > p:not(.kicker) { margin-top: 22px; }
  .whatsapp-primary {
    width: 100%;
    min-height: 70px;
    padding: 9px 18px 9px 9px;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
  }
  .whatsapp-contact__actions { width: 100%; grid-column: auto; gap: 20px; }
  .whatsapp-primary__icon { width: 44px; height: 44px; padding: 8px; }
  .whatsapp-primary strong { font-size: 15px; }
  .contact-ledger { grid-template-columns: 1fr; gap: 34px; padding: 32px 0 38px; }
  .contact-ledger__meta { gap: 28px; }
  .contact-ledger address { font-size: 18px; }
  .social-signature { grid-template-columns: 1fr; gap: 42px; padding: 75px 0 86px; }
  .social-signature__ornament { right: -25px; bottom: 0; font-size: 250px; }
  .social-signature__copy h3 { font-size: clamp(42px, 11.8vw, 59px); }
  .site-footer__top { grid-template-columns: 1fr auto; }
  .site-footer__top > p { grid-column: 1 / -1; grid-row: 2; }
  .site-footer__bottom { align-items: flex-start; flex-direction: column; }
  .mobile-sticky-cta {
    position: fixed;
    z-index: 65;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 10px;
    display: flex;
    min-height: 54px;
    padding: 0 21px;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    color: var(--ivory-soft);
    background: linear-gradient(115deg, rgba(25, 21, 18, 0.97), rgba(61, 48, 37, 0.97));
    box-shadow: 0 15px 38px rgba(12, 9, 7, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    transform: translateY(95px);
    transition: transform 0.55s var(--ease);
  }
  .mobile-sticky-cta.is-visible { transform: translateY(0); }
  .mobile-sticky-cta--contact { border-color: rgba(213, 176, 112, 0.48); }
  .mobile-sticky-cta__icon { width: 26px; height: 26px; color: var(--gold-light); }
  body.menu-open .mobile-sticky-cta,
  body.modal-open .mobile-sticky-cta { transform: translateY(95px); }
  .page-curtain { transition-duration: 0.68s; transition-delay: 0.12s; }
  .js .reveal,
  .js .reveal-media {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    transition: none !important;
  }
  .js .reveal-media img { transform: scale(1.02); }
  .site-footer { padding-bottom: 95px; }
}

@media (max-width: 480px) {
  :root { --shell: calc(100% - 24px); }
  .brand__text small { display: none; }
  .hero__copy { padding-top: clamp(215px, 31svh, 285px); }
  .hero__actions { flex-direction: column; }
  .hero__actions .button { width: 100%; }
  .hero__actions .button--intro {
    min-width: 0;
    min-height: 58px;
    padding: 0 8px 0 21px;
    font-size: 10px;
    letter-spacing: 0.08em;
  }
  .hero__actions .button--intro__mark {
    width: 40px;
    height: 40px;
    margin-left: 10px;
  }
  .hero__actions .text-link { align-self: flex-start; }
  .hero__facts { width: calc(100% + 2px); }
  .portfolio-marquee {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  }
  .portfolio-marquee__group { padding-right: 12px; gap: 12px; }
  .portfolio-card { width: 72vw; max-width: 285px; }
  .portfolio-card:nth-child(3n + 2) { width: 82vw; max-width: 330px; }
  .portfolio-card figcaption { right: 16px; bottom: 15px; left: 16px; }
  .portfolio-card figcaption strong { font-size: 18px; }
  .gallery-grid { grid-template-rows: 450px 245px 245px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .modal { align-items: end; padding: 10px; }
  .modal__card {
    width: 100%;
    max-height: calc(100dvh - 20px);
    padding: 38px 21px max(23px, env(safe-area-inset-bottom));
  }
  .contact-quick-links { grid-template-columns: 1fr; gap: 0; }
  .contact-ledger__meta { grid-template-columns: 1fr; gap: 26px; }
  .social-channel { min-height: 78px; grid-template-columns: 46px minmax(0, 1fr) auto; gap: 14px; }
  .social-channel__icon { width: 46px; height: 46px; }
  .site-footer__top { display: flex; align-items: flex-start; flex-direction: column; }
  .footer-up { align-self: flex-end; margin-top: -75px; }
}

@media (max-width: 620px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

@media (hover: none), (pointer: coarse) {
  .button:hover,
  .service-row:hover,
  .service-row > a:hover,
  .portfolio-card:hover img,
  .gallery-card:hover img,
  .editorial-media:hover img { transform: none; }
  .service-row:hover::before { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .service-marquee,
  .portfolio-marquee { overflow: hidden; }
  .portfolio-marquee {
    -webkit-mask-image: none;
    mask-image: none;
  }
  .service-marquee__track {
    animation: service-marquee-loop var(--marquee-duration, 26s) linear infinite !important;
    animation-play-state: running !important;
  }
  .portfolio-marquee__track {
    animation: portfolio-marquee-loop var(--portfolio-duration, 48s) linear infinite !important;
    animation-play-state: running !important;
  }
  .page-curtain { display: none; }
  .js .load-reveal,
  .js .reveal { opacity: 1; transform: none; }
  .js .load-visual,
  .js .reveal-media { clip-path: none; }
}


.service-marquee__track,
.portfolio-marquee__track {
  animation-play-state: running !important;
}
