:root {
  --obsidian: #121212;
  --charcoal: #181818;
  --ink: #080808;
  --white: #ffffff;
  --muted: #b8b1a1;
  --gold: #d4af37;
  --gold-soft: #f3d982;
  --emerald: #0f7a53;
  --brand-pink: #e91d7d;
  --brand-wine: #a61f67;
  --line: rgba(255, 255, 255, 0.13);
  --glass: rgba(18, 18, 18, 0.64);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--obsidian);
  color: var(--white);
  font-family: var(--sans);
  overflow-x: hidden;
}

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

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

.site-header {
  align-items: center;
  backdrop-filter: blur(22px);
  background: rgba(10, 10, 10, 0.7);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: auto minmax(220px, 420px) 1fr auto;
  left: 0;
  padding: 16px clamp(18px, 4vw, 58px);
  position: fixed;
  right: 0;
  top: 0;
  transition: padding 0.25s ease, background 0.25s ease;
  z-index: 20;
}

.site-header.scrolled {
  background: rgba(8, 8, 8, 0.9);
  padding-bottom: 11px;
  padding-top: 11px;
}

.brand {
  align-items: center;
  display: flex;
  gap: 10px;
  min-width: max-content;
}

.brand img {
  filter: drop-shadow(0 10px 22px rgba(233, 29, 125, 0.32));
  height: 48px;
  object-fit: contain;
  width: 54px;
}

.brand span {
  display: grid;
  gap: 1px;
}

.brand strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 700;
  line-height: 0.92;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.search {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 999px;
  display: flex;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
}

.search span {
  color: var(--gold);
  font-size: 22px;
}

.search input {
  background: transparent;
  border: 0;
  color: var(--white);
  font: 500 14px var(--sans);
  min-width: 0;
  outline: 0;
  width: 100%;
}

.search input::placeholder {
  color: rgba(255, 255, 255, 0.56);
}

.nav-tabs {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: center;
}

.nav-tabs a,
.nav-dropdown button {
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 700;
  padding: 11px 13px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown button {
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--sans);
}

.nav-tabs a:hover,
.nav-tabs a:focus-visible,
.nav-dropdown button:hover,
.nav-dropdown button:focus-visible,
.nav-dropdown.open button {
  background: rgba(233, 29, 125, 0.14);
  color: var(--gold-soft);
}

.nav-tabs .nav-earn {
  background: linear-gradient(135deg, var(--gold), #ffeaa1 48%, var(--brand-pink));
  color: #111;
}

.nav-tabs .nav-earn:hover,
.nav-tabs .nav-earn:focus-visible {
  color: #111;
  box-shadow: 0 12px 30px rgba(233, 29, 125, 0.22);
}

.dropdown-menu {
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
  display: grid;
  gap: 0;
  left: 50%;
  max-height: min(72vh, 560px);
  min-width: 320px;
  opacity: 0;
  overflow-y: auto;
  padding: 16px 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 14px);
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 40;
}

.dropdown-menu::before {
  content: "";
  height: 16px;
  left: 0;
  position: absolute;
  right: 0;
  top: -16px;
}

