:root {
  --line: rgba(255, 255, 255, .11);
  --text: #f3eee7;
  --muted: #b9b0a5;
  --gold: #c9ab79;
  --gold-soft: #a7895c;
  --shadow: 0 24px 70px rgba(0, 0, 0, .35);
  --container: 1200px;
}

* {
  box-sizing: border-box
}

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

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(102, 69, 35, .18), transparent 30%),
    linear-gradient(180deg, #0b0b0c 0%, #120f0e 100%);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden
}

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

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

p {
  margin: 0 0 1rem;
  line-height: 1.78;
  color: var(--muted);
  font-size: 1rem
}

h1,
h2,
h3,
.brand-name,
.metric,
.eyebrow {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: .01em
}

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

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .05;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .1) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, .07) 0 1px, transparent 1px),
    radial-gradient(circle at 40% 70%, rgba(255, 255, 255, .08) 0 1px, transparent 1px);
  background-size: 18px 18px, 24px 24px, 20px 20px;
  mix-blend-mode: soft-light;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  transition: all .35s ease;
}

.site-header.scrolled {
  background: rgba(10, 10, 11, .74);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 52;
  min-width: 0
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .95rem;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .04);
  color: var(--gold)
}

.brand-name {
  font-size: 1.24rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.site-nav {
  display: flex;
  gap: 24px;
  align-items: center
}

.site-nav a {
  color: #ddd0c0;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  position: relative
}

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

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

.menu-toggle {
  display: none;
  position: relative;
  z-index: 52;
  border: none;
  background: none;
  color: inherit;
  padding: 4px;
  cursor: pointer
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: #f1e9dd;
  margin: 6px 0;
  transition: .3s ease
}

.section {
  position: relative;
  z-index: 2;
  padding: 96px 0
}

.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  position: relative;
  padding: 0;
  overflow: hidden
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(8, 8, 10, .14), rgba(8, 8, 10, .55) 45%, rgba(8, 8, 10, .94) 100%),
    linear-gradient(90deg, rgba(10, 7, 7, .8), rgba(10, 7, 7, .22) 55%, rgba(10, 7, 7, .72));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 112px;
  padding-bottom: 88px;
  max-width: 920px
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 1.35rem;
  font-weight: 600
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6.1rem);
  line-height: .96;
  margin: 0 0 22px;
  max-width: 920px
}

.hero-copy {
  max-width: 680px;
  font-size: 1.05rem;
  color: #d2c6b9
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .8rem
}

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

.button-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #140f0a;
  box-shadow: 0 12px 32px rgba(167, 137, 92, .25)
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .04);
  color: #f7f2eb
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: .72rem;
  color: #d2c6b9
}

.scroll-cue::before {
  content: "";
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, .55), transparent);
  margin: 0 auto 10px
}

.intro-band {
  padding-top: 20px
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.intro-card {
  background: rgba(255, 255, 255, .035);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px 22px;
  box-shadow: var(--shadow)
}

.metric {
  display: block;
  color: #f6efe5;
  font-size: 1.65rem;
  margin-bottom: 8px
}

.two-col {
  display: grid;
  grid-template-columns: .95fr 1.1fr;
  gap: 60px;
  align-items: start
}

.sticky-title {
  position: sticky;
  top: 100px
}

.sticky-title h2,
.section-heading h2,
.camille-content h2,
.contact-copy h2,
.summary-card h2,
.tab-content h2 {
  margin: 0 0 16px;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1
}

.story-copy p {
  font-size: 1.03rem
}

.section-camille-preview {
  background: linear-gradient(180deg, rgba(255, 255, 255, .02), transparent 35%, rgba(255, 255, 255, .02))
}

.camille-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 42px;
  align-items: center
}

.camille-image {
  position: relative
}

/* .camille-image::after {
  content: "";
  position: absolute;
  inset: auto -14px -18px 24px;
  height: 70%;
  border: 1px solid rgba(201, 171, 121, .32);
  border-radius: 28px;
  z-index: -1
} */

