:root {
  --bg: #32373c;
  --bg-alt: #2a2e33;
  --surface: #3d4349;
  --cream: #f3e9dc;
  --muted: #c4b3a1;
  --copper: #c8834f;
  --bronze: #a8744a;
  --gold: #e0b77a;
  --line: rgba(224, 183, 122, 0.18);
  --radius: 14px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font: 400 17px/1.7 var(--sans);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }
a { color: var(--gold); }

.wrap { width: min(1100px, 100% - 32px); margin-inline: auto; }
.narrow { width: min(760px, 100% - 32px); }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.1; margin: 0 0 .5em; }
h1 { font-size: clamp(3rem, 8vw, 5.5rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2.2rem, 5vw, 3.2rem); }
h3 { font-size: 1.6rem; }
.eyebrow {
  font-size: .78rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--copper); margin: 0 0 1rem;
}
.muted { color: var(--muted); }

/* Buttons */
.btn {
  display: inline-block; padding: .85em 1.6em; border-radius: 999px; border: 1px solid var(--copper);
  background: linear-gradient(135deg, var(--gold), var(--copper));
  color: #1f1712; font-weight: 600; text-decoration: none; font-size: .95rem; cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px -10px rgba(200, 131, 79, .7); }
.btn-ghost { background: transparent; color: var(--cream); border-color: var(--line); }
.btn-small { padding: .55em 1.1em; font-size: .85rem; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(50, 55, 60, .85); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo { display: flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--cream);
  font-family: var(--serif); font-size: 1.35rem; font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links a:not(.btn) { color: var(--muted); text-decoration: none; font-size: .92rem; }
.nav-links a:not(.btn):hover { color: var(--cream); }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--cream); margin: 6px 0; transition: transform .2s; }

/* Hero */
.hero {
  position: relative; overflow: hidden; min-height: calc(100vh - 68px);
  display: grid; place-items: center; text-align: center; padding: 6rem 0;
  background: radial-gradient(ellipse at 50% 60%, #4a5158 0%, var(--bg) 65%);
}
.hero-inner { position: relative; z-index: 1; max-width: 760px; }
.lede { font-size: 1.2rem; color: var(--muted); max-width: 580px; margin: 0 auto 2.2rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.rings { position: absolute; inset: 0; display: grid; place-items: center; pointer-events: none; }
.rings span {
  position: absolute; width: 260px; aspect-ratio: 1; border-radius: 50%;
  border: 1px solid rgba(224, 183, 122, .35);
  animation: ripple 8s ease-out infinite;
}
.rings span:nth-child(2) { animation-delay: 2s; }
.rings span:nth-child(3) { animation-delay: 4s; }
.rings span:nth-child(4) { animation-delay: 6s; }
@keyframes ripple {
  from { transform: scale(.4); opacity: 0; }
  15% { opacity: 1; }
  to { transform: scale(4.2); opacity: 0; }
}

/* Sections */
.section { padding: clamp(4.5rem, 10vw, 7.5rem) 0; }
.section-alt { background: var(--bg-alt); border-block: 1px solid var(--line); }
.split { display: grid; grid-template-columns: 1fr 1.3fr; gap: 3rem; align-items: start; }
.prose p { margin-top: 0; color: var(--muted); font-size: 1.1rem; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem; transition: transform .25s, border-color .25s;
}
.card:hover { transform: translateY(-4px); border-color: rgba(224, 183, 122, .45); }
.card p { color: var(--muted); margin: 0; }
.card-icon { font-size: 2rem; color: var(--copper); margin-bottom: 1rem; line-height: 1; }

.steps { list-style: none; padding: 0; margin: 2.5rem 0 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.steps li { border-top: 1px solid var(--copper); padding-top: 1.5rem; }
.steps span { font-family: var(--serif); font-size: 1.1rem; color: var(--copper); }
.steps h3 { margin-top: .4rem; }
.steps p { color: var(--muted); margin: 0; }

details { border-bottom: 1px solid var(--line); padding: 1.2rem 0; }
details:first-of-type { margin-top: 1.5rem; border-top: 1px solid var(--line); }
summary { cursor: pointer; font-family: var(--serif); font-size: 1.45rem; list-style: none; display: flex; justify-content: space-between; gap: 1rem; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--copper); transition: transform .2s; }
details[open] summary::after { transform: rotate(45deg); }
details p { color: var(--muted); margin: .8rem 0 0; }

/* Form */
.contact-form { display: grid; gap: 1.1rem; background: var(--surface); padding: 2rem; border-radius: var(--radius); border: 1px solid var(--line); }
.contact-form label { display: grid; gap: .4rem; font-size: .88rem; color: var(--muted); font-weight: 500; }
.contact-form input, .contact-form select, .contact-form textarea {
  font: inherit; font-size: 1rem; color: var(--cream); background: var(--bg);
  border: 1px solid var(--line); border-radius: 10px; padding: .75em .9em; width: 100%;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--copper); box-shadow: 0 0 0 3px rgba(200, 131, 79, .25);
}
.contact-form .btn { justify-self: start; border: 0; }
.hp { position: absolute; left: -9999px; }
.form-status { margin: 0; font-size: .95rem; min-height: 1.5em; }
.form-status.ok { color: var(--gold); }
.form-status.err { color: #e88a6e; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); padding: 2rem 0; color: var(--muted); font-size: .9rem; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-inner p { margin: 0; }
.footer-inner a { text-decoration: none; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 860px) {
  .split, .cards, .steps { grid-template-columns: 1fr; }
  .split { gap: 1.5rem; }
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 68px; left: 0; right: 0; flex-direction: column; align-items: flex-start;
    gap: 1.2rem; padding: 1.5rem 16px 2rem; background: var(--bg); border-bottom: 1px solid var(--line);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .contact-form { padding: 1.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rings span { animation: none; opacity: .3; }
  .rings span:nth-child(2) { transform: scale(1.8); }
  .rings span:nth-child(3) { transform: scale(2.8); }
  .rings span:nth-child(4) { display: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Photo band */
.photo-band { padding: 0 0 clamp(4.5rem, 10vw, 7.5rem); }
.photo-band figure { margin-block: 0; }
.photo-band img {
  display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover;
  border-radius: var(--radius); border: 1px solid var(--line);
}
.side-photo {
  display: block; width: 100%; height: auto; margin-top: 1.5rem;
  border-radius: var(--radius); border: 1px solid var(--line);
}
.card-role {
  font-size: .75rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--copper); margin: 0 0 .8rem;
}
.steps span { text-transform: uppercase; letter-spacing: .14em; font-family: var(--sans); font-size: .78rem; font-weight: 600; }
.hero-details {
  display: inline-block; margin: 0 0 1.4rem; padding: .45em 1.2em; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(61, 67, 73, .6);
  color: var(--gold); font-weight: 500; font-size: .95rem;
}
.hero-details span { color: var(--copper); margin: 0 .35em; }
.card { display: flex; flex-direction: column; }
.card-link { margin-top: auto; padding-top: 1.2rem; font-size: .9rem; font-weight: 500; text-decoration: none; }
.card-link:hover { text-decoration: underline; }
.hero-details { margin-bottom: .6rem; }
.hero-includes { margin: 0 0 1.4rem; font-size: .88rem; color: var(--muted); }
.hero-details b { font-weight: 500; white-space: nowrap; }
@media (max-width: 480px) {
  .hero-details { font-size: .85rem; padding: .45em 1em; }
  .hero-details span { margin: 0 .2em; }
}
