/* === Urvashi Salaria — website styles === */

:root {
  /* Blush palette (default) */
  --bg: #FFF8F5;
  --bg-2: #FCE4DC;
  --bg-3: #F8D0C4;
  --ink: #1A1414;
  --ink-2: #4A3A38;
  --ink-3: #8A7774;
  --accent: #E8A899;
  --accent-2: #D67B6A;
  --rule: rgba(26,20,20,0.12);
  --card: #FFFFFF;
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Inter Tight", "Inter", -apple-system, system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}

[data-theme="editorial"] {
  --bg: #F5F0E8;
  --bg-2: #EDE4D4;
  --bg-3: #E0D2BC;
  --ink: #1A1410;
  --ink-2: #3F342A;
  --ink-3: #8A7C6A;
  --accent: #C49A6C;
  --accent-2: #8B5E3C;
  --rule: rgba(26,20,16,0.15);
  --card: #FBF7F0;
}

[data-theme="luxury"] {
  --bg: #0F0D0C;
  --bg-2: #1C1816;
  --bg-3: #2A2420;
  --ink: #F5EFE6;
  --ink-2: #CFC4B4;
  --ink-3: #7A7266;
  --accent: #C9A27A;
  --accent-2: #E4C49A;
  --rule: rgba(245,239,230,0.14);
  --card: #1C1816;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

.serif { font-family: var(--serif); font-weight: 400; font-style: italic; letter-spacing: -0.01em; }
.serif-up { font-family: var(--serif); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; font-style: normal; }
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 500;
}

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  border-bottom: 1px solid var(--rule);
  transition: background .3s;
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 18px 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px;
}
.logo {
  font-family: var(--serif); font-style: italic;
  font-size: 22px; letter-spacing: -0.01em; color: var(--ink);
  text-decoration: none;
  display: flex; align-items: baseline; gap: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo .dot { color: var(--accent-2); font-weight: 600; }
.nav-links { display: flex; gap: 32px; list-style: none; flex-wrap: nowrap; }
.nav-links a { white-space: nowrap; }
.nav-links a {
  color: var(--ink-2); text-decoration: none;
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--ink); color: var(--bg);
  padding: 11px 22px; border-radius: 999px;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  border: none; cursor: pointer;
  font-family: var(--sans);
  transition: transform .2s, background .2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { transform: translateY(-1px); background: var(--accent-2); color: #fff; }

/* ============ HERO ============ */
.hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Default hero: editorial split */
.hero-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-editorial .marker {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 36px;
}
.hero-editorial .marker .line {
  width: 64px; height: 1px; background: var(--accent-2);
}
.hero-editorial h1 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(52px, 6.4vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin-bottom: 36px;
  color: var(--ink);
  text-wrap: balance;
  overflow-wrap: break-word;
}
.hero-editorial h1 .accent { color: var(--accent-2); }
.hero-editorial .lede {
  font-size: 18px;
  color: var(--ink-2);
  max-width: 460px;
  margin-bottom: 44px;
  line-height: 1.55;
}
.hero-editorial .cta-row {
  display: flex; gap: 18px; align-items: center; flex-wrap: wrap;
}
.btn-primary {
  background: var(--ink); color: var(--bg);
  padding: 17px 32px; border-radius: 999px;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  border: none; cursor: pointer;
  font-family: var(--sans);
  transition: transform .2s, background .2s;
}
.btn-primary:hover { transform: translateY(-2px); background: var(--accent-2); color: #fff; }
.btn-primary svg { width: 14px; height: 14px; }
.btn-ghost {
  color: var(--ink);
  padding: 17px 4px;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  display: inline-flex; align-items: center; gap: 10px;
  transition: color .2s, border-color .2s;
}
.btn-ghost:hover { color: var(--accent-2); border-color: var(--accent-2); }

.hero-editorial .photo-stack {
  position: relative;
  height: 620px;
}
.hero-editorial .photo-main {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background-size: cover; background-position: center top;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.25);
}
.hero-editorial .photo-accent {
  position: absolute;
  left: 0; bottom: 0;
  width: 44%; height: 280px;
  border-radius: 8px;
  background-size: cover; background-position: center;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.3);
  border: 6px solid var(--bg);
}
.hero-editorial .photo-tag {
  position: absolute;
  left: 0; top: 60px;
  background: var(--bg);
  border: 1px solid var(--rule);
  padding: 14px 18px;
  border-radius: 4px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-2);
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
  z-index: 2;
}
.hero-editorial .photo-tag strong {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  text-transform: none;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-top: 4px;
  font-weight: 400;
}

