:root {
  --ink: #1b1b1b;
  --ink-soft: #4b4b4b;
  --gold: #c8a24a;
  --gold-dark: #9a7628;
  --paper: #fbfaf7;
  --white: #ffffff;
  --line: rgba(27, 27, 27, 0.12);
  --shadow: 0 24px 80px rgba(27, 27, 27, 0.10);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(200, 162, 74, 0.10), transparent 34rem),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
  line-height: 1.6;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.1rem clamp(1.25rem, 4vw, 4.5rem);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand img {
  display: block;
  width: min(340px, 58vw);
  height: auto;
}

.nav {
  display: flex;
  gap: clamp(1rem, 2vw, 2rem);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav a {
  color: var(--ink);
  text-decoration: none;
  opacity: 0.72;
  transition: color 160ms ease, opacity 160ms ease;
}

.nav a:hover {
  color: var(--gold-dark);
  opacity: 1;
}

.hero {
  min-height: 76vh;
  display: grid;
  place-items: center;
  padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 4vw, 4.5rem);
}

.hero-inner {
  max-width: 1040px;
  text-align: center;
}

.eyebrow,
.section-label {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.02;
}

h1 {
  margin-top: 1rem;
  font-size: clamp(3.2rem, 8.4vw, 7.8rem);
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  letter-spacing: -0.032em;
}

h3 { font-size: 1.65rem; }

.hero-copy {
  max-width: 760px;
  margin: 1.5rem auto 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
}

.hero-actions {
  margin-top: 2.3rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.82rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover { transform: translateY(-1px); }

.button.primary {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 12px 32px rgba(27, 27, 27, 0.16);
}

.button.secondary {
  color: var(--ink);
  background: transparent;
}

.section {
  padding: clamp(4rem, 7vw, 7rem) clamp(1.25rem, 4vw, 4.5rem);
  border-top: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: start;
}

.section-copy {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.section-copy p:first-child { margin-top: 0; }
.narrow { max-width: 620px; }

.cards-section h2 {
  max-width: 760px;
  margin-top: 0.8rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.4rem;
}

.card {
  min-height: 240px;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 60px rgba(27, 27, 27, 0.05);
}

.card p { color: var(--ink-soft); }

.statement {
  border-top: none;
  padding-top: 0;
}

.statement-box {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: calc(var(--radius) + 10px);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.statement-box::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(200, 162, 74, 0.42);
  border-radius: var(--radius);
  pointer-events: none;
}

.statement-box p {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 3.8rem);
  line-height: 1.12;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

input, select, textarea {
  width: 100%;
  border: 1px solid rgba(27, 27, 27, 0.18);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  color: var(--ink);
  background: #fff;
  font: inherit;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 162, 74, 0.16);
}

textarea { resize: vertical; }

.form-status {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1.25rem, 4vw, 4.5rem);
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.footer-note {
  color: var(--gold-dark);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .split, .contact-section { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; }
}

@media (max-width: 520px) {
  .nav {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .hero { min-height: auto; }
  .button { width: 100%; }
}