.dropdown-menu a {
  border-radius: 0;
  color: #494b46;
  font-family: var(--sans);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.35;
  padding: 11px 24px;
  transition: background 0.18s ease, color 0.18s ease;
  white-space: normal;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: rgba(233, 29, 125, 0.08);
  color: var(--brand-wine);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.header-cta,
.btn,
.reserve-btn,
.mini-book {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-cta {
  background: linear-gradient(135deg, var(--gold), #fff0ad 48%, var(--brand-pink));
  color: #15120a;
  min-height: 42px;
  padding: 0 18px;
}

.hero {
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.hero-slider {
  inset: 0;
  position: absolute;
}

.hero-slider img {
  animation: luxuryFade 18s infinite;
  height: 100%;
  inset: 0;
  object-fit: cover;
  opacity: 0;
  position: absolute;
  transform: scale(1.06);
  width: 100%;
}

.hero-slider img:nth-child(2) {
  animation-delay: 6s;
}

.hero-slider img:nth-child(3) {
  animation-delay: 12s;
}

@keyframes luxuryFade {
  0%,
  100% {
    opacity: 0;
    transform: scale(1.06);
  }
  12%,
  32% {
    opacity: 1;
    transform: scale(1);
  }
  44% {
    opacity: 0;
  }
}

.hero-overlay {
  background:
    radial-gradient(circle at 16% 24%, rgba(233, 29, 125, 0.22), transparent 28%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.58), rgba(5, 5, 5, 0.18)),
    linear-gradient(0deg, var(--obsidian) 0%, rgba(18, 18, 18, 0) 32%);
  inset: 0;
  position: absolute;
}

.hero-content {
  display: grid;
  gap: 24px;
  max-width: 780px;
  padding: 28vh clamp(22px, 7vw, 92px) 14vh;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  margin: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0;
  margin: 0;
}

h1 {
  font-size: clamp(56px, 8vw, 116px);
  line-height: 0.9;
}

h2 {
  font-size: clamp(38px, 5vw, 70px);
  line-height: 0.95;
}

h3 {
  font-size: 31px;
  line-height: 1;
}

.hero-content p:not(.eyebrow),
.split-section p,
.site-footer p,
.description,
.package-grid p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
}

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

.btn {
  min-height: 54px;
  padding: 0 24px;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #ffeaa1 48%, var(--brand-pink));
  box-shadow: 0 18px 45px rgba(212, 175, 55, 0.22);
  color: #111;
}

.btn-glass {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid var(--line);
  color: var(--white);
}

.btn:hover,
.header-cta:hover,
.reserve-btn:hover,
.mini-book:hover {
  transform: translateY(-2px);
}

.trust-strip {
  background: var(--ink);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
}

.trust-strip div {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  display: grid;
  gap: 6px;
  min-height: 112px;
  padding: 26px clamp(16px, 3vw, 34px);
}

.trust-strip strong {
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 30px;
}

.trust-strip span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 700;
}

.trust-strip a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 800;
}

.section {
  padding: clamp(72px, 9vw, 130px) clamp(18px, 5vw, 76px);
}

.section-heading {
  align-items: end;
  display: flex;
  gap: 22px;
  justify-content: space-between;
  margin-bottom: 34px;
}

.section-heading div,
.section-heading {
  min-width: 0;
}

.section-heading a {
  border-bottom: 1px solid var(--gold);
  color: var(--gold-soft);
  font-weight: 800;
  padding-bottom: 6px;
  white-space: nowrap;
}

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

.portfolio-grid article {
  aspect-ratio: 0.78;
  background: var(--charcoal);
  overflow: hidden;
  position: relative;
}

.portfolio-grid img,
.mini-card img,
.split-section img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
  width: 100%;
}

.portfolio-grid article::after {
  background: linear-gradient(180deg, transparent 36%, rgba(0, 0, 0, 0.86));
  content: "";
  inset: 0;
  position: absolute;
}

.portfolio-grid article:hover img,
.mini-card:hover img,
.split-section:hover img {
  transform: scale(1.055);
}

.portfolio-grid span {
  background: rgba(212, 175, 55, 0.94);
  border-radius: 999px;
  color: #121212;
  font-size: 12px;
  font-weight: 900;
  left: 18px;
  padding: 9px 13px;
  position: absolute;
  top: 18px;
  z-index: 1;
}

.portfolio-grid h3 {
  bottom: 24px;
  left: 22px;
  position: absolute;
  right: 22px;
  z-index: 1;
}

.story-categories {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
    #101010;
}

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

.story-grid article {
  background: #171717;
  border: 1px solid var(--line);
  min-height: 520px;
  overflow: hidden;
  position: relative;
}

