@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@300;400;500;600&display=swap');

:root {
  --black: #090909;
  --charcoal: #141310;
  --charcoal-soft: #1d1b17;
  --gold: #c7a15a;
  --gold-bright: #e4c984;
  --gold-deep: #8e6b2d;
  --ivory: #f8f3e9;
  --cream: #eee5d4;
  --ink: #24211c;
  --muted: #756e63;
  --white: #fffdf8;
  --border: rgba(164, 126, 57, 0.26);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --header-height: 90px;
  --container: min(1180px, calc(100% - 48px));
  --ease: cubic-bezier(.2, .75, .25, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}

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

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

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

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

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

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

::selection {
  color: var(--black);
  background: var(--gold-bright);
}

.skip-link {
  position: fixed;
  z-index: 3000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--black);
  background: var(--gold-bright);
  transform: translateY(-160%);
  transition: transform .25s ease;
}

.skip-link:focus {
  transform: none;
}

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

.section {
  position: relative;
  padding: 112px 0;
}

.section-sm {
  padding: 78px 0;
}

.section-dark {
  color: var(--ivory);
  background: var(--black);
}

.section-charcoal {
  color: var(--ivory);
  background: linear-gradient(145deg, #171612, #090909 72%);
}

.section-cream {
  background: #f0e8d9;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 16px;
  color: var(--gold-deep);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  line-height: 1.5;
  text-transform: uppercase;
}

.section-dark .eyebrow,
.section-charcoal .eyebrow,
.hero .eyebrow,
.inner-hero .eyebrow {
  color: var(--gold-bright);
}

.eyebrow::before {
  width: 38px;
  height: 1px;
  content: "";
  background: currentColor;
  transform-origin: left;
  animation: lineGrow 1.3s var(--ease) both;
}

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

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

h1 {
  font-size: clamp(3.25rem, 7.1vw, 7rem);
  letter-spacing: -.045em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 4.7vw, 4.6rem);
  letter-spacing: -.035em;
}

h3 {
  font-size: clamp(1.55rem, 2.3vw, 2.15rem);
}

.lead {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.06rem;
}

.section-dark .lead,
.section-charcoal .lead {
  color: #c9c1b3;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 54px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.center .eyebrow {
  justify-content: center;
}

.section-heading.center .lead {
  margin-inline: auto;
}

.text-gold {
  color: var(--gold);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 14px 24px;
  color: var(--black);
  background: linear-gradient(115deg, var(--gold-deep), var(--gold-bright) 50%, var(--gold));
  box-shadow: none;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .15em;
  line-height: 1.2;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .35s ease, border-color .35s ease, transform .35s var(--ease), background .35s ease;
}

.btn::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: var(--ivory);
  transform: translateX(-102%);
  transition: transform .45s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:hover::after {
  transform: translateX(0);
}

.btn-outline {
  color: var(--ivory);
  border-color: rgba(228, 201, 132, .72);
  background: transparent;
}

.btn-outline::after {
  background: var(--gold-bright);
}

.btn-outline:hover {
  color: var(--black);
}

.btn-dark {
  color: var(--ivory);
  background: var(--black);
}

.btn-dark::after {
  background: var(--gold);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 5px;
  color: var(--gold-deep);
  border-bottom: 1px solid currentColor;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: gap .3s ease, color .3s ease;
}

.text-link:hover {
  gap: 18px;
  color: var(--gold);
}

/* Header and navigation */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  color: var(--ivory);
  transition: background .35s ease, box-shadow .35s ease, transform .35s ease;
}

