:root {
  --ink: #0f0d0b;
  --espresso: #1e1714;
  --charcoal: #2a2320;
  --plum: #4a2a3a;
  --rose: #c08878;
  --terracotta: #a06050;
  --cream: #faf6f2;
  --shell: #f3ebe5;
  --mist: #e2d6ce;
  --gold: #d4a574;
  --gold-soft: rgba(212, 165, 116, 0.15);
  --white: #ffffff;

  --shadow-sm: 0 2px 8px rgba(15, 13, 11, 0.04);
  --shadow-md: 0 8px 30px rgba(15, 13, 11, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 13, 11, 0.12);
  --shadow-xl: 0 32px 80px rgba(15, 13, 11, 0.18);
  --shadow-glow: 0 0 40px rgba(212, 165, 116, 0.15);

  --max: 1180px;
  --section-pad: clamp(54px, 7vh, 86px);
  --side-pad: clamp(20px, 5vw, 64px);
  --header-offset: 60px;
  --panel-min: calc(100svh - var(--header-offset));
  --gallery-slide-height: clamp(420px, 62svh, 620px);

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

h1, h2, h3, blockquote {
  font-family: var(--font-display);
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(68px, 9vw, 128px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.03em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(38px, 4.8vw, 68px);
  font-weight: 600;
  line-height: 0.95;
}

h3 {
  margin-bottom: 16px;
  font-size: 28px;
  font-weight: 500;
}

p {
  line-height: 1.8;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--rose);
}

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

.gold-rule {
  width: 60px;
  height: 1px;
  margin-bottom: 24px;
  background: var(--gold);
  transform-origin: left center;
}

.accent-line-v {
  width: 1px;
  height: 60px;
  margin-bottom: 20px;
  background: var(--gold);
  transform-origin: top center;
}

/* ===== SKIP LINK ===== */

.skip-link {
  position: fixed;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  padding: 12px 24px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  transition: top 200ms ease;
}

.skip-link:focus {
  top: 0;
}

/* ===== HEADER ===== */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 14px var(--side-pad);
  color: var(--white);
  transition: background 320ms ease, color 320ms ease, box-shadow 320ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(250, 246, 242, 0.72);
  box-shadow: 0 1px 0 rgba(212, 165, 116, 0.12);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
}

.site-header.is-dark-section {
  color: var(--white);
  background: rgba(15, 13, 11, 0.6);
  box-shadow: none;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
}

.site-header.is-dark-section .header-action {
  border-color: var(--gold);
  color: var(--gold);
}

.site-header.is-dark-section .header-action:hover {
  background: var(--gold);
  color: var(--ink);
}

.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--rose));
  transition: none;
  pointer-events: none;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
  text-decoration: none;
  color: inherit;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.brand-tagline {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  opacity: 0.85;
  transition: opacity 220ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 320ms ease;
}

.site-nav a:hover {
  opacity: 1;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-action {
  justify-self: end;
  padding: 10px 22px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
  transition: background 220ms ease, color 220ms ease, opacity 220ms ease;
}

.header-action:hover {
  background: var(--gold);
  color: var(--ink);
  opacity: 1;
}

.is-scrolled .header-action {
  border-color: var(--rose);
  color: var(--rose);
}

.is-scrolled .header-action:hover {
  background: var(--rose);
  color: var(--white);
}

.menu-toggle {
  display: none;
}

/* ===== HERO ===== */

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  will-change: transform;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(0deg, rgba(15, 13, 11, 0.72) 0%, rgba(15, 13, 11, 0.1) 48%),
    linear-gradient(90deg, rgba(15, 13, 11, 0.9) 0%, rgba(15, 13, 11, 0.56) 43%, rgba(15, 13, 11, 0.12) 76%),
    rgba(15, 13, 11, 0.08);
}

.hero-content {
  position: relative;
  width: min(740px, calc(100% - 40px));
  padding: var(--header-offset) 0 clamp(84px, 12vh, 132px) clamp(20px, 7vw, 96px);
}


.hero-content .eyebrow,
.hero-content .gold-rule,
.hero-content h1,
.hero-content .hero-copy,
.hero-actions .button,
.hero-preview-strip,
.hero-note span {
  opacity: 0;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-preview-strip {
  display: grid;
  width: min(420px, 100%);
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 26px;
}

.hero-preview-strip img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
}

.hero-note {
  position: absolute;
  left: clamp(20px, 7vw, 96px);
  bottom: 42px;
  display: flex;
  gap: 10px;
}