/* Alt hero: centered magazine */
.hero-magazine {
  text-align: center;
  padding: 160px 0 40px;
}
.hero-magazine .issue {
  display: flex; justify-content: center; align-items: center; gap: 22px;
  margin-bottom: 60px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-3);
}
.hero-magazine .issue .rule { width: 60px; height: 1px; background: var(--rule); }
.hero-magazine h1 {
  font-family: var(--serif); font-style: italic;
  font-weight: 400;
  font-size: clamp(72px, 13vw, 200px);
  line-height: 0.88;
  letter-spacing: -0.03em;
  margin-bottom: 0;
}
.hero-magazine .portrait {
  width: 340px; height: 340px;
  margin: -60px auto 40px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 2;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.25);
  border: 8px solid var(--bg);
}
.hero-magazine .portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.hero-magazine .sub {
  font-size: 14px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink-2); font-weight: 500;
  margin-bottom: 44px;
}
.hero-magazine .sub .dot { color: var(--accent-2); margin: 0 14px; }
.hero-magazine .cta-row { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* Hero variant toggle */
.hero-magazine { display: none; }
[data-hero="magazine"] .hero-editorial { display: none; }
[data-hero="magazine"] .hero-magazine { display: block; }

/* ============ MARQUEE (always-visible) ============ */
.marquee-wrap {
  padding: 40px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  background: var(--bg);
}
.marquee {
  display: flex;
  gap: 80px;
  animation: marquee 36s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee span {
  font-family: var(--serif); font-style: italic;
  font-size: 46px;
  color: var(--ink);
  display: flex; align-items: center; gap: 80px;
  font-weight: 400;
}
.marquee span::after {
  content: "✶";
  color: var(--accent-2);
  font-size: 22px;
  font-style: normal;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ SECTION SCAFFOLD ============ */
section { padding: 140px 0; position: relative; }
.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: end;
}
.section-head .kicker {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 0;
}
.section-head .num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.1em;
}
.section-head .rule { height: 1px; background: var(--rule); flex: 1; }
.section-head h2 {
  font-family: var(--serif); font-style: italic;
  font-weight: 400;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.section-head h2 .accent { color: var(--accent-2); }

/* ============ ABOUT ============ */
.about {
  background: var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 100px;
  align-items: start;
}
.about-photo {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 8px;
  overflow: hidden;
  background-size: cover; background-position: center;
}
.about-photo .overlay-tag {
  position: absolute;
  left: 24px; bottom: 24px;
  background: var(--bg);
  color: var(--ink);
  padding: 12px 18px;
  border-radius: 4px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 500;
}
.about-copy p {
  font-family: var(--serif);
  font-style: normal;
  font-size: 26px;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 32px;
  text-wrap: pretty;
  font-weight: 400;
}
.about-copy p:first-of-type::first-letter {
  font-family: var(--serif);
  font-style: italic;
  font-size: 90px;
  float: left;
  line-height: 0.85;
  margin: 8px 14px 0 -4px;
  color: var(--accent-2);
  font-weight: 400;
}
.about-copy .sig {
  font-family: var(--serif); font-style: italic;
  font-size: 38px;
  color: var(--ink);
  margin-top: 40px;
  display: block;
  letter-spacing: -0.01em;
}
.about-meta {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.about-meta dt {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 500;
  margin-bottom: 6px;
}
.about-meta dd {
  font-family: var(--serif); font-style: italic;
  font-size: 22px;
  color: var(--ink);
}

/* ============ STATS STRIP ============ */
.stats {
  background: var(--bg-2);
  padding: 100px 0;
}
[data-theme="luxury"] .stats { background: var(--bg-2); }
.stats-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 44px;
}
.stat {
  position: relative;
}
.stat + .stat::before {
  content: '';
  position: absolute;
  left: -30px; top: 10px; bottom: 10px;
  width: 1px;
  background: var(--rule);
}
.stat .num {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(56px, 6vw, 80px);
  line-height: 1;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.stat .num .unit { color: var(--accent-2); font-size: 0.6em; }
.stat .label {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-2); font-weight: 500;
  margin-bottom: 8px;
}
.stat .detail {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.5;
}

/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.service {
  padding: 44px 36px 44px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  min-height: 280px;
  display: flex; flex-direction: column;
  position: relative;
  transition: background .3s;
  cursor: default;
}
.service:hover { background: var(--bg-2); }
.service .idx {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.service h3 {
  font-family: var(--serif); font-style: italic;
  font-weight: 400;
  font-size: 32px;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.service p {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
  flex: 1;
}
.service .tag {
  margin-top: 24px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 500;
}

/* ============ CONTENT CATEGORIES / PILLARS ============ */
.pillars {
  background: var(--bg-2);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.pillar {
  position: relative;
}
.pillar .img {
  aspect-ratio: 4/5;
  border-radius: 8px;
  background-size: cover; background-position: center;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
}
.pillar .img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.4));
}
.pillar .label {
  position: absolute;
  left: 20px; bottom: 80px;
  color: #fff;
  font-family: var(--serif); font-style: italic;
  font-size: 32px;
  line-height: 1;
  z-index: 2;
  letter-spacing: -0.01em;
}
.pillar .meta {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 500;
}
.pillar .desc {
  font-size: 15px;
  color: var(--ink);
  margin-top: 6px;
  line-height: 1.5;
}

/* ============ INSTAGRAM FEED ============ */
.feed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.feed-item {
  display: block;
  aspect-ratio: 1;
  background-size: cover; background-position: center;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform .3s;
  text-decoration: none;
}
.feed-item:hover { transform: scale(0.98); }
.feed-item::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(26,20,20,0);
  transition: background .3s;
}
.feed-item:hover::after { background: rgba(26,20,20,0.2); }
.feed-item .ig-mark {
  position: absolute;
  top: 10px; right: 10px;
  color: #fff;
  opacity: 0;
  transition: opacity .3s;
  z-index: 2;
}
.feed-item:hover .ig-mark { opacity: 1; }
.feed-item .reel-mark {
  position: absolute;
  top: 10px; right: 10px;
  color: #fff;
  z-index: 2;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.4));
  width: 18px; height: 18px;
}
.feed-item .caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px 14px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
  font-size: 12px;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .3s, transform .3s;
  z-index: 2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.feed-item:hover .caption { opacity: 1; transform: translateY(0); }