.topbar {
  border-bottom: 1px solid rgba(228, 201, 132, .16);
  background: rgba(0, 0, 0, .45);
  font-size: .69rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.topbar-inner {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
}

.topbar-meta,
.topbar-socials {
  display: flex;
  align-items: center;
  gap: 24px;
}

.topbar a {
  transition: color .25s ease;
}

.topbar a:hover {
  color: var(--gold-bright);
}

.topbar-socials svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.navbar {
  border-bottom: 1px solid rgba(228, 201, 132, .12);
  background: linear-gradient(to bottom, rgba(5, 5, 5, .68), rgba(5, 5, 5, .2));
  transition: background .35s ease, min-height .35s ease;
}

.site-header.is-scrolled .topbar {
  display: none;
}

.site-header.is-scrolled .navbar {
  background: rgba(8, 8, 8, .96);
  box-shadow: 0 14px 38px rgba(0, 0, 0, .25);
  backdrop-filter: blur(16px);
}

.nav-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo-link {
  position: relative;
  z-index: 2;
  display: block;
  flex: 0 0 auto;
}

.site-logo {
  width: auto;
  height: 74px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 3px 15px rgba(0, 0, 0, .25));
  transition: height .35s ease;
}

.site-header.is-scrolled .site-logo {
  height: 66px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  position: relative;
  padding: 9px 0;
  color: #f0e9dc;
  font-size: .71rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold-bright);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-bright);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-book {
  min-height: 44px;
  padding: 12px 18px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--border);
  color: var(--gold-bright);
  background: rgba(0, 0, 0, .25);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 21px;
  height: 1px;
  content: "";
  background: currentColor;
  transition: transform .3s ease, opacity .3s ease;
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before {
  position: absolute;
  top: -7px;
}

.menu-toggle span::after {
  position: absolute;
  top: 7px;
}

.menu-toggle[aria-expanded="true"] span {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] span::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span::after {
  transform: translateY(-7px) rotate(-45deg);
}

/* Full-bleed heroes */
.hero,
.inner-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  color: var(--white);
  background-color: var(--black);
  overflow: hidden;
}

.hero {
  min-height: 100svh;
  align-items: center;
  padding: 190px 0 88px;
}

.inner-hero {
  min-height: 68svh;
  align-items: end;
  padding: 210px 0 86px;
}

.hero::after,
.inner-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(2, 2, 2, .87) 0%, rgba(4, 4, 4, .56) 45%, rgba(4, 4, 4, .12) 76%), linear-gradient(0deg, rgba(0, 0, 0, .42), transparent 60%);
}

.hero-media,
.inner-hero-media {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 13s ease-out both;
}

.hero-content {
  position: relative;
  max-width: 860px;
}

.hero-content > * {
  opacity: 0;
  animation: heroText .85s var(--ease) both;
}

.hero-content > :nth-child(1) { animation-delay: .16s; }
.hero-content > :nth-child(2) { animation-delay: .25s; }
.hero-content > :nth-child(3) { animation-delay: .34s; }
.hero-content > :nth-child(4) { animation-delay: .43s; }
.hero-content > :nth-child(5) { animation-delay: .52s; }

.hero-brand {
  display: block;
  margin-bottom: 16px;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.6vw, 2.25rem);
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 850px;
  margin-bottom: 24px;
  text-wrap: balance;
}

.hero p {
  max-width: 690px;
  color: #e2dbcf;
  font-size: clamp(.95rem, 1.4vw, 1.08rem);
}

.hero-scroll {
  position: absolute;
  right: 4vw;
  bottom: 35px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  font-size: .64rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  transform: rotate(90deg);
  transform-origin: right center;
}

.hero-scroll::after {
  display: block;
  width: 56px;
  height: 1px;
  content: "";
  background: var(--gold);
  animation: scrollLine 2s ease-in-out infinite;
}