.hero-note span {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.scroll-indicator {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, transparent, var(--gold));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* ===== BUTTONS ===== */

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border: none;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 320ms ease, box-shadow 320ms ease, background 220ms ease;
}

.button-gold {
  position: relative;
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 16px 38px rgba(212, 165, 116, 0.25);
  overflow: hidden;
}

.button-gold::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 600ms ease;
  pointer-events: none;
}

.button-gold:hover::after {
  left: 120%;
}

.button-gold:hover {
  background: #c9a06a;
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  background: transparent;
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.button.small {
  min-height: 42px;
  padding: 10px 22px;
  font-size: 12px;
}

/* ===== SECTION UTILITIES ===== */

.section-pad {
  padding: var(--section-pad) var(--side-pad);
}

.intro,
.services,
.experience,
.testimonial,
.contact {
  min-height: var(--panel-min);
}

.section-heading {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto 52px;
}

.section-heading h2 {
  max-width: 780px;
}

/* ===== SECTION DIVIDER ===== */

.section-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 var(--side-pad);
}

.section-divider span {
  display: block;
  width: min(160px, 30vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  position: relative;
}

.section-divider span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 6px;
  height: 6px;
  background: var(--gold);
}

/* ===== ABOUT ===== */

.about {
  display: grid;
  width: min(var(--max), calc(100% - 40px));
  grid-template-columns: minmax(280px, 0.45fr) minmax(0, 0.55fr);
  gap: clamp(40px, 6vw, 80px);
  margin: 0 auto;
  align-items: center;
  background: var(--cream);
}

.about-portrait {
  position: relative;
}

.about-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
}

.about-frame {
  position: absolute;
  inset: 12px -12px -12px 12px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  pointer-events: none;
  z-index: -1;
}

.about-text h2 {
  color: var(--espresso);
  font-size: clamp(42px, 5vw, 72px);
}

.about-lead {
  font-size: 18px;
  color: rgba(15, 13, 11, 0.75);
}

.about-text p:not(.eyebrow):not(.about-lead) {
  color: rgba(15, 13, 11, 0.58);
  font-size: 16px;
}

.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.about-credentials span {
  padding: 10px 18px;
  border: 1px solid var(--mist);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose);
  background: var(--shell);
}

/* ===== INTRO ===== */

.intro {
  display: grid;
  width: min(var(--max), calc(100% - 40px));
  grid-template-columns: minmax(0, 0.55fr) minmax(280px, 0.45fr);
  gap: clamp(40px, 7vw, 96px);
  margin: 0 auto;
  align-items: center;
  background: var(--cream);
}

.intro-text {
  order: -1;
}

.intro-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
}

.intro h2 {
  color: var(--espresso);
}

.intro-text p:not(.eyebrow) {
  color: rgba(15, 13, 11, 0.6);
  font-size: 17px;
}

/* ===== SERVICES (dark section) ===== */

.services {
  position: relative;
  background: var(--ink);
  color: var(--white);
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

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

.services .section-heading h2 {
  color: var(--white);
}

/* ===== SERVICE SPREADS ===== */

.service-spreads {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  gap: clamp(60px, 8vh, 100px);
}

.service-spread {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  min-height: 50vh;
}

.service-spread.reverse {
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
}

.service-spread.reverse .service-spread-image {
  order: 1;
}

.service-spread.reverse .service-spread-text {
  order: 0;
}

.service-spread-image {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.service-spread-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 600ms ease;
}

.service-spread:hover .service-spread-image img {
  transform: scale(1.04);
}

.service-spread-text {
  padding: clamp(20px, 3vw, 40px) 0;
}

.service-number {
  display: block;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
}

.service-spread-text h3 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  margin-bottom: 16px;
}

.service-spread-text p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 1.8;
  max-width: 440px;
}

.service-spread-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: gap 280ms ease;
}

.service-spread-cta:hover {
  gap: 16px;
}

.service-spread-cta svg {
  flex-shrink: 0;
  transition: transform 280ms ease;
}

.service-spread-cta:hover svg {
  transform: translateX(4px);
}

/* ===== SERVICE MODAL ===== */

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 48px);
  pointer-events: none;
  visibility: hidden;
}

.service-modal.is-open {
  pointer-events: auto;
  visibility: visible;
}

