/* design tokens inlined — edit design-tokens/tokens.css then re-inline if needed */
:root {
  /* Brand gold */
  --gold-1: #E3A94F;
  --gold-2: #CE8B2F;
  --gold-3: #B0701F;
  --gradient-brand-gold: radial-gradient(120% 120% at 35% 30%, #E3A94F 0%, #CE8B2F 55%, #B0701F 100%);
  --gold-boy-1: #F8E1B1;
  --gold-boy-2: #FFCE6B;
  --gradient-boy: linear-gradient(180deg, #F8E1B1 0%, #FFCE6B 100%);
  --gold-on-light: #D6A22E;
  /* Neutrals */
  --offwhite: #FFFDF7;
  --ink: #2B2010;
  /* Night palette */
  --night-1: #0D1119;
  --night-2: #1A2230;
  --night-indigo: #3A3A6B;
  --night-silver: #B8BEC9;
  /* Blue hour palette */
  --bluehour-deep: #1B3A5C;
  --bluehour-steel: #4A6E96;
  --bluehour-teal: #2E7E80;
  --bluehour-rose: #C97B8E;
  /* Morning gold palette */
  --morning-amber: #E8A54B;
  --morning-honey: #F5C878;
  --morning-peach: #F2D9B8;
  --morning-sky: #A8C8E0;
  /* Semantic */
  --text-on-image: var(--offwhite);
  --text-on-light: var(--ink);
  --text-on-gold: var(--ink);
  --surface-page: var(--offwhite);
  --surface-night: var(--night-1);
  --cta-fill: var(--gradient-brand-gold);
  --cta-text: var(--offwhite);
  --cta-outline: var(--offwhite);
  --link: var(--gold-on-light);
  --link-hover: var(--gold-3);
  --scrim-bottom: linear-gradient(180deg, rgba(13, 17, 25, 0) 0%, rgba(13, 17, 25, .55) 100%);
  --text-shadow-soft: 0 1px 24px rgba(13, 17, 25, .45);
  /* Typography */
  --font-display: 'Abril Fatface', serif;
  --font-core: 'Outfit', sans-serif;
  --weight-body: 500;
  --weight-footnote: 300;
  --tracking-subline: .36em;
  --tracking-wide: .14em;
  --tracking-normal: .02em;
  --text-display-xl: clamp(48px, 7vw, 96px);
  --text-display: clamp(34px, 4.5vw, 56px);
  --text-headline: 28px;
  --text-body: 18px;
  --text-caption: 14px;
  --text-footnote: 12px;
  --leading-display: 1.08;
  --leading-body: 1.6;
  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 40px;
  --space-6: 64px;
  --space-7: 96px;
  --space-8: 160px;
  --safe-y: 10vh;
  --content-max: 680px;
  --radius-cta: 999px;
  --radius-card: 16px;
  --radius-media: 12px;
  --ease-brand: cubic-bezier(.33, 0, .2, 1);
  --duration-fade: 1200ms;
  --duration-push: 8s;
  --push-scale: 1.03;
}

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

html { scroll-behavior: smooth; }

body.contact-page {
  margin: 0;
  background: var(--offwhite);
  font-family: var(--font-core);
  font-weight: var(--weight-body);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

/* Offline source: global links have no underline; parchment uses ink gold */
.contact-page a {
  text-decoration: none;
}

.contact-form__helper a,
.contact-form a:not(.btn) {
  color: var(--gold-3);
}

.contact-form__helper a:hover,
.contact-form a:not(.btn):hover {
  color: var(--gold-2);
}

.contact-page section[id] { scroll-margin-top: 104px; }

.contact-page .section-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: var(--night-1);
}

.contact-page .section-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contact-page .section-inner { position: relative; }

.contact-page .text-shadow-warm { text-shadow: 0 2px 28px rgba(43, 32, 16, 0.6); }
.contact-page .text-shadow-cool { text-shadow: 0 2px 28px rgba(13, 17, 25, 0.6); }
.contact-page .text-shadow-body-warm { text-shadow: 0 1px 22px rgba(43, 32, 16, 0.6); }
.contact-page .text-shadow-body-cool { text-shadow: 0 1px 22px rgba(13, 17, 25, 0.6); }

.contact-page .display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.15;
  margin: 0;
}

.contact-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: var(--radius-cta);
  font-family: var(--font-core);
  font-weight: 500;
  color: var(--offwhite);
  text-decoration: none;
  background: var(--gradient-brand-gold);
  cursor: pointer;
  transition: filter 0.2s;
  letter-spacing: 0.08em;
}

.contact-page .btn:hover,
.contact-page .btn:focus-visible {
  filter: brightness(0.94);
  color: var(--offwhite);
}

.contact-page a.btn,
.contact-page a.btn:hover,
.contact-page a.btn:focus-visible {
  color: var(--offwhite);
  text-decoration: none;
}