.camille-image img {
  border-radius: 28px;
  box-shadow: var(--shadow);
  min-height: 550px;
  object-fit: cover;
  background: #151311
}

.lead {
  font-size: 1.14rem;
  color: #e6ddd2
}

.quote-card {
  margin-top: 24px;
  padding: 22px 22px 18px;
  border-left: 2px solid var(--gold);
  background: rgba(255, 255, 255, .03);
  border-radius: 0 20px 20px 0
}

.quote-card p {
  color: #f0e6da;
  font-size: 1.04rem;
  font-family: "Cormorant Garamond", serif
}

.section-family .section-heading,
.section-clients .section-heading {
  max-width: 840px;
  margin-bottom: 30px
}

.family-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.family-card,
.client-card {
  background: rgba(255, 255, 255, .035);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .35s ease, border-color .35s ease
}

.family-card:hover,
.client-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 171, 121, .34)
}

.family-card img {
  height: 400px;
  width: 100%;
  object-fit: cover;
  background: #151311
}

.family-card-body {
  padding: 20px
}

.family-card h3,
.client-card h3 {
  margin: 0 0 4px;
  font-size: 1.88rem;
  line-height: 1.02
}

.family-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .76rem
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px
}

.client-visual {
  height: 230px;
  background:
    radial-gradient(circle at 30% 30%, rgba(201, 171, 121, .28), transparent 28%),
    linear-gradient(135deg, #211916, #0f0d0c 75%)
}

.client-v2 {
  background:
    radial-gradient(circle at 70% 25%, rgba(201, 171, 121, .22), transparent 26%),
    linear-gradient(135deg, #1b1513, #0d0b0a 75%)
}

.client-v3 {
  background:
    radial-gradient(circle at 45% 50%, rgba(201, 171, 121, .24), transparent 30%),
    linear-gradient(135deg, #221a16, #0e0c0b 78%)
}

.client-v4 {
  background:
    radial-gradient(circle at 55% 35%, rgba(201, 171, 121, .22), transparent 27%),
    linear-gradient(135deg, #181412, #0b0a09 75%)
}

.client-card div:last-child {
  padding: 18px
}

.client-card p {
  font-size: .95rem
}

.contact-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 30px;
  align-items: stretch
}

.contact-blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px
}

.contact-blocks div {
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px
}

.contact-blocks h3 {
  margin: 0 0 10px;
  font-size: 1.7rem
}

.contact-panel {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 520px;
  box-shadow: var(--shadow)
}

.contact-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.contact-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 10, 10, .08), rgba(12, 10, 10, .72) 65%, rgba(12, 10, 10, .92))
}

.contact-panel-overlay {
  position: absolute;
  inset: auto 24px 24px 24px;
  z-index: 2
}

.contact-panel-overlay p {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: #fff9f1;
  line-height: 1.06;
  margin-bottom: 18px
}

.footer {
  position: relative;
  z-index: 2;
  padding: 52px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a0a0a;
  text-align: center
}

.footer-inner p {
  margin: 6px 0;
  color: #cfc6bb;
  font-size: .84rem;
  letter-spacing: .08em
}

.footer-sub {
  color: #8e857a;
  font-style: italic;
  font-family: "Cormorant Garamond", serif
}

.profile-page .site-header {
  background: rgba(10, 10, 11, .72);
  backdrop-filter: blur(14px)
}

.profile-hero {
  min-height: 72vh;
  position: relative;
  display: grid;
  align-items: end;
  padding: 0 0 48px;
  overflow: hidden
}

.profile-hero-media,
.profile-hero-overlay {
  position: absolute;
  inset: 0
}

.profile-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%
}

.profile-hero-overlay {
  background:
    linear-gradient(180deg, rgba(10, 10, 11, .28), rgba(10, 10, 11, .72) 60%, rgba(10, 10, 11, .95)),
    linear-gradient(90deg, rgba(10, 7, 7, .76), rgba(10, 7, 7, .18) 56%, rgba(10, 7, 7, .66));
}