.story-grid img {
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition: opacity 0.25s ease, transform 0.55s ease;
  width: 100%;
}

.story-grid article::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 20%, rgba(0, 0, 0, 0.92));
  content: "";
  inset: 0;
  position: absolute;
}

.story-grid article:hover img {
  opacity: 1;
  transform: scale(1.055);
}

.story-grid article > div {
  bottom: 0;
  display: grid;
  gap: 10px;
  left: 0;
  padding: 24px;
  position: absolute;
  right: 0;
  z-index: 1;
}

.story-grid span,
.award-row span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-grid h3 {
  font-size: 34px;
}

.story-grid p,
.studio-copy p,
.concierge-panel p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.studio-note {
  align-items: center;
  background: #080808;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
}

.studio-copy {
  display: grid;
  gap: 22px;
}

.award-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.award-row span {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 999px;
  padding: 11px 13px;
}

.founder-link {
  color: var(--gold-soft);
  font-weight: 900;
  width: max-content;
}

.studio-media {
  display: grid;
  gap: 0;
  position: relative;
}

.studio-media img {
  aspect-ratio: 1.18;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.studio-media > div {
  background: rgba(18, 18, 18, 0.9);
  border: 1px solid var(--line);
  bottom: 18px;
  display: grid;
  gap: 8px;
  left: 18px;
  max-width: 390px;
  padding: 18px;
  position: absolute;
}

.studio-media strong {
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 28px;
}

.studio-media span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.55;
}

.products {
  background: #0d0d0d;
}

.product-layout {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
}

.product-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--line);
  display: grid;
}

.featured-product {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
}

.gallery {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.main-image {
  aspect-ratio: 0.85;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  cursor: zoom-in;
  overflow: hidden;
  position: relative;
}

.main-image img {
  height: 100%;
  object-fit: cover;
  transition: opacity 0.18s ease, transform 0.55s ease;
  width: 100%;
}

.main-image.zooming img {
  opacity: 0;
}

.zoom-hint {
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  bottom: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
  left: 14px;
  padding: 9px 12px;
  position: absolute;
}

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

.thumbs button {
  aspect-ratio: 1;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  padding: 0;
}

.thumbs button.active {
  border-color: var(--gold);
}

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

.product-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: clamp(24px, 4vw, 44px);
}

.rating {
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
}

.rating span {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 700;
  margin-left: 8px;
}

.size-block {
  display: grid;
  gap: 14px;
}

.size-block > div:first-child {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.size-block strong {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.size-block a {
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 800;
}

.sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sizes button {
  align-items: center;
  aspect-ratio: 1;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-width: 46px;
  padding: 0;
  transition: border 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.sizes button.selected {
  background: var(--gold);
  border-color: var(--gold);
  color: #111;
}

.sizes.compact button {
  min-width: 34px;
  font-size: 12px;
}

.pricing {
  align-items: baseline;
  display: flex;
  gap: 9px;
}

.pricing strong {
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 44px;
}

.pricing span {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 700;
}

.addon {
  align-items: center;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  display: flex;
  gap: 12px;
  padding: 15px;
}

.addon input {
  accent-color: var(--gold);
  height: 18px;
  width: 18px;
}

.addon span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.reserve-btn {
  background: linear-gradient(135deg, var(--emerald), #11b77a 54%, var(--brand-pink));
  box-shadow: 0 18px 42px rgba(233, 29, 125, 0.2);
  min-height: 58px;
  width: 100%;
}

.call-link {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.mini-products {
  display: grid;
  gap: 18px;
}

.mini-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 42% 1fr;
  overflow: hidden;
}

.mini-card > div {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 22px;
}

.mini-card h3 {
  font-size: 28px;
}

.mini-card p {
  color: var(--gold-soft);
  font-weight: 800;
  margin: 0;
}

.mini-book {
  background: rgba(212, 175, 55, 0.13);
  border: 1px solid rgba(212, 175, 55, 0.5);
  color: var(--gold-soft);
  min-height: 44px;
  padding: 0 16px;
}

.split-section {
  align-items: center;
  display: grid;
  gap: 46px;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
}

.split-section > div {
  display: grid;
  gap: 22px;
}

.split-section img {
  aspect-ratio: 1.35;
  min-height: 520px;
}

.packages {
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0)),
    var(--ink);
}

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

.package-grid article {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  display: grid;
  gap: 18px;
  min-height: 330px;
  padding: 30px;
}

.package-grid .highlight {
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.2), rgba(166, 31, 103, 0.22));
  border-color: rgba(212, 175, 55, 0.48);
}