.service-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 13, 11, 0.76);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.service-modal-panel {
  position: relative;
  display: grid;
  width: min(1040px, 100%);
  max-height: min(780px, calc(100svh - 40px));
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(22px, 4vw, 48px);
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid rgba(212, 165, 116, 0.28);
  border-radius: 22px;
  background: rgba(250, 246, 242, 0.96);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.46);
  overflow: auto;
}

.service-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(15, 13, 11, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  cursor: pointer;
}

.service-modal-close span {
  grid-area: 1 / 1;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.service-modal-close span:first-child {
  transform: rotate(45deg);
}

.service-modal-close span:last-child {
  transform: rotate(-45deg);
}

.service-modal-media {
  display: grid;
  gap: 14px;
}

.service-modal-media > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 32%;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.service-modal-thumbs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-modal-thumbs img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
}

.service-modal-copy {
  align-self: center;
  padding-right: 28px;
}

.service-modal-copy h2 {
  color: var(--espresso);
}

.service-modal-copy p {
  color: rgba(15, 13, 11, 0.66);
  font-size: 17px;
}

.service-modal-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}

.service-modal-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(15, 13, 11, 0.72);
  font-size: 15px;
  line-height: 1.6;
}

.service-modal-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

/* ===== LOOKBOOK ===== */

.lookbook {
  background: var(--shell);
  overflow: hidden;
}

.lookbook-header {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto clamp(32px, 4vh, 52px);
}

.lookbook-header h2 {
  color: var(--espresso);
  max-width: 600px;
}

.lookbook-viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.lookbook-viewport::-webkit-scrollbar {
  display: none;
}

.lookbook-track {
  display: flex;
  gap: 20px;
  padding: 0 var(--side-pad);
  will-change: transform;
}

.lookbook-panel {
  position: relative;
  flex: 0 0 clamp(280px, 38vw, 440px);
  overflow: hidden;
  border-radius: 4px;
  scroll-snap-align: start;
}

.lookbook-panel img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 600ms ease;
}

.lookbook-panel:hover img {
  transform: scale(1.05);
}

.lookbook-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 8px 16px;
  background: rgba(15, 13, 11, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lookbook-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--rose);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  opacity: 0.7;
}

/* ===== GALLERY ===== */

.gallery {
  position: relative;
  min-height: var(--panel-min);
  padding: var(--section-pad) 0;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}

.gallery-header {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto clamp(28px, 4vh, 48px);
  text-align: center;
}

.gallery-header h2 {
  color: var(--white);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-inner {
  position: relative;
  display: grid;
  width: min(var(--max), calc(100% - 40px));
  grid-template-columns: minmax(250px, 0.64fr) minmax(0, 1.36fr);
  gap: clamp(30px, 5vw, 64px);
  margin: 0 auto;
  align-items: center;
}

.gallery-copy {
  position: sticky;
  top: 120px;
  align-self: start;
}

.gallery-copy .eyebrow {
  color: var(--gold);
}

.gallery-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
  max-width: 360px;
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  margin-bottom: 20px;
}

.slider-btn {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: border-color 260ms ease, background 260ms ease, transform 180ms ease;
}

.slider-btn:hover {
  border-color: var(--gold);
  background: rgba(212, 165, 116, 0.1);
}

.slider-btn:active {
  transform: scale(0.92);
}

.slider-counter {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  min-width: 56px;
  text-align: center;
}

.slider-counter [data-slide-current] {
  color: var(--gold);
  font-weight: 500;
}

.gallery-profile {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px 12px 14px;
  border: 1px solid rgba(212, 165, 116, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  transition: background 260ms ease, border-color 260ms ease;
}

.gallery-profile:hover {
  background: rgba(212, 165, 116, 0.08);
  border-color: var(--gold);
}

.gallery-profile-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: rgba(212, 165, 116, 0.12);
  color: var(--gold);
  flex-shrink: 0;
}

.gallery-profile strong,
.gallery-profile small {
  display: block;
  line-height: 1.3;
}

.gallery-profile strong {
  color: var(--white);
  font-size: 14px;
}

.gallery-profile small {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
}

.gallery-slider {
  position: relative;
}

.slider-viewport {
  overflow-x: hidden;
  overflow-y: auto;
  max-height: calc(100svh - 120px);
  border-radius: 16px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
  scrollbar-width: thin;
  scrollbar-color: var(--gold) rgba(255, 255, 255, 0.08);
}

.slider-viewport::-webkit-scrollbar {
  width: 8px;
}