.feed-footer {
  margin-top: 40px;
  text-align: center;
  font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink-2);
}
.feed-footer a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--accent-2); padding-bottom: 2px; }

/* ============ BRANDS MARQUEE ============ */
.brands {
  padding: 80px 0;
  background: var(--bg);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.brands-intro {
  text-align: center;
  margin-bottom: 50px;
}
.brands-intro .eyebrow { margin-bottom: 14px; }
.brands-intro h3 {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--ink);
  letter-spacing: -0.02em;
  font-weight: 400;
}

.brand-marquee-wrap { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.brand-marquee {
  display: flex;
  gap: 72px;
  animation: marquee 48s linear infinite;
  width: max-content;
  align-items: center;
}
.brand-marquee .brand {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--ink);
  white-space: nowrap;
  font-weight: 500;
  letter-spacing: -0.005em;
  opacity: 0.85;
  transition: opacity .2s;
  font-style: normal;
}
.brand-marquee .brand.italic { font-style: italic; font-weight: 400; }
.brand-marquee .brand.caps { font-family: var(--sans); font-size: 20px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 500; }
.brand-marquee .brand.mono { font-family: var(--mono); font-size: 20px; letter-spacing: 0.05em; font-weight: 500; }
.brand-marquee .brand:hover { opacity: 1; color: var(--accent-2); }
.brand-marquee .sep { color: var(--accent-2); font-size: 18px; }

