:root {
  --ink: #17130f;
  --ink-soft: #3d342c;
  --paper: #faf7f1;
  --paper-alt: #f1ebe0;
  --gold: #b8893c;
  --gold-bright: #d4a34a;
  --line: rgba(23, 19, 15, 0.12);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1080px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.5rem;
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.brand img { width: 40px; height: 40px; border-radius: 50%; }

.site-nav { display: flex; gap: 1.6rem; }

.site-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.site-nav a:hover { color: var(--gold); }

/* Hero */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 78vh;
  padding: 5rem 1.5rem;
  text-align: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background: url("/hero.jpg") center 22% / cover no-repeat;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 10, 8, 0.55) 0%, rgba(12, 10, 8, 0.72) 100%);
}

.hero-inner { position: relative; max-width: 720px; }

.hero-badge {
  width: 140px;
  height: 140px;
  margin: 0 auto 1.75rem;
  border-radius: 50%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.1rem, 5.5vw, 3.6rem);
  line-height: 1.12;
  color: #fff;
  margin: 0 0 1.1rem;
  letter-spacing: 0.01em;
}

.hero-tagline {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 2vw, 1.15rem);
  margin: 0 auto 2.2rem;
  max-width: 34em;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn:hover { background: var(--gold-bright); }
.btn:disabled { opacity: 0.55; cursor: default; }

/* Sections */
.section { padding: 5.5rem 1.5rem; }
.section-alt { background: var(--paper-alt); }
.section-inner { max-width: var(--max); margin: 0 auto; }
.section-inner.narrow { max-width: 700px; }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.75rem;
}

.section h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
  margin: 0 0 1.5rem;
}

.section p { color: var(--ink-soft); margin: 0 0 1.15rem; }
.lead { font-size: 1.1rem; color: var(--ink) !important; }

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.card {
  display: block;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(23, 19, 15, 0.09);
}

.card img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: contain;
  background: var(--paper-alt);
  display: block;
}

.card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.35rem;
  margin: 0;
  line-height: 1.3;
  padding: 1.5rem 1.25rem;
}

/* Form */
form { margin-top: 2.25rem; }
.field { margin-bottom: 1.35rem; }

label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 0.45rem;
}

input, textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: border-color 0.2s;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
}

textarea { resize: vertical; }

.form-status {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  min-height: 1.4em;
}

.form-status.ok { color: #3f6b3f; }
.form-status.err { color: #a9432f; }

/* Footer */
.site-footer {
  padding: 3rem 1.5rem;
  text-align: center;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.9);
}

.site-footer p { margin: 0 0 0.35rem; font-size: 0.9rem; }
.site-footer .muted { color: rgba(255, 255, 255, 0.5); font-size: 0.82rem; }

@media (max-width: 640px) {
  .site-header { padding: 0.7rem 1rem; }
  .brand span { display: none; }
  .site-nav { gap: 1.1rem; }
  .section { padding: 4rem 1.25rem; }
}