.package-grid span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.package-grid strong {
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 30px;
  margin-top: auto;
}

.package-grid a {
  color: var(--gold-soft);
  font-size: 14px;
  font-weight: 900;
}

.concierge {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.94), rgba(8, 8, 8, 0.74)),
    url("https://images.unsplash.com/photo-1508214751196-bcfd4ca60f91?auto=format&fit=crop&w=1600&q=90") center / cover;
}

.concierge-panel {
  align-items: center;
  background: rgba(18, 18, 18, 0.78);
  border: 1px solid var(--line);
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  padding: clamp(24px, 5vw, 52px);
}

.concierge-panel > div {
  display: grid;
  gap: 20px;
}

.booking-form {
  display: grid;
  gap: 14px;
}

.booking-form label {
  display: grid;
  gap: 8px;
}

.booking-form span {
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select {
  appearance: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--white);
  font: 700 15px var(--sans);
  min-height: 54px;
  outline: 0;
  padding: 0 16px;
}

.booking-form select option {
  background: #151515;
  color: var(--white);
}

.booking-form input::placeholder {
  color: rgba(255, 255, 255, 0.44);
}

.booking-form button {
  background: linear-gradient(135deg, var(--gold), #ffeaa1 48%, var(--brand-pink));
  border: 0;
  border-radius: 999px;
  color: #111;
  cursor: pointer;
  font: 900 15px var(--sans);
  min-height: 58px;
  margin-top: 6px;
}

.site-footer {
  align-items: center;
  background: #080808;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 34px clamp(18px, 5vw, 76px);
}

.footer-brand {
  align-items: center;
  display: flex;
  gap: 12px;
}

.footer-brand img {
  filter: drop-shadow(0 12px 24px rgba(233, 29, 125, 0.28));
  height: 62px;
  object-fit: contain;
  width: 68px;
}

.footer-brand strong {
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 30px;
}

.site-footer > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 800;
}

.footer-meta {
  color: rgba(255, 255, 255, 0.62);
  flex-basis: 100%;
  font-size: 13px;
  font-weight: 800;
  text-align: right;
}

.social-icon {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  transition: background 0.2s ease, border 0.2s ease, transform 0.2s ease;
  width: 42px;
}

.social-icon svg {
  fill: currentColor;
  height: 20px;
  width: 20px;
}

.social-icon:hover,
.social-icon:focus-visible {
  background: rgba(233, 29, 125, 0.16);
  border-color: rgba(233, 29, 125, 0.48);
  transform: translateY(-2px);
}

.floating-contact {
  bottom: 94px;
  display: grid;
  gap: 14px;
  position: fixed;
  right: 18px;
  z-index: 60;
}

.floating-contact a {
  align-items: center;
  border-radius: 50%;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
  display: flex;
  height: 62px;
  justify-content: center;
  transition: transform 0.2s ease;
  width: 62px;
}

.floating-contact a:hover,
.floating-contact a:focus-visible {
  transform: translateY(-3px);
}

.floating-contact svg {
  fill: white;
  height: 31px;
  width: 31px;
}

.floating-call {
  background: var(--brand-pink);
}

.floating-whatsapp {
  background: #008b0a;
}

.mobile-booking-bar {
  display: none;
}

.founder-page {
  background: #090909;
}