/* ============ PRESS QUOTE ============ */
.quote-section {
  padding: 160px 0;
  text-align: center;
}
.quote-section blockquote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.2;
  max-width: 1000px;
  margin: 0 auto 40px;
  color: var(--ink);
  letter-spacing: -0.01em;
  font-weight: 400;
  text-wrap: pretty;
}
.quote-section blockquote .mark { color: var(--accent-2); font-size: 1.5em; vertical-align: -0.15em; font-weight: 400; }
.quote-section cite {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 500;
}
.quote-section cite::before { content: "— "; }

/* ============ CONTACT / MEDIA KIT FORM ============ */
.contact {
  background: var(--ink);
  color: var(--bg);
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}
[data-theme="luxury"] .contact { background: var(--bg-2); border-top: 1px solid var(--rule); }
.contact::before {
  content: '';
  position: absolute;
  right: -200px; top: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: var(--accent-2);
  opacity: 0.1;
  filter: blur(80px);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  position: relative;
  z-index: 2;
}
.contact .lead {
  font-family: var(--serif); font-style: italic;
  font-weight: 400;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  color: var(--bg);
}
.contact .lead .accent { color: var(--accent-2); }
.contact .sub {
  font-size: 17px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--bg) 70%, transparent);
  margin-bottom: 40px;
  max-width: 440px;
}
.contact .direct {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
[data-theme="luxury"] .contact .direct { border-color: var(--rule); }
.contact .direct .label {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: color-mix(in srgb, var(--bg) 60%, transparent);
  margin-bottom: 8px;
  font-weight: 500;
}
.contact .direct a {
  font-family: var(--serif); font-style: italic;
  font-size: 32px;
  color: var(--bg);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-2);
  padding-bottom: 4px;
  letter-spacing: -0.01em;
}
.contact .direct a:hover { color: var(--accent-2); }

.form {
  background: color-mix(in srgb, var(--bg) 6%, transparent);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 40px;
  backdrop-filter: blur(10px);
}
[data-theme="luxury"] .form { background: var(--bg-3); border-color: var(--rule); }
.form-title {
  font-family: var(--serif); font-style: italic;
  font-size: 24px;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
  font-weight: 400;
}
.form-subtitle {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--bg) 55%, transparent);
  margin-bottom: 32px;
}
.field {
  margin-bottom: 22px;
  position: relative;
}
.field.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field label {
  display: block;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: color-mix(in srgb, var(--bg) 60%, transparent);
  margin-bottom: 10px;
  font-weight: 500;
}
.field input, .field textarea, .field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding: 8px 0 12px;
  color: var(--bg);
  font-size: 16px;
  font-family: var(--sans);
  outline: none;
  transition: border-color .2s;
}
[data-theme="luxury"] .field input,
[data-theme="luxury"] .field textarea,
[data-theme="luxury"] .field select {
  border-color: var(--rule);
  color: var(--ink);
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--accent-2);
}
.field input::placeholder, .field textarea::placeholder {
  color: color-mix(in srgb, var(--bg) 35%, transparent);
}
.field textarea { resize: none; min-height: 100px; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'><path d='M1 1l5 5 5-5' stroke='%23E8A899' stroke-width='1.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 6px center;
  cursor: pointer;
}
.field select option { background: var(--ink); color: var(--bg); }
.form-submit {
  width: 100%;
  background: var(--accent-2);
  color: var(--bg);
  padding: 18px;
  border: none;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  margin-top: 12px;
  transition: background .2s, transform .2s;
}
.form-submit:hover { transform: translateY(-2px); background: var(--accent); }
.form-note {
  font-size: 11px;
  color: color-mix(in srgb, var(--bg) 45%, transparent);
  text-align: center;
  margin-top: 16px;
  letter-spacing: 0.05em;
}
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success .check {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent-2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  color: var(--bg);
}
.form-success h4 {
  font-family: var(--serif); font-style: italic;
  font-size: 28px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  font-weight: 400;
}
.form-success p {
  font-size: 15px;
  color: color-mix(in srgb, var(--bg) 65%, transparent);
  max-width: 340px;
  margin: 0 auto;
  line-height: 1.55;
}

