
:root {
  --cream: #F4EBDD;
  --paper: #FFF9F0;
  --forest: #30453A;
  --wine: #8A3430;
  --gold: #B89562;
  --brown: #2B211C;
  --muted: #6D5A50;
  --line: #D8C8B2;
  --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--brown);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

a { color: inherit; }

.wrap {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 249, 240, .95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.nav {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand img {
  display: block;
  width: 96px;
  height: 96px;
  object-fit: contain;
  border-radius: 50%;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

nav a {
  text-decoration: none;
  font-size: .95rem;
  font-weight: 600;
}

nav a:hover { color: var(--wine); }

.hero {
  padding: 92px 0 88px;
  background:
    radial-gradient(circle at 80% 20%, rgba(184,149,98,.22), transparent 28%),
    linear-gradient(135deg, #fffaf3, #efe2d0);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, .65fr);
  gap: 70px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .76rem;
  font-weight: 700;
  color: var(--wine);
}

h1, h2, h3 {
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  line-height: 1.03;
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.4rem, 7vw, 6.7rem);
  letter-spacing: -.035em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.3rem, 4vw, 3.7rem);
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.lead {
  max-width: 690px;
  font-size: 1.2rem;
  color: #5d4b42;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
}

.button {
  display: inline-block;
  padding: 13px 20px;
  border-radius: 999px;
  background: var(--wine);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.button:hover { filter: brightness(.93); }

.text-link {
  color: var(--forest);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.hero-card {
  min-height: 360px;
  padding: 38px;
  border: 1px solid var(--gold);
  background: var(--forest);
  color: #fff8ea;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  box-shadow: 18px 18px 0 rgba(138,52,48,.08);
}

.ornament {
  font-size: 2.1rem;
  color: #e0bb7e;
}

.hero-card p {
  margin: 9px 0;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .78rem;
}

.hero-card strong {
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  font-size: 2.25rem;
}

.section { padding: 92px 0; }

.section.alt {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.story-grid,
.find-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 85px;
}

.story-copy,
.find-copy {
  font-size: 1.06rem;
}

.story-copy p:first-child,
.find-copy p:first-child {
  margin-top: 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}

.card {
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.card-number {
  display: block;
  margin-bottom: 36px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--wine);
}

.note {
  margin-top: 24px;
  font-size: .92rem;
  color: var(--muted);
}

.availability-box {
  margin: 30px 0;
  padding: 22px 24px;
  border-left: 4px solid var(--wine);
  background: var(--cream);
}

.availability-label {
  display: block;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  font-weight: 700;
  color: var(--wine);
}

.availability-box strong {
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  font-size: 1.65rem;
}

.contact-line {
  margin-bottom: 0;
  font-weight: 700;
}

.contact-line a {
  color: var(--forest);
  text-underline-offset: 4px;
}

.domain-line {
  margin-top: 4px;
  color: var(--muted);
}

.closing {
  padding: 35px 0;
  background: var(--forest);
  color: #fff7e8;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.closing-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  text-align: center;
}

.closing p {
  margin: 0;
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 2.2rem);
}

footer {
  padding: 44px 0;
  background: var(--brown);
  color: #f5e8d5;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-start;
}

.footer-brand strong {
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  font-size: 1.45rem;
}

.footer-brand p,
.footer-meta p {
  margin: 4px 0 0;
}

.footer-meta {
  text-align: right;
  color: #d7c5af;
}

.footer-meta a { color: inherit; }

@media (max-width: 760px) {
  .nav {
    min-height: auto;
    padding: 14px 0;
    align-items: center;
  }

  .brand img {
    width: 76px;
    height: 76px;
  }

  nav {
    gap: 12px;
    justify-content: flex-end;
  }

  .hero { padding: 62px 0; }

  .hero-grid,
  .story-grid,
  .find-grid,
  .cards {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .story-grid,
  .find-grid {
    gap: 40px;
  }

  .hero-card { min-height: 260px; }

  .section { padding: 64px 0; }

  .footer-grid {
    flex-direction: column;
  }

  .footer-meta {
    text-align: left;
  }
}


/* Privacy page */
.privacy-main {
  padding: 72px 0 92px;
}

.privacy-wrap {
  max-width: 820px;
}

.privacy-back {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--forest);
  font-weight: 700;
  text-underline-offset: 4px;
}

.privacy-main h1 {
  font-size: clamp(3rem, 6vw, 5.2rem);
  margin-bottom: 16px;
}

.privacy-intro {
  font-size: 1.15rem;
  color: #5d4b42;
  margin-bottom: 42px;
}

.privacy-section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.privacy-section h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.privacy-section ul {
  padding-left: 1.25rem;
}

.privacy-section li + li {
  margin-top: 8px;
}

.privacy-note {
  margin-top: 34px;
  padding: 20px 22px;
  background: var(--cream);
  border-left: 4px solid var(--wine);
}