.founder-header {
  position: sticky;
}

.founder-nav {
  justify-content: flex-end;
}

.founder-hero {
  align-items: center;
  background:
    radial-gradient(circle at 72% 30%, rgba(233, 29, 125, 0.28), transparent 28%),
    linear-gradient(135deg, rgba(18, 18, 18, 0.94), rgba(8, 8, 8, 0.98)),
    url("https://images.unsplash.com/photo-1483985988355-763728e1935b?auto=format&fit=crop&w=1800&q=90") center / cover;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.65fr);
  min-height: 92vh;
  padding: clamp(120px, 15vw, 180px) clamp(18px, 6vw, 92px) 80px;
}

.founder-copy {
  display: grid;
  gap: 24px;
  max-width: 900px;
}

.founder-copy h1 {
  font-size: clamp(72px, 11vw, 150px);
}

.founder-copy p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.8;
  margin: 0;
  max-width: 760px;
}

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

.founder-portrait {
  align-items: center;
  aspect-ratio: 0.82;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at 50% 34%, rgba(233, 29, 125, 0.36), transparent 34%);
  border: 1px solid rgba(212, 175, 55, 0.34);
  display: grid;
  justify-items: center;
  padding: 34px;
  position: relative;
}

.founder-portrait img {
  filter: drop-shadow(0 26px 42px rgba(233, 29, 125, 0.34));
  max-width: 78%;
}

.founder-portrait.photo {
  overflow: hidden;
  padding: 0;
}

.founder-portrait.photo img {
  filter: none;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.founder-portrait span {
  bottom: 26px;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 54px;
  position: absolute;
}

.founder-story {
  align-items: start;
  background: #101010;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
}

.founder-text {
  display: grid;
  gap: 20px;
}

.founder-text p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.85;
  margin: 0;
}

.founder-metrics {
  background: #080808;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  padding-bottom: 0;
  padding-top: 0;
}

.founder-metrics article {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  display: grid;
  gap: 12px;
  min-height: 260px;
  padding: clamp(24px, 4vw, 42px);
}

.founder-metrics span,
.media-grid span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.founder-metrics strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.95;
}

.founder-metrics p,
.media-grid p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.media-coverage {
  background:
    linear-gradient(180deg, rgba(233, 29, 125, 0.09), rgba(233, 29, 125, 0)),
    #121212;
}

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

.media-grid a {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  display: grid;
  gap: 16px;
  min-height: 280px;
  padding: 28px;
  transition: border 0.2s ease, transform 0.2s ease;
}

.media-grid a:hover,
.media-grid a:focus-visible {
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
}

.media-grid h3 {
  font-size: 30px;
}

.rental-page,
.earn-page {
  background: #0b0b0b;
}

.rental-hero,
.earn-hero {
  align-items: center;
  background:
    radial-gradient(circle at 75% 25%, rgba(233, 29, 125, 0.22), transparent 28%),
    linear-gradient(90deg, rgba(8, 8, 8, 0.95), rgba(8, 8, 8, 0.66)),
    url("https://images.unsplash.com/photo-1483985988355-763728e1935b?auto=format&fit=crop&w=1800&q=90") center / cover;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.58fr);
  min-height: 90vh;
  padding: clamp(140px, 16vw, 190px) clamp(18px, 6vw, 92px) 80px;
}

.earn-hero {
  background:
    radial-gradient(circle at 74% 24%, rgba(212, 175, 55, 0.18), transparent 30%),
    linear-gradient(90deg, rgba(8, 8, 8, 0.95), rgba(8, 8, 8, 0.58)),
    url("https://images.unsplash.com/photo-1496747611176-843222e1e57c?auto=format&fit=crop&w=1800&q=90") center / cover;
  grid-template-columns: minmax(0, 0.82fr);
}

.rental-hero h1,
.earn-hero h1 {
  font-size: clamp(54px, 8vw, 112px);
  line-height: 0.92;
}