.slider-viewport::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
}

.slider-viewport::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: var(--gold);
}

.slider-track {
  display: flex;
}

.slider-slide {
  position: relative;
  flex: 0 0 100%;
  min-height: var(--gallery-slide-height);
  min-width: 0;
  background: var(--charcoal);
}

.slide-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  min-height: 100%;
  place-items: end start;
  overflow: hidden;
  background: var(--charcoal);
}

.slide-fallback img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}

.slide-fallback::after {
  position: absolute;
  inset: auto 0 0;
  height: 54%;
  content: "";
  background: linear-gradient(0deg, rgba(15, 13, 11, 0.82), transparent);
}

.slide-fallback span {
  position: relative;
  z-index: 1;
  margin: 0 0 28px 28px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.slider-slide .instagram-media,
.slider-slide iframe.instagram-media-rendered {
  position: relative !important;
  z-index: 1;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: var(--charcoal) !important;
}

.slider-slide iframe.instagram-media-rendered {
  min-height: var(--gallery-slide-height) !important;
}

.slider-slide.is-rendered .slide-fallback {
  display: none;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  padding: 0;
  transition: background 300ms ease, transform 300ms ease, width 300ms ease;
}

.slider-dot.is-active {
  width: 28px;
  border-radius: 4px;
  background: var(--gold);
}

.slider-progress {
  position: relative;
  height: 2px;
  margin-top: 12px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  overflow: hidden;
}

.slider-progress-bar {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--rose));
  border-radius: 2px;
  transform-origin: left center;
  transform: scaleX(0);
}

/* ===== EXPERIENCE ===== */

.experience {
  display: grid;
  width: min(var(--max), calc(100% - 40px));
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1.12fr);
  gap: clamp(40px, 7vw, 96px);
  margin: 0 auto;
  align-items: start;
  background: var(--shell);
}

.experience-copy h2 {
  color: var(--espresso);
}

.experience-copy p {
  color: rgba(15, 13, 11, 0.6);
  font-size: 17px;
}

.steps {
  position: relative;
  display: grid;
  gap: 0;
}

.steps-line {
  position: absolute;
  left: 24px;
  top: 36px;
  bottom: 36px;
  width: 1px;
  background: var(--mist);
  transform-origin: top center;
}

.step {
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--mist);
}

.step:last-child {
  border-bottom: none;
}

.step-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.step-content strong {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 6px;
}

.step-content p {
  margin: 0;
  color: rgba(15, 13, 11, 0.58);
  font-size: 15px;
}

/* ===== TESTIMONIAL ===== */

.testimonial {
  position: relative;
  color: var(--white);
  background: var(--espresso);
  text-align: center;
  overflow: hidden;
}

.testimonial::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}

.quote-mark {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(120px, 20vw, 220px);
  font-weight: 300;
  color: var(--gold);
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.quote-mark.open {
  top: clamp(20px, 4vw, 60px);
  left: clamp(20px, 6vw, 80px);
}

.quote-mark.close {
  bottom: clamp(20px, 4vw, 60px);
  right: clamp(20px, 6vw, 80px);
}

.testimonial blockquote {
  position: relative;
  width: min(820px, calc(100% - 40px));
  margin: 0 auto 28px;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 64px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.15;
}

.quote-attr {
  position: relative;
  margin: 0 0 20px;
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.quote-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  position: relative;
}

.quote-dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.4;
}

/* ===== FAQ ===== */

.faq {
  background: var(--cream);
}

.faq-header {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto clamp(28px, 4vh, 48px);
}

.faq-header h2 {
  color: var(--espresso);
  max-width: 700px;
}

.faq-list {
  width: min(780px, calc(100% - 40px));
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--mist);
}

.faq-item:first-child {
  border-top: 1px solid var(--mist);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 22px 0;
  border: none;
  background: transparent;
  color: var(--espresso);
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color 220ms ease;
}

.faq-question:hover {
  color: var(--rose);
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 320ms ease;
  color: var(--gold);
}

.faq-item.is-active .faq-icon {
  transform: rotate(180deg);
}

.faq-item.is-active .faq-question {
  color: var(--rose);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 400ms ease;
}

.faq-answer p {
  padding: 0 0 22px;
  color: rgba(15, 13, 11, 0.6);
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

/* ===== CONTACT ===== */

.contact {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--plum) 0%, var(--ink) 80%);
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}

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

.contact-text h2 {
  max-width: 700px;
  color: var(--white);
}