.inner-hero h1 {
  max-width: 900px;
  margin: 0 0 14px;
  font-size: clamp(3.2rem, 7vw, 6.6rem);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #ded6c8;
  font-size: .73rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.breadcrumb a {
  color: var(--gold-bright);
}

/* Editorial image and text compositions */
.split {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(48px, 8vw, 105px);
}

.split.reverse .split-media {
  order: 2;
}

.split-media {
  position: relative;
  min-height: 630px;
}

.split-media::before {
  position: absolute;
  z-index: 1;
  top: -18px;
  right: -18px;
  width: 46%;
  height: 48%;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  content: "";
  pointer-events: none;
}

.split-media img {
  width: 100%;
  height: 630px;
  object-fit: cover;
}

.split-copy p:not(.eyebrow) {
  color: var(--muted);
}

.section-dark .split-copy p:not(.eyebrow) {
  color: #c9c1b3;
}

.signature {
  margin-top: 24px;
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-style: italic;
}

.ornament {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 24px 0;
  color: var(--gold);
}

.ornament::before,
.ornament::after {
  width: 62px;
  height: 1px;
  content: "";
  background: currentColor;
}

.ornament span {
  width: 8px;
  height: 8px;
  border: 1px solid currentColor;
  transform: rotate(45deg);
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px 20px;
}

.service-card {
  position: relative;
  min-width: 0;
}

.service-card-media {
  position: relative;
  height: 290px;
  margin-bottom: 24px;
  overflow: hidden;
  background: #25221d;
}

.service-card-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(0, 0, 0, .42), transparent 48%);
  opacity: .65;
  transition: opacity .45s ease;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .75s var(--ease);
}

.service-number {
  position: absolute;
  z-index: 1;
  right: 16px;
  bottom: 12px;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.service-icon {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  place-items: center;
  color: var(--gold-deep);
  border: 1px solid var(--border);
  transform: rotate(45deg);
  transition: color .35s ease, background .35s ease;
}

.service-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
  transform: rotate(-45deg);
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.65rem;
}

.service-card p {
  margin-bottom: 15px;
  color: var(--muted);
  font-size: .89rem;
  line-height: 1.7;
}

.service-card:hover img {
  transform: scale(1.06);
}

.service-card:hover .service-icon {
  color: var(--black);
  background: var(--gold-bright);
}

.service-card:hover .service-card-media::after {
  opacity: 1;
}

.services-list {
  display: grid;
  gap: 92px;
}

.service-detail {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
  gap: clamp(42px, 7vw, 90px);
}

.service-detail:nth-child(even) .service-detail-media {
  order: 2;
}

.service-detail-media {
  position: relative;
  height: 520px;
  overflow: hidden;
}

.service-detail-media::after {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(228, 201, 132, .48);
  content: "";
  pointer-events: none;
}

.service-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.service-detail:hover .service-detail-media img {
  transform: scale(1.035);
}

.service-index {
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 1.4rem;
}

.benefits {
  display: grid;
  margin: 24px 0 28px;
  padding: 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
  list-style: none;
}

.benefits li {
  position: relative;
  padding-left: 22px;
  color: #625b50;
  font-size: .86rem;
}

.benefits li::before {
  position: absolute;
  top: .72em;
  left: 0;
  width: 8px;
  height: 1px;
  content: "";
  background: var(--gold-deep);
}

.pricing-note {
  color: var(--gold-deep) !important;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Features and values */
.feature-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px 52px;
}

.feature,
.value {
  position: relative;
  padding-top: 26px;
  border-top: 1px solid var(--border);
}

.feature::before,
.value::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 42px;
  height: 1px;
  content: "";
  background: var(--gold-bright);
  transition: width .5s var(--ease);
}

.feature:hover::before,
.value:hover::before {
  width: 100%;
}

.feature svg,
.value svg {
  width: 30px;
  height: 30px;
  margin-bottom: 22px;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
}

.feature h3,
.value h3 {
  margin-bottom: 9px;
  font-size: 1.55rem;
}

.feature p,
.value p {
  margin-bottom: 0;
  color: #bdb5a7;
  font-size: .88rem;
}

/* Parallax editorial panel */
.parallax {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 670px;
  align-items: center;
  color: var(--white);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.parallax::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: rgba(0, 0, 0, .62);
}