.rental-hero p,
.earn-hero p,
.earn-preview p,
.list-dress p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.8;
  margin: 18px 0 0;
  max-width: 760px;
}

.rental-finder {
  background: rgba(18, 18, 18, 0.82);
  border: 1px solid rgba(212, 175, 55, 0.28);
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
}

.rental-finder h2 {
  font-size: 34px;
  line-height: 1;
  margin-bottom: 8px;
}

.rental-finder label {
  display: grid;
  gap: 8px;
}

.rental-finder span {
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rental-finder input,
.rental-finder select {
  appearance: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  color: var(--white);
  font: 800 15px var(--sans);
  min-height: 54px;
  outline: 0;
  padding: 0 15px;
}

.rental-finder select option {
  background: #151515;
  color: white;
}

.rental-finder input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.rental-finder button {
  background: linear-gradient(135deg, var(--gold), #ffeaa1 48%, var(--brand-pink));
  border: 0;
  border-radius: 999px;
  color: #111;
  cursor: pointer;
  font: 900 15px var(--sans);
  min-height: 58px;
  margin-top: 6px;
}

.category-tiles {
  background: #101010;
}

.rental-tile-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
}

.rental-tile-grid a {
  aspect-ratio: 0.82;
  background: #171717;
  border: 1px solid var(--line);
  display: block;
  overflow: hidden;
  position: relative;
}

.rental-tile-grid img {
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition: opacity 0.2s ease, transform 0.55s ease;
  width: 100%;
}

.rental-tile-grid a::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 30%, rgba(0, 0, 0, 0.9));
  content: "";
  inset: 0;
  position: absolute;
}

.rental-tile-grid a:hover img {
  opacity: 1;
  transform: scale(1.055);
}

.rental-tile-grid span {
  bottom: 22px;
  color: white;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  left: 22px;
  line-height: 0.95;
  position: absolute;
  right: 22px;
  z-index: 1;
}

.earn-preview {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.94), rgba(8, 8, 8, 0.58)),
    url("https://images.unsplash.com/photo-1496747611176-843222e1e57c?auto=format&fit=crop&w=1800&q=90") center / cover;
  display: grid;
  min-height: 560px;
  place-items: center start;
}

.earn-preview > div {
  display: grid;
  gap: 18px;
  max-width: 760px;
}

.visual-story {
  background: #101010;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  padding-bottom: 0;
  padding-top: 0;
}

.visual-story article {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  display: grid;
  gap: 18px;
  min-height: 340px;
  padding: clamp(26px, 4vw, 44px);
}

.visual-story span {
  align-items: center;
  background: var(--gold);
  border-radius: 50%;
  color: #111;
  display: flex;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.visual-story h2 {
  font-size: clamp(34px, 4vw, 54px);
}

.visual-story p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
  margin: 0;
}

.list-dress {
  align-items: center;
  background:
    radial-gradient(circle at 12% 12%, rgba(233, 29, 125, 0.16), transparent 30%),
    #080808;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
}

.owner-form {
  background: rgba(255, 255, 255, 0.055);
}

.franchise-story {
  align-items: center;
  background:
    radial-gradient(circle at 72% 20%, rgba(212, 175, 55, 0.16), transparent 28%),
    #080808;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
}

.franchise-story > div:first-child {
  display: grid;
  gap: 20px;
}

.franchise-story p,
.vendor-grid p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

.roi-card {
  background:
    linear-gradient(145deg, rgba(212, 175, 55, 0.2), rgba(233, 29, 125, 0.16)),
    rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(212, 175, 55, 0.42);
  display: grid;
  gap: 18px;
  min-height: 390px;
  padding: clamp(30px, 5vw, 54px);
}

.roi-card span,
.vendor-grid span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.roi-card strong {
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: clamp(82px, 10vw, 142px);
  line-height: 0.8;
}

.vendor-opportunity {
  background: #101010;
}

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