.contact-page .btn-sm {
  font-size: 14px;
  letter-spacing: 0.1em;
  padding: 10px 24px;
  min-width: 160px;
  min-height: 40px;
}

.contact-page .btn-lg {
  font-size: 16px;
  padding: 16px 32px;
  min-height: 56px;
}

.contact-page .btn-md {
  font-size: 15px;
  letter-spacing: 0.06em;
  padding: 13px 30px;
  min-height: 48px;
}

.contact-page .btn-outline {
  display: inline-block;
  border: 1.5px solid var(--offwhite);
  border-radius: var(--radius-cta);
  color: var(--offwhite);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 10px 22px;
  background: transparent;
}

.contact-page .btn-outline:hover { opacity: 0.75; color: var(--offwhite); }

.contact-page .btn-outline-ink {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-cta);
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 13px 30px;
  background: transparent;
}

.contact-page .btn-outline-ink:hover {
  opacity: 0.7;
  color: var(--ink);
}

.contact-page a.btn-outline-ink,
.contact-page a.btn-outline-ink:hover,
.contact-page a.btn-outline-ink:focus-visible {
  color: var(--ink);
  text-decoration: none;
}

.contact-page .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.contact-page .btn-row .btn,
.contact-page .btn-row .btn-outline-ink {
  flex-shrink: 0;
}

@keyframes beginPush {
  from { transform: scale(1); }
  to { transform: scale(1.03); }
}

@keyframes beginFade {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.contact-hero-bg { animation: beginPush 10s cubic-bezier(0.33, 0, 0.2, 1) both; }
.contact-hero-content { animation: beginFade 1.2s cubic-bezier(0.33, 0, 0.2, 1) both; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .contact-hero-bg { animation: none; }
  .contact-hero-content { animation: none; }
}

/* Header (shared with homepage) */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
}

.banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--night-2);
  color: var(--offwhite);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.04em;
  padding: 10px 44px;
  position: relative;
}

.banner.is-hidden { display: none; }

.banner a {
  color: var(--morning-honey);
  font-weight: 500;
  white-space: nowrap;
}

.banner a:hover { color: var(--morning-honey); opacity: 0.9; }

.banner__dismiss {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--offwhite);
  opacity: 0.6;
  font-size: 16px;
  cursor: pointer;
  line-height: 1;
  padding: 6px;
}

.banner__dismiss:hover { opacity: 1; }

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(20px, 4vw, 48px);
  height: 104px;
  background: rgba(13, 17, 25, 0);
  transition: background 0.6s ease;
}

.site-header.is-scrolled .main-nav,
.site-header.is-menu-open .main-nav {
  background: rgba(13, 17, 25, 0.82);
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  color: var(--offwhite);
  text-decoration: none;
}

.logo-lockup:hover { color: var(--offwhite); }

.logo-mark {
  display: block;
  width: 68px;
  height: 68px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.logo-mark img {
  position: absolute;
  width: 306px;
  height: 112px;
  max-width: none;
  left: -40px;
  top: -21px;
}

.logo-mark--lg { width: 96px; height: 96px; }

.logo-mark--lg img {
  width: 432px;
  height: 158px;
  left: -57px;
  top: -30px;
}

.logo-text { display: flex; flex-direction: column; gap: 5px; }

.logo-text__name {
  font-family: var(--font-display);
  font-size: 27px;
  line-height: 1;
  letter-spacing: 0.04em;
}

.logo-text__tag {
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.32em;
  opacity: 0.95;
}

.logo-text__name--lg { font-size: 40px; }
.logo-text__tag--lg { font-size: 17px; letter-spacing: 0.34em; }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 15px;
  letter-spacing: 0.1em;
}

.nav-desktop a {
  color: var(--offwhite);
  opacity: 0.92;
  text-decoration: none;
}

.nav-desktop a:hover,
.nav-desktop a.is-current {
  opacity: 1;
  color: var(--morning-honey);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 0;
}

.nav-actions a:not(.btn) {
  color: var(--offwhite);
  font-size: 15px;
  letter-spacing: 0.1em;
  opacity: 0.92;
}

.nav-actions a:not(.btn):hover { opacity: 1; color: var(--offwhite); }

.nav-women { position: relative; }

.nav-women__trigger {
  color: var(--offwhite);
  opacity: 0.92;
  cursor: default;
}

.nav-women__menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  padding-top: 14px;
  width: 320px;
}

.nav-women:hover .nav-women__menu { display: block; }

.nav-women__panel {
  background: var(--night-2);
  border-radius: 16px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-women__panel a {
  display: block;
  padding: 14px 16px;
  border-radius: 12px;
  color: var(--offwhite);
  opacity: 1;
}

.nav-women__panel a:hover {
  background: rgba(255, 253, 247, 0.06);
  color: var(--offwhite);
}

.nav-women__title {
  display: block;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.nav-women__sub {
  display: block;
  font-weight: 300;
  font-size: 13px;
  opacity: 0.75;
  margin-top: 3px;
  letter-spacing: 0.02em;
}

.menu-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--offwhite);
  border-radius: 999px;
  color: var(--offwhite);
  font-family: var(--font-core);
  font-size: 14px;
  letter-spacing: 0.1em;
  font-weight: 500;
  padding: 9px 20px;
  cursor: pointer;
}