.parallax-content {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.parallax h2 {
  margin-bottom: 20px;
  font-size: clamp(3.4rem, 7vw, 7.4rem);
}

.parallax p {
  color: #e1dacd;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-style: italic;
}

.parallax .btn-group {
  justify-content: center;
}

/* Popular treatments */
.editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.editorial-card {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 520px;
  align-items: end;
  overflow: hidden;
  padding: 38px;
  color: var(--white);
}

.editorial-card:nth-child(2),
.editorial-card:nth-child(3) {
  min-height: 420px;
}

.editorial-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(0, 0, 0, .9), transparent 70%);
}

.editorial-card img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.editorial-card:hover img {
  transform: scale(1.055);
}

.editorial-card h3 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.editorial-card p {
  max-width: 480px;
  margin-bottom: 18px;
  color: #ddd5c7;
  font-size: .9rem;
}

.editorial-card .text-link {
  color: var(--gold-bright);
}

/* Testimonials */
.testimonial-shell {
  position: relative;
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.testimonial-viewport {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform .65s var(--ease);
}

.testimonial {
  min-width: 100%;
  padding: 6px 56px;
}

.stars {
  margin-bottom: 24px;
  color: var(--gold-bright);
  font-size: .85rem;
  letter-spacing: .5em;
}

.testimonial blockquote {
  margin: 0 0 26px;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  line-height: 1.4;
}

.testimonial cite {
  color: var(--gold-bright);
  font-size: .69rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 38px;
}

.slider-btn,
.lightbox-btn {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--gold-bright);
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  transition: color .3s ease, background .3s ease;
}

.slider-btn:hover,
.lightbox-btn:hover {
  color: var(--black);
  background: var(--gold-bright);
}

/* Gallery */
.gallery-preview {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.gallery-preview a {
  position: relative;
  min-height: 290px;
  overflow: hidden;
}

.gallery-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s var(--ease), filter .5s ease;
}

.gallery-preview a:hover img {
  filter: brightness(.72);
  transform: scale(1.07);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 25px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.filter-btn {
  position: relative;
  border: 0;
  padding: 13px 5px;
  color: #665f54;
  background: transparent;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
}

.filter-btn::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold-deep);
  transform: scaleX(0);
  transition: transform .3s ease;
}

.filter-btn.active {
  color: var(--gold-deep);
}

.filter-btn.active::after {
  transform: scaleX(1);
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 220px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.gallery-item {
  position: relative;
  min-width: 0;
  overflow: hidden;
  opacity: 1;
  cursor: zoom-in;
  transition: opacity .35s ease, transform .35s ease;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.is-hidden {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease), filter .45s ease;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--gold-bright);
  background: rgba(0, 0, 0, .45);
  content: "+";
  font-family: var(--serif);
  font-size: 2.6rem;
  opacity: 0;
  transition: opacity .35s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.lightbox {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 60px 90px;
  background: rgba(0, 0, 0, .95);
}

.lightbox.open {
  display: flex;
  animation: fadeIn .25s ease both;
}

.lightbox-figure {
  max-width: min(1100px, 90vw);
  max-height: 84vh;
  margin: 0;
  text-align: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
}

.lightbox-caption {
  margin-top: 12px;
  color: #d5cdbf;
  font-size: .78rem;
  letter-spacing: .08em;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
}

.lightbox-close {
  top: 20px;
  right: 24px;
}

.lightbox-prev {
  top: 50%;
  left: 24px;
}

.lightbox-next {
  top: 50%;
  right: 24px;
}

/* Contact */
.contact-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(50px, 8vw, 110px);
}

.contact-list {
  display: grid;
  margin-top: 40px;
  gap: 28px;
}

.contact-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 17px;
}

