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

:root {
  --gold: #B8902A;
  --gold-light: #D4AF5A;
  --gold-faint: #F5EDD8;
  --ink: #0D1117;
  --ink-mid: #1F2937;
  --ink-soft: #374151;
  --slate: #6B7280;
  --line: rgba(184, 144, 42, 0.22);
  --bg: #FAFAF8;
  --card-bg: #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 64px;
  height: 72px;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
}

.logo-mark {
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600; font-size: 18px;
  color: var(--gold);
  transform: rotate(45deg);
}

.logo-mark span {
  transform: rotate(-45deg);
  display: block;
}

.logo-text {
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-mid); line-height: 1.3;
}

.logo-text small {
  display: block; font-size: 9px;
  letter-spacing: 0.12em; color: var(--slate); font-weight: 400;
}

.nav-links {
  display: flex; gap: 40px; list-style: none;
}

.nav-links a {
  font-size: 13px; font-weight: 400;
  color: var(--ink-soft); text-decoration: none;
  letter-spacing: 0.04em; transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-cta {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  border: 1px solid var(--gold);
  padding: 9px 24px; transition: all 0.25s;
}

.nav-cta:hover { background: var(--gold); color: #fff; }

/* ── PAGE HERO ── */
.page-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  padding-top: 72px;
}

.page-hero-inner {
  display: flex; flex-direction: column; justify-content: center;
  padding: 72px 56px 72px 64px;
  animation: fadeUp 0.7s ease both;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}

.hero-eyebrow span {
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); font-weight: 500;
}

.hero-eyebrow::before {
  content: ''; display: block;
  width: 40px; height: 1px; background: var(--gold);
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 400; line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 20px;
}

h1 em { font-style: italic; color: var(--gold); }

.hero-desc {
  font-size: 14.5px; line-height: 1.75;
  color: var(--slate); max-width: 420px;
  font-weight: 300;
}

.page-hero-visual {
  background: var(--ink);
  overflow: hidden;
}

/* ── CONTACT WRAPPER ── */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 0;
  max-width: 100%;
  border-top: 1px solid var(--line);
}

/* ── FORM SECTION ── */
.form-section {
  padding: 72px 64px;
  border-right: 1px solid var(--line);
}

.section-label {
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 500; margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}

.section-label::before {
  content: ''; display: block;
  width: 28px; height: 1px; background: var(--gold);
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400; line-height: 1.15;
  color: var(--ink); margin-bottom: 12px;
}

.form-intro {
  font-size: 14px; line-height: 1.7;
  color: var(--slate); font-weight: 300;
  margin-bottom: 40px;
}

/* ── FORM ELEMENTS ── */
.contact-form {
  display: flex; flex-direction: column; gap: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex; flex-direction: column; gap: 8px;
}

.form-group label {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-soft);
}

.req { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 300;
  color: var(--ink);
  background: var(--card-bg);
  border: 1px solid rgba(184, 144, 42, 0.25);
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23B8902A' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: #FDFBF5;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9CA3AF; font-weight: 300;
}

.form-group textarea {
  resize: vertical; min-height: 120px;
  line-height: 1.6;
}

.form-note {
  font-size: 12px; color: var(--slate);
  font-weight: 300; line-height: 1.5;
}

/* ── SUBMIT BUTTON ── */
.btn-submit {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff; background: var(--ink);
  border: none; padding: 18px 40px;
  cursor: pointer; transition: all 0.25s;
  align-self: flex-start;
}

.btn-submit:hover { background: var(--gold); }

.btn-arrow { font-size: 16px; transition: transform 0.2s; }
.btn-submit:hover .btn-arrow { transform: translateX(4px); }

/* ── SUCCESS MESSAGE ── */
.success-msg {
  display: none;
  align-items: flex-start; gap: 16px;
  padding: 20px 24px;
  border: 1px solid rgba(184, 144, 42, 0.4);
  background: #FDFBF5;
  font-size: 14px; line-height: 1.6;
  color: var(--ink-soft);
  animation: fadeUp 0.4s ease both;
}

.success-msg.show { display: flex; }

.success-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--gold); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 500;
}

/* ── INFO SECTION ── */
.info-section {
  padding: 72px 48px;
  background: var(--card-bg);
  display: flex; flex-direction: column; gap: 28px;
}

.info-card {
  padding: 24px;
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 8px;
  transition: border-color 0.25s;
}

.info-card:hover { border-color: var(--gold); }

.info-icon {
  width: 36px; height: 36px;
  color: var(--gold);
  margin-bottom: 4px;
}

.info-icon svg {
  width: 24px; height: 24px;
  stroke: var(--gold);
}

.info-label {
  font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--slate);
  font-weight: 500;
}

.info-value {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 400;
  color: var(--ink); line-height: 1.4;
}

/* ── DISCLAIMER ── */
.disclaimer-box {
  padding: 24px;
  background: var(--gold-faint);
  border-left: 3px solid var(--gold);
  margin-top: auto;
}

.disclaimer-title {
  font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 500; margin-bottom: 10px;
}

.disclaimer-text {
  font-size: 12.5px; line-height: 1.7;
  color: var(--ink-soft); font-weight: 300;
}

/* ── FOOTER ── */
/* ── FOOTER ── */
footer {
  background: var(--ink-mid);
  padding: 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 56px 64px;
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand .logo-text { color: #F5F0E8; }
.footer-brand .logo-text small { color: rgba(245, 240, 232, 0.45); }

.footer-tagline {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.45);
  margin-top: 16px;
  line-height: 1.6;
  max-width: 320px;
  font-weight: 300;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.social-btn {
  width: 44px; height: 44px;
  background: rgba(245, 240, 232, 0.07);
  border: 1px solid rgba(184, 144, 42, 0.25);
  display: flex; align-items: center; justify-content: center;
  color: rgba(245, 240, 232, 0.5);
  text-decoration: none;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  transition: all 0.25s;
}

.social-btn:hover {
  background: var(--gold);
  color: #fff;
}

.social-btn svg {
  width: 16px; height: 16px;
}

.footer-right {
  display: flex;
  justify-content: flex-end;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  text-align: right;
}

.footer-links a {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(184, 144, 42, 0.15);
  padding: 20px 64px;
  text-align: center;
}

.footer-copy {
  font-size: 11px;
  color: rgba(245, 240, 232, 0.25);
  letter-spacing: 0.05em;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}