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

:root {
  --white: #ffffff;
  --off-white: #f8f8f8;
  --light: #f0f0f0;
  --nude: #ede8e3;
  --nude-mid: #b8afa5;
  --nude-dark: #9c9088;
  --mid: #d4d4d4;
  --grey: #888888;
  --dark-grey: #444444;
  --ink: #0a0a0a;
  --rule: #e5e5e5;
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--ink); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }

/* NAV */
nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 64px; height: 76px; background: var(--white);
  border-bottom: 1px solid var(--rule); position: sticky; top: 0; z-index: 100;
}
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; letter-spacing: 0.05em; color: var(--ink); cursor: pointer; }
.nav-logo span { color: var(--nude-mid); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links li a { font-size: 11px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: var(--grey); transition: color 0.2s; }
.nav-links li a:hover, .nav-links li a.active { color: var(--ink); }
.nav-cta { background: var(--ink); color: #fff; padding: 10px 26px; font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; border: none; cursor: pointer; transition: background 0.2s; display: inline-block; }
.nav-cta:hover { background: #333; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-toggle span { width: 22px; height: 1.5px; background: var(--ink); display: block; }
.mobile-menu { display: none; flex-direction: column; background: var(--white); border-bottom: 1px solid var(--rule); padding: 24px 32px; gap: 20px; position: sticky; top: 76px; z-index: 99; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 13px; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase; color: var(--grey); }
.mobile-menu .mobile-cta { background: var(--ink); color: #fff; padding: 12px 24px; font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; text-align: center; margin-top: 8px; }

/* PAGE HEADER */
.page-header { padding: 80px 64px; background: var(--off-white); border-bottom: 1px solid var(--rule); }
.page-header-eyebrow { font-size: 10px; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; color: var(--nude-mid); margin-bottom: 16px; }
.page-header-title { font-family: 'Cormorant Garamond', serif; font-size: 72px; font-weight: 300; line-height: 1.05; color: var(--ink); }
.page-header-title em { font-style: italic; color: var(--nude-dark); }
.page-header-desc { font-size: 14px; font-weight: 300; line-height: 1.85; color: var(--grey); max-width: 520px; margin-top: 20px; }

/* SECTION HELPERS */
.section-eyebrow { font-size: 10px; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; color: var(--nude-mid); margin-bottom: 12px; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 300; line-height: 1.1; color: var(--ink); }
.section-title em { font-style: italic; color: var(--nude-dark); }
.section-top { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; flex-wrap: wrap; gap: 20px; }
.section-link { font-size: 11px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: var(--grey); text-decoration: underline; text-underline-offset: 5px; cursor: pointer; }

/* BUTTONS */
.btn-dark { background: var(--ink); color: #fff; padding: 14px 36px; font-size: 10px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; border: none; cursor: pointer; transition: background 0.2s; display: inline-block; }
.btn-dark:hover { background: #333; }
.btn-outline { background: transparent; color: var(--ink); padding: 13px 36px; font-size: 10px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; border: 1px solid var(--mid); cursor: pointer; transition: all 0.2s; display: inline-block; }
.btn-outline:hover { border-color: var(--ink); }
.btn-nude { background: var(--nude); color: var(--ink); padding: 14px 36px; font-size: 10px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; border: none; cursor: pointer; transition: background 0.2s; display: inline-block; }
.btn-nude:hover { background: #e0dbd6; }

/* MARQUEE */
.marquee-bar { background: var(--nude-mid); padding: 13px 0; overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-flex; animation: marquee 22s linear infinite; }
.marquee-item { display: inline-flex; align-items: center; gap: 18px; padding: 0 18px; font-size: 10px; font-weight: 400; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.9); }
.marquee-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.5); flex-shrink: 0; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* FOOTER */
footer { background: var(--ink); padding: 64px 64px 32px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 32px; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: #fff; margin-bottom: 16px; letter-spacing: 0.05em; }
.footer-logo span { color: var(--nude-mid); }
.footer-tagline { font-size: 12px; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,0.4); max-width: 260px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 14px; }
.footer-social a { font-size: 10px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-social a:hover { color: var(--nude-mid); }
.footer-col-title { font-size: 9px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links li a { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-links li a:hover { color: var(--nude-mid); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.25); }
.footer-credit { font-size: 10px; font-weight: 400; letter-spacing: 0.15em; color: var(--nude-mid); text-transform: uppercase; }

/* FORM */
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 9px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--grey); }
.form-input { background: var(--off-white); border: 1px solid var(--rule); padding: 12px 16px; font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 300; color: var(--ink); outline: none; transition: border-color 0.2s; width: 100%; }
.form-input:focus { border-color: var(--ink); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; background-color: var(--off-white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { background: var(--ink); color: #fff; padding: 14px; font-size: 10px; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase; border: none; cursor: pointer; transition: background 0.2s; width: 100%; font-family: 'DM Sans', sans-serif; }
.form-submit:hover { background: #333; }

/* RESPONSIVE */
@media (max-width: 960px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .page-header { padding: 56px 24px; }
  .page-header-title { font-size: 48px; }
  footer { padding: 48px 24px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── SAFARI CROSS-BROWSER FIXES ── */
* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
input, textarea, select, button { -webkit-appearance: none; appearance: none; }
.nav { -webkit-backdrop-filter: blur(0); }
img { -webkit-user-drag: none; }
a { -webkit-tap-highlight-color: transparent; }