.contact-item svg {
  width: 24px;
  height: 24px;
  margin-top: 3px;
  fill: none;
  stroke: var(--gold-deep);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.contact-item strong {
  display: block;
  margin-bottom: 3px;
  color: #635b50;
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.contact-item a:hover {
  color: var(--gold-deep);
}

.contact-form-wrap {
  padding: clamp(26px, 5vw, 58px);
  color: var(--ivory);
  background: var(--charcoal);
  box-shadow: 0 30px 80px rgba(37, 29, 16, .12);
}

.contact-form-wrap h2 {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
}

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

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  color: #d6cdbf;
  font-size: .67rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 51px;
  border: 1px solid rgba(228, 201, 132, .25);
  border-radius: 0;
  padding: 12px 14px;
  color: var(--white);
  background: #0c0c0b;
  appearance: none;
  transition: border-color .25s ease, box-shadow .25s ease;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold-bright);
  box-shadow: 0 0 0 3px rgba(228, 201, 132, .08);
  outline: 0;
}

.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"] {
  border-color: #d48d7f;
}

.form-error {
  display: none;
  margin: 7px 0 0;
  color: #efb7aa;
  font-size: .73rem;
}

.form-error.show {
  display: block;
}

.form-status {
  min-height: 24px;
  margin-top: 15px;
  color: var(--gold-bright);
  font-size: .8rem;
}

.map-wrap {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: #ddd4c5;
}

.map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(.92) sepia(.14);
}

.map-copy {
  position: relative;
  z-index: 1;
  width: min(400px, calc(100% - 40px));
  margin: 80px 0 80px max(20px, calc((100% - 1180px) / 2));
  padding: 36px;
  color: var(--ivory);
  background: rgba(8, 8, 8, .94);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
}

.map-copy h2 {
  font-size: 2.4rem;
}

.map-copy p {
  color: #cfc6b7;
}

/* Calls to action */
.final-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--ivory);
  background: var(--black);
}

.final-cta::before {
  position: absolute;
  z-index: -1;
  top: -190px;
  left: 50%;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(228, 201, 132, .1);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.final-cta-inner {
  max-width: 850px;
  margin-inline: auto;
  text-align: center;
}

.final-cta-inner p {
  max-width: 660px;
  margin-inline: auto;
  color: #c9c1b3;
}

.final-cta .btn-group {
  justify-content: center;
}

/* Footer */
.site-footer {
  color: #c7bfb1;
  border-top: 1px solid var(--border);
  background: #050505;
}

.footer-main {
  display: grid;
  padding: 75px 0 55px;
  grid-template-columns: 1.45fr .7fr .9fr 1.15fr;
  gap: 45px;
}

.footer-logo {
  width: auto;
  height: 104px;
  margin-bottom: 22px;
  object-fit: contain;
  object-position: left center;
}

.footer-about p {
  max-width: 360px;
  font-size: .86rem;
}

.footer-title {
  margin: 18px 0 22px;
  color: var(--gold-bright);
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  font-size: .84rem;
  transition: color .25s ease, transform .25s ease;
}

.footer-links a:hover {
  color: var(--gold-bright);
  transform: translateX(3px);
}

.footer-contact address {
  font-size: .84rem;
  font-style: normal;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--gold-bright);
  border: 1px solid var(--border);
  transition: color .25s ease, background .25s ease;
}

.footer-social a:hover {
  color: var(--black);
  background: var(--gold-bright);
}

.footer-social svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.footer-bottom {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #8d877d;
  border-top: 1px solid rgba(228, 201, 132, .12);
  font-size: .72rem;
}

/* Fixed social controls */
.floating-socials {
  position: fixed;
  z-index: 900;
  right: 20px;
  bottom: 22px;
  display: grid;
  gap: 9px;
}

.floating-socials a {
  position: relative;
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background: #12110f;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .2);
  transition: transform .25s ease, background .25s ease;
}

.floating-socials a:hover {
  color: var(--black);
  background: var(--gold-bright);
  transform: translateY(-3px);
}

.floating-socials a.whatsapp {
  color: #fff;
  background: #1c8f50;
  animation: socialPulse 2.4s ease-out infinite;
}

.floating-socials svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Loader */
.page-loader {
  position: fixed;
  z-index: 5000;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--gold-bright);
  background: var(--black);
  transition: opacity .45s ease, visibility .45s ease;
}