.vendor-grid article {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  display: grid;
  gap: 18px;
  min-height: 310px;
  padding: 30px;
}

.vendor-grid h3 {
  font-size: 36px;
}

@media (max-width: 1160px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .search,
  .nav-tabs {
    grid-column: 1 / -1;
  }

  .nav-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .dropdown-menu {
    left: 14px;
    max-height: min(62vh, 470px);
    min-width: 0;
    position: fixed;
    right: 14px;
    top: 142px;
    transform: translateY(8px);
    width: auto;
  }

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu,
  .nav-dropdown.open .dropdown-menu {
    transform: translateY(0);
  }

  .product-layout,
  .featured-product,
  .split-section,
  .studio-note,
  .concierge-panel,
  .founder-hero,
  .founder-story,
  .rental-hero,
  .list-dress,
  .franchise-story {
    grid-template-columns: 1fr;
  }

  .split-section img {
    min-height: 380px;
  }

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

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

  .founder-metrics,
  .media-grid,
  .rental-tile-grid,
  .visual-story,
  .vendor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 76px;
  }

  .site-header {
    gap: 12px;
    padding: 12px 14px;
  }

  .brand img {
    height: 40px;
    width: 44px;
  }

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

  .brand small,
  .header-cta {
    display: none;
  }

  .search {
    min-height: 40px;
  }

  .nav-tabs a {
    min-width: max-content;
    padding: 10px 12px;
  }

  .nav-dropdown button {
    min-width: max-content;
    padding: 10px 12px;
  }

  .dropdown-menu {
    max-height: min(58vh, 420px);
    padding: 12px 0;
    top: 156px;
  }

  .dropdown-menu a {
    font-size: 14px;
    padding: 10px 18px;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-content {
    padding: 28vh 18px 9vh;
  }

  h1 {
    font-size: clamp(46px, 15vw, 64px);
  }

  h2 {
    font-size: 42px;
  }

  .trust-strip,
  .portfolio-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

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

  .founder-copy h1 {
    font-size: 62px;
  }

  .founder-hero {
    padding-top: 170px;
  }

  .founder-metrics,
  .media-grid,
  .rental-tile-grid,
  .visual-story,
  .vendor-grid {
    grid-template-columns: 1fr;
  }

  .founder-metrics article,
  .media-grid a,
  .visual-story article {
    min-height: auto;
  }

  .rental-hero,
  .earn-hero {
    padding-top: 170px;
  }

  .rental-hero h1,
  .earn-hero h1 {
    font-size: 48px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-heading a {
    white-space: normal;
  }

  .mini-card {
    grid-template-columns: 1fr;
  }

  .mini-card img {
    aspect-ratio: 1;
  }

  .story-grid article {
    min-height: 430px;
  }

  .studio-media > div {
    bottom: 10px;
    left: 10px;
    right: 10px;
  }

  .concierge-panel {
    padding: 20px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer > div:last-child {
    justify-content: flex-start;
  }

  .footer-meta {
    text-align: left;
  }

  .floating-contact {
    bottom: 88px;
    right: 12px;
  }

  .floating-contact a {
    height: 54px;
    width: 54px;
  }

  .mobile-booking-bar {
    background: rgba(8, 8, 8, 0.92);
    border-top: 1px solid var(--line);
    bottom: 0;
    display: grid;
    gap: 10px;
    grid-template-columns: 0.85fr 1.15fr;
    left: 0;
    padding: 10px;
    position: fixed;
    right: 0;
    z-index: 30;
  }

  .mobile-booking-bar a {
    align-items: center;
    border-radius: 999px;
    display: flex;
    font-weight: 900;
    justify-content: center;
    min-height: 52px;
  }

  .mobile-booking-bar a:first-child {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--line);
  }

  .mobile-booking-bar a:last-child {
    background: linear-gradient(135deg, var(--emerald), #19c487 58%, var(--brand-pink));
  }
}