.mobile-panel {
  display: none;
  background: rgba(13, 17, 25, 0.96);
  padding: 12px 24px 28px;
  flex-direction: column;
  gap: 4px;
}

.mobile-panel.is-open { display: flex; }

.mobile-panel a:not(.btn) {
  color: var(--offwhite);
  font-size: 17px;
  letter-spacing: 0.06em;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 253, 247, 0.08);
}

.mobile-panel__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
}

@media (max-width: 979px) {
  .nav-desktop,
  .nav-actions { display: none; }
  .menu-toggle { display: inline-block; }
}

@media (min-width: 980px) {
  .mobile-panel { display: none !important; }
}

/* Contact page content */
.contact-eyebrow {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--morning-honey);
  margin: 0;
  text-transform: uppercase;
}

.contact-form-wrap {
  max-width: 560px;
  margin: 0 auto;
}

.contact-form {
  background: var(--offwhite);
  border: 1px solid #E3D8C2;
  border-radius: 16px;
  padding: clamp(32px, 5vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-form.is-hidden { display: none; }

.contact-form__label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--gold-3);
  margin: 0;
  text-transform: uppercase;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-field__label {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.contact-field__optional {
  font-weight: 300;
  opacity: 0.6;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  border: 1px solid #E3D8C2;
  border-radius: 12px;
  background: var(--offwhite);
  font-family: var(--font-core);
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
}

.contact-field select {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  border: 1px solid #E3D8C2;
  border-radius: 12px;
  background: var(--offwhite);
  font-family: var(--font-core);
  font-size: 16px;
  font-weight: 400;
  appearance: auto;
  color: var(--ink);
}

/* Empty select matches placeholder gray (design: ink at ~55%) */
.contact-field select:required:invalid {
  color: rgba(43, 32, 16, 0.55);
}

.contact-field select option {
  color: var(--ink);
}

.contact-field select option[value=""] {
  color: rgba(43, 32, 16, 0.55);
}

.contact-field textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(43, 32, 16, 0.55);
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: var(--gold-2);
  box-shadow: 0 0 0 3px rgba(227, 169, 79, 0.28);
}

.contact-form__submit {
  width: 100%;
  border: none;
  border-radius: var(--radius-cta);
  background: var(--gradient-brand-gold);
  color: var(--offwhite);
  font-family: var(--font-core);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 17px 32px;
  cursor: pointer;
  transition: filter 0.2s;
}

.contact-form__submit:hover,
.contact-form__submit:focus-visible {
  filter: brightness(0.94);
}

.contact-form__submit:disabled {
  opacity: 0.65;
  cursor: wait;
}

.contact-form__error {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #9b2c2c;
  margin: 0;
  text-align: center;
}

.contact-form__helper {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.7;
  opacity: 0.8;
  text-align: center;
  margin: 26px 0 0;
  text-wrap: pretty;
}

.contact-form__helper.is-hidden { display: none; }

.contact-success {
  display: none;
  background: var(--offwhite);
  border: 1px solid #E3D8C2;
  border-radius: 16px;
  padding: clamp(48px, 6vw, 72px);
  flex-direction: column;
  align-items: center;
  gap: 26px;
  text-align: center;
  animation: beginFade 1.2s cubic-bezier(0.33, 0, 0.2, 1) both;
}

.contact-success.is-visible {
  display: flex;
}

.contact-success__logo {
  width: 88px;
  display: block;
}

.contact-success__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.25;
  margin: 0;
}

.contact-success__text {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.02em;
  opacity: 0.9;
  margin: 0;
  max-width: 400px;
}

.footer-cols {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.footer-cols > * {
  flex: 1 1 0;
  min-width: 140px;
}

.footer-link {
  color: var(--offwhite);
  font-size: 15px;
  font-weight: 300;
  opacity: 0.85;
  text-decoration: none;
}

.footer-link:hover {
  opacity: 1;
  color: var(--morning-honey);
}

.footer-social {
  color: var(--offwhite);
  opacity: 0.7;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-decoration: none;
}

.footer-social:hover {
  opacity: 1;
  color: var(--morning-honey);
}

.contact-page footer .logo-text__name,
.contact-page footer .logo-text__tag {
  color: var(--offwhite);
}

.contact-page footer a.footer-link,
.contact-page footer a.footer-social {
  color: var(--offwhite);
}

.contact-page footer a.footer-link:hover,
.contact-page footer a.footer-social:hover {
  color: var(--morning-honey);
}