.page-loader.is-hidden {
  visibility: hidden;
  opacity: 0;
}

.loader-inner {
  text-align: center;
}

.loader-logo {
  width: auto;
  height: 105px;
  margin: 0 auto 18px;
  object-fit: contain;
}

.loader-line {
  width: 120px;
  height: 1px;
  margin-inline: auto;
  overflow: hidden;
  background: rgba(228, 201, 132, .2);
}

.loader-line::after {
  display: block;
  width: 55%;
  height: 100%;
  content: "";
  background: var(--gold-bright);
  animation: loaderLine .85s ease-in-out infinite;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}

.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}

.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: .08s;
}

.delay-2 {
  transition-delay: .16s;
}

.delay-3 {
  transition-delay: .24s;
}

/* About page details */
.story-copy {
  max-width: 810px;
  margin-inline: auto;
  text-align: center;
}

.story-copy p {
  color: var(--muted);
}

.philosophy-quote {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.philosophy-quote blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4.5vw, 4.3rem);
  line-height: 1.25;
}

.wide-image {
  position: relative;
  height: 72vh;
  min-height: 520px;
  overflow: hidden;
}

.wide-image img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  transform: translateY(var(--parallax-shift, 0));
}

/* Keyframes */
@keyframes heroZoom {
  from { transform: scale(1.07); }
  to { transform: scale(1); }
}