.contact-text p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 17px;
}

.contact-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold) !important;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 220ms ease;
}

.contact-location:hover {
  opacity: 0.75;
}

.contact-location svg {
  flex-shrink: 0;
  color: var(--gold);
}

.contact-response {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(212, 165, 116, 0.25);
  border-radius: 999px;
  color: var(--gold) !important;
  font-size: 13px !important;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.stat {
  text-align: center;
  padding: 20px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.stat-plus {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--gold);
}

.stat-label {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

.availability-tag {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 13px !important;
  font-style: italic;
}

.availability-tag span {
  color: var(--gold);
  font-weight: 700;
  font-style: normal;
}

/* ===== FLOATING CTA ===== */

.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 15;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 14px 14px 24px;
  border-radius: 999px;
  background: var(--espresso);
  box-shadow: var(--shadow-xl);
  color: var(--white);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.floating-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-cta p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

/* ===== FOOTER ===== */

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
  padding: 48px var(--side-pad);
  border-top: 1px solid rgba(212, 165, 116, 0.15);
  color: rgba(15, 13, 11, 0.5);
  font-size: 14px;
  background: var(--cream);
}

.site-footer p {
  margin: 0;
  line-height: 1.5;
}

.footer-brand strong {
  color: var(--espresso);
  font-size: 15px;
}

.footer-logo {
  display: block;
  width: 170px;
  height: auto;
  margin-bottom: 10px;
}

.footer-tagline {
  margin-top: 4px !important;
  font-size: 13px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-nav a {
  transition: color 220ms ease;
}

.footer-nav a:hover {
  color: var(--rose);
}

.footer-social {
  display: grid;
  gap: 6px;
  text-align: right;
}

.footer-social a {
  display: block;
  font-weight: 700;
  color: var(--rose);
  transition: color 220ms ease;
}

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

.footer-year {
  margin-top: 4px !important;
  font-size: 13px;
}

.footer-seo {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 12px;
  color: rgba(15, 13, 11, 0.35);
  padding-top: 20px;
  border-top: 1px solid rgba(212, 165, 116, 0.08);
}

/* ===== RESPONSIVE 980px ===== */

@media (max-width: 980px) {
  :root {
    --panel-min: auto;
    --gallery-slide-height: clamp(340px, 50svh, 470px);
  }

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

  .site-nav,
  .header-action {
    display: none;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 40px;
    height: 40px;
    padding: 8px 4px;
    border: none;
    color: inherit;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    height: 1.5px;
    background: currentColor;
    border-radius: 1px;
    transition: transform 320ms cubic-bezier(0.4, 0, 0.2, 1), opacity 320ms ease;
    transform-origin: center;
  }

  .menu-toggle span:first-child {
    width: 24px;
    align-self: flex-end;
  }

  .menu-toggle span:last-child {
    width: 16px;
    align-self: flex-end;
  }

  .site-header.is-open .menu-toggle span:first-child {
    width: 24px;
    transform: rotate(45deg) translate(3px, 3px);
  }

  .site-header.is-open .menu-toggle span:last-child {
    width: 24px;
    transform: rotate(-45deg) translate(3px, -3px);
  }

  .site-header.is-open .site-nav {
    position: absolute;
    top: 80px;
    right: 20px;
    left: 20px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(212, 165, 116, 0.12);
    border-radius: 16px;
    background: rgba(250, 246, 242, 0.95);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .site-header.is-open .site-nav a {
    padding: 16px;
    color: var(--ink);
  }

  .site-header.is-open .site-nav a::after {
    display: none;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-portrait {
    max-width: 400px;
    margin: 0 auto;
  }

  .intro {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .intro-text {
    order: 0;
  }

  .intro-visual {
    max-width: 400px;
    margin: 0 auto;
  }

  .service-spread,
  .service-spread.reverse {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: auto;
  }

  .service-spread.reverse .service-spread-image {
    order: 0;
  }

  .service-spread.reverse .service-spread-text {
    order: 0;
  }

  .service-spread-image {
    max-width: 500px;
  }

  .experience,
  .contact {
    grid-template-columns: 1fr;
  }

  .service-modal-panel {
    grid-template-columns: 1fr;
  }

  .service-modal-copy {
    order: -1;
    padding-right: 0;
  }

  .gallery-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-copy {
    position: static;
    text-align: center;
  }

  .gallery-copy > p:not(.eyebrow) {
    max-width: 680px;
    margin-right: auto;
    margin-left: auto;
  }

  .slider-controls {
    justify-content: center;
    margin-top: 18px;
    margin-bottom: 16px;
  }

  .gallery-profile {
    margin: 0 auto;
  }

  .lookbook-panel {
    flex: 0 0 clamp(240px, 60vw, 340px);
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .floating-cta {
    display: none;
  }

  .footer-logo {
    margin-inline: auto;
  }

  .footer-nav {
    justify-content: center;
  }

  .footer-social {
    text-align: center;
  }

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

/* ===== RESPONSIVE 660px ===== */

@media (max-width: 660px) {
  :root {
    --section-pad: clamp(46px, 8vh, 70px);
    --gallery-slide-height: clamp(300px, 43svh, 390px);
  }

  .site-header {
    padding: 14px 18px;
  }

  .brand {
    min-width: 0;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-scrim {
    background:
      linear-gradient(0deg, rgba(15, 13, 11, 0.84) 0%, rgba(15, 13, 11, 0.28) 58%),
      linear-gradient(90deg, rgba(15, 13, 11, 0.82) 0%, rgba(15, 13, 11, 0.35) 100%),
      rgba(15, 13, 11, 0.2);
  }

  .hero-content {
    width: auto;
    padding: 0 20px 70px;
  }

  h1 {
    font-size: clamp(48px, 12vw, 66px);
  }

  h2 {
    font-size: clamp(32px, 8vw, 40px);
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .hero-copy {
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-actions .button {
    min-height: 54px;
  }

  .button {
    width: 100%;
  }

  .hero-note {
    left: 20px;
    right: 20px;
    bottom: 24px;
    flex-wrap: wrap;
  }

  .scroll-indicator {
    display: none;
  }

  .about-frame {
    inset: 8px -8px -8px 8px;
  }

  .about-credentials {
    gap: 8px;
  }

  .about-credentials span {
    padding: 8px 14px;
    font-size: 11px;
  }

  .service-spread-text h3 {
    font-size: clamp(28px, 7vw, 36px);
  }

  .service-number {
    font-size: 48px;
  }

  .lookbook-panel {
    flex: 0 0 75vw;
  }

  .lookbook-hint {
    font-size: 12px;
  }

  .faq-question {
    font-size: clamp(16px, 4vw, 19px);
    padding: 18px 0;
  }

  .service-modal {
    padding: 12px;
  }

  .service-modal-panel {
    max-height: calc(100svh - 24px);
    padding: 14px;
    border-radius: 18px;
  }

  .service-modal-media > img {
    aspect-ratio: 9 / 10;
  }

  .service-modal-thumbs {
    gap: 10px;
  }

  .service-modal-copy h2 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .gallery {
    padding-right: 0;
    padding-left: 0;
  }

  .gallery-header {
    width: min(100% - 32px, var(--max));
  }

  .gallery-inner {
    width: min(100% - 32px, var(--max));
    gap: 16px;
  }

  .gallery-copy .eyebrow {
    margin-bottom: 10px;
    font-size: 10px;
  }

  .gallery-copy > p:not(.eyebrow) {
    display: none;
  }

  .slider-controls {
    margin-top: 14px;
    margin-bottom: 14px;
  }

  .slider-btn {
    width: 42px;
    height: 42px;
  }

  .gallery-profile {
    padding: 10px 16px 10px 12px;
  }

  .slider-viewport {
    border-radius: 12px;
    max-height: calc(100svh - 96px);
  }

  .slider-dots {
    margin-top: 12px;
  }

  .slider-progress {
    margin-top: 10px;
  }

  .slide-fallback span {
    margin: 0 0 20px 20px;
    padding: 10px 14px;
    font-size: 11px;
  }

  .steps-line {
    left: 18px;
  }

  .step {
    grid-template-columns: 42px 1fr;
    column-gap: 16px;
  }

  .step-num {
    font-size: 32px;
  }

  .hero-preview-strip {
    width: min(310px, 100%);
    gap: 8px;
    margin-top: 26px;
  }

  .stats-bar {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .stat {
    padding: 16px 8px;
  }

  .stat-number {
    font-size: 32px;
  }

  .floating-cta {
    left: 16px;
    right: 16px;
    bottom: 16px;
    justify-content: center;
  }

  .site-footer {
    gap: 20px;
    padding: 36px 20px;
  }

  .footer-nav {
    gap: 16px;
  }
}