/* ============ FOOTER ============ */
footer {
  padding: 80px 0 40px;
  background: var(--ink);
  color: color-mix(in srgb, var(--bg) 70%, transparent);
}
[data-theme="luxury"] footer { background: var(--bg); border-top: 1px solid var(--rule); color: var(--ink-2); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 80px;
  margin-bottom: 60px;
}
.footer-grid .foot-brand {
  font-family: var(--serif); font-style: italic;
  font-size: 32px;
  color: var(--bg);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
[data-theme="luxury"] .footer-grid .foot-brand { color: var(--ink); }
.footer-grid .foot-tag {
  font-size: 14px;
  line-height: 1.55;
  max-width: 320px;
}
.foot-col h5 {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: color-mix(in srgb, var(--bg) 50%, transparent);
  margin-bottom: 18px;
  font-weight: 500;
}
[data-theme="luxury"] .foot-col h5 { color: var(--ink-3); }
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 10px; }
.foot-col a {
  color: color-mix(in srgb, var(--bg) 85%, transparent);
  text-decoration: none;
  font-size: 15px;
  transition: color .2s;
}
[data-theme="luxury"] .foot-col a { color: var(--ink); }
.foot-col a:hover { color: var(--accent-2); }
.foot-col .foot-count {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  margin-left: 6px;
  padding: 2px 6px;
  border-radius: 3px;
  color: var(--accent-2);
  background: color-mix(in srgb, var(--accent-2) 15%, transparent);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
[data-theme="luxury"] .footer-bottom { border-color: var(--rule); }
.footer-bottom .signature {
  font-family: var(--serif); font-style: italic;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
  color: color-mix(in srgb, var(--bg) 50%, transparent);
}
[data-theme="luxury"] .footer-bottom .signature { color: var(--ink-3); }

/* ============ TWEAKS PANEL ============ */
.tweaks-panel {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  background: #1A1414;
  color: #FFF;
  border-radius: 14px;
  padding: 18px;
  width: 260px;
  box-shadow: 0 25px 60px -15px rgba(0,0,0,0.4);
  font-family: var(--sans);
  border: 1px solid rgba(255,255,255,0.1);
  display: none;
}
.tweaks-panel.visible { display: block; }
.tweaks-panel h6 {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.tweaks-panel .group { margin-bottom: 18px; }
.tweaks-panel .group:last-child { margin-bottom: 0; }
.tweaks-panel .group-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.tweaks-panel .options {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
}
.tweaks-panel .options.two { grid-template-columns: 1fr 1fr; }
.tweaks-panel .opt {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: #FFF;
  padding: 10px 6px;
  border-radius: 8px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s;
  font-family: var(--sans);
  font-weight: 500;
}
.tweaks-panel .opt:hover { background: rgba(255,255,255,0.15); }
.tweaks-panel .opt.active {
  background: #fff;
  color: #1A1414;
  border-color: #fff;
}
.tweaks-panel .swatch {
  display: flex; align-items: center; gap: 6px;
  justify-content: center;
}
.tweaks-panel .swatch::before {
  content: '';
  width: 10px; height: 10px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
}
.tweaks-panel .swatch.blush::before { background: #F8D0C4; }
.tweaks-panel .swatch.editorial::before { background: #E0D2BC; }
.tweaks-panel .swatch.luxury::before { background: #C9A27A; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1120px) and (min-width: 961px) {
  .stats-inner { grid-template-columns: repeat(3, 1fr); gap: 40px 36px; row-gap: 56px; }
  .stat + .stat::before { display: none; }
}
@media (max-width: 960px) {
  .wrap { padding: 0 24px; }
  .nav-inner { padding: 14px 24px; }
  .nav-links { display: none; }
  .hero-editorial { grid-template-columns: 1fr; gap: 60px; }
  .hero-editorial .photo-stack { height: 500px; }
  .section-head { grid-template-columns: 1fr; gap: 20px; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .stat + .stat::before { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .feed-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .field.row2 { grid-template-columns: 1fr; }
  section { padding: 80px 0; }
}