@keyframes heroText {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes lineGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes scrollLine {
  0%, 100% { transform: scaleX(.35); transform-origin: left; }
  50% { transform: scaleX(1); transform-origin: right; }
}

@keyframes socialPulse {
  0%, 45%, 100% { box-shadow: 0 0 0 0 rgba(28, 143, 80, .35), 0 8px 25px rgba(0, 0, 0, .2); }
  70% { box-shadow: 0 0 0 12px rgba(28, 143, 80, 0), 0 8px 25px rgba(0, 0, 0, .2); }
}

@keyframes loaderLine {
  from { transform: translateX(-110%); }
  to { transform: translateX(220%); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Tablet */
@media (max-width: 1100px) {
  :root {
    --container: min(calc(100% - 40px), 940px);
  }

  .nav-menu {
    gap: 20px;
  }

  .site-logo {
    height: 66px;
  }

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

  .feature-grid,
  .values-grid {
    gap: 36px 30px;
  }

  .gallery-preview {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .footer-about {
    grid-column: 1 / -1;
  }
}

/* Mobile navigation breakpoint */
@media (max-width: 900px) {
  :root {
    --header-height: 78px;
  }

  .topbar {
    display: none;
  }

  .navbar {
    background: rgba(7, 7, 7, .9);
    backdrop-filter: blur(12px);
  }

  .site-logo,
  .site-header.is-scrolled .site-logo {
    height: 63px;
    max-width: 190px;
  }

  .menu-toggle {
    display: grid;
  }

  .nav-menu {
    position: fixed;
    z-index: 1;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: flex;
    max-height: calc(100svh - var(--header-height));
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    padding: 18px max(24px, calc((100vw - 700px) / 2)) 30px;
    border-top: 1px solid var(--border);
    background: rgba(7, 7, 7, .985);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity .3s ease, transform .3s ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-link {
    padding: 14px 3px;
    border-bottom: 1px solid rgba(228, 201, 132, .1);
    font-family: var(--serif);
    font-size: 1.35rem;
    letter-spacing: .03em;
    text-transform: none;
  }

  .nav-link::after {
    display: none;
  }

  .nav-book {
    width: 100%;
    margin-top: 18px;
  }

  .hero {
    min-height: 870px;
    padding-top: 152px;
  }

  .hero::after,
  .inner-hero::after {
    background: linear-gradient(90deg, rgba(2, 2, 2, .82), rgba(4, 4, 4, .42)), linear-gradient(0deg, rgba(0, 0, 0, .6), transparent 70%);
  }

  .inner-hero {
    min-height: 610px;
    padding-top: 150px;
  }

  .split,
  .service-detail,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .split.reverse .split-media,
  .service-detail:nth-child(even) .service-detail-media {
    order: 0;
  }

  .split-media,
  .split-media img {
    min-height: 0;
    height: 520px;
  }

  .service-detail-media {
    height: 500px;
  }

  .feature-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .parallax {
    background-attachment: scroll;
  }

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

@media (max-width: 720px) {
  :root {
    --container: calc(100% - 36px);
  }

  .section {
    padding: 82px 0;
  }

  .section-sm {
    padding: 60px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .hero-scroll {
    display: none;
  }

  .hero-brand {
    max-width: 310px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 35px 16px;
  }

  .service-card-media {
    height: 250px;
  }

  .editorial-grid {
    grid-template-columns: 1fr;
  }

  .editorial-card,
  .editorial-card:nth-child(2),
  .editorial-card:nth-child(3) {
    min-height: 480px;
  }

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

  .gallery-preview a {
    min-height: 240px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 210px;
  }

  .gallery-item.wide {
    grid-column: span 1;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-about {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
  }

  .map-copy {
    margin: 60px 18px;
  }
}

@media (max-width: 520px) {
  :root {
    --container: calc(100% - 30px);
    --header-height: 74px;
  }

  body {
    font-size: 15px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.25rem);
  }

  h2 {
    font-size: clamp(2.35rem, 12vw, 3.45rem);
  }

  .site-logo,
  .site-header.is-scrolled .site-logo {
    height: 58px;
    max-width: 170px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .hero {
    min-height: 820px;
    padding: 130px 0 58px;
  }

  .hero p {
    line-height: 1.65;
  }

  .inner-hero {
    min-height: 540px;
    padding: 130px 0 60px;
  }

  .inner-hero h1 {
    font-size: clamp(3rem, 14vw, 4.25rem);
  }

  .btn-group {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
    min-height: 50px;
    padding-inline: 16px;
  }

  .split-media,
  .split-media img {
    height: 430px;
  }

  .split-media::before {
    top: -10px;
    right: -8px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .service-card-media {
    height: 340px;
  }

  .service-detail-media {
    height: 390px;
  }

  .services-list {
    gap: 74px;
  }

  .benefits,
  .feature-grid,
  .values-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .parallax {
    min-height: 580px;
  }

  .editorial-card,
  .editorial-card:nth-child(2),
  .editorial-card:nth-child(3) {
    min-height: 400px;
    padding: 26px;
  }

  .testimonial {
    padding: 5px 5px;
  }

  .gallery-preview a {
    min-height: 190px;
  }

  .gallery-grid {
    display: block;
  }

  .gallery-item,
  .gallery-item.tall,
  .gallery-item.wide {
    width: 100%;
    height: 390px;
    margin-bottom: 12px;
  }

  .filter-bar {
    gap: 3px 15px;
  }

  .lightbox {
    padding: 64px 12px;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }

  .lightbox-prev,
  .lightbox-next {
    top: auto;
    bottom: 18px;
  }

  .contact-item {
    grid-template-columns: 36px 1fr;
  }

  .contact-form-wrap {
    margin-inline: -15px;
  }

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

  .footer-about {
    grid-column: auto;
  }

  .footer-logo {
    height: 94px;
  }

  .floating-socials {
    right: 10px;
    bottom: 12px;
    gap: 6px;
  }

  .floating-socials a {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 360px) {
  :root {
    --container: calc(100% - 24px);
  }

  .site-logo,
  .site-header.is-scrolled .site-logo {
    max-width: 145px;
  }

  .hero {
    min-height: 790px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .service-card-media {
    height: 310px;
  }

  .gallery-preview {
    grid-template-columns: 1fr;
  }
}

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

  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
  }

  .parallax {
    background-attachment: scroll;
  }
}