.profile-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px
}

.profile-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 24px;
  align-items: start
}

.tabs-panel {
  position: sticky;
  top: 92px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 16px
}

.tab-button {
  appearance: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 14px 16px;
  border-radius: 16px;
  background: transparent;
  color: #e6dbcf;
  font-family: "Inter", sans-serif;
  font-size: .98rem;
  transition: .25s ease
}

.tab-button:hover {
  background: rgba(255, 255, 255, .04)
}

.tab-button.active {
  background: linear-gradient(135deg, rgba(201, 171, 121, .24), rgba(201, 171, 121, .08));
  color: #fff3e1;
  border: 1px solid rgba(201, 171, 121, .18)
}

.tab-content-wrap {
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 30px 30px 14px;
  min-height: 520px;
  box-shadow: var(--shadow)
}

.tab-content {
  display: none;
  animation: fadeUp .35s ease
}

.tab-content.active {
  display: block
}

.summary-card {
  background: rgba(255, 255, 255, .035);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--shadow)
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* critical visibility control */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity
}

.reveal {
  transform: translateY(20px)
}

.reveal-left {
  transform: translateX(-20px)
}

.reveal-right {
  transform: translateX(20px)
}

.is-visible {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important
}

.no-js .reveal,
.no-js .reveal-left,
.no-js .reveal-right {
  opacity: 1;
  visibility: visible;
  transform: none
}

@media (max-width: 1100px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .family-grid {
    grid-template-columns: 1fr
  }

  .two-col {
    gap: 34px
  }

  .camille-layout {
    gap: 28px
  }
}

@media (max-width: 920px) {
  .menu-toggle {
    display: block
  }

  .site-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 72px;
    padding: 18px;
    background: rgba(11, 11, 12, .97);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 22px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .28s ease, transform .28s ease, visibility .28s ease;
  }

  body.menu-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto
  }

  body.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg)
  }

  body.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0
  }

  body.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg)
  }

  .two-col,
  .camille-layout,
  .contact-layout,
  .profile-layout {
    grid-template-columns: 1fr
  }

  .sticky-title,
  .tabs-panel {
    position: static
  }

  .tabs-panel {
    margin-bottom: 14px
  }

  .camille-image img {
    min-height: auto;
    height: auto;
    width: 100%
  }

  .contact-panel {
    min-height: 420px
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container))
  }

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

  .brand-mark {
    width: 36px;
    height: 36px;
    font-size: .84rem
  }

  .brand-name {
    font-size: 1rem;
    max-width: 190px
  }

  .hero-content,
  .profile-hero-content {
    padding-top: 98px;
    padding-bottom: 72px
  }

  .hero {
    min-height: 100dvh
  }

  .hero-title {
    font-size: clamp(2.4rem, 11vw, 3.6rem);
    line-height: .98
  }

  .hero-copy {
    font-size: .97rem;
    max-width: 100%
  }

  .eyebrow {
    font-size: 1.16rem
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch
  }

  .button {
    width: 100%
  }

  .scroll-cue {
    bottom: 16px;
    font-size: .66rem
  }

  .scroll-cue::before {
    height: 36px
  }

  .section {
    padding: 72px 0
  }

  .intro-grid,
  .clients-grid,
  .contact-blocks {
    grid-template-columns: 1fr
  }

  .intro-card {
    padding: 20px 18px
  }

  .metric {
    font-size: 1.45rem
  }

  .family-card img,
  .client-visual {
    height: 220px
  }

  .family-card h3,
  .client-card h3 {
    font-size: 1.64rem
  }

  .contact-panel-overlay p {
    font-size: 1.7rem
  }

  .tab-content-wrap {
    padding: 22px 18px 8px;
    min-height: auto
  }

  .tab-button {
    width: 100%
  }

  .profile-hero {
    min-height: 64vh;
    padding-bottom: 34px
  }

  .profile-layout {
    gap: 16px
  }

  .footer {
    padding: 42px 0 28px
  }
}