@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Cormorant+Garamond:wght@600;700&display=swap');

:root {
  --bg: #f6f1e8;
  --bg-soft: #fbf8f3;
  --text: #132319;
  --text-soft: #465147;
  --gold: #c7a063;
  --gold-soft: #ddc08f;
  --green: #102018;
  --border: rgba(16, 32, 24, 0.08);
  --border-strong: rgba(199, 160, 99, 0.38);
  --shadow: 0 22px 60px rgba(16, 32, 24, 0.08);
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(199, 160, 99, 0.10), transparent 28rem),
    linear-gradient(180deg, #faf7f1 0%, #f6f1e8 100%);
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
}

.hero {
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
}

.hero-card {
  width: min(100%, 900px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 4vw, 3.25rem);
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.top-accent {
  width: 96px;
  height: 4px;
  margin: 0 auto 1.25rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--green));
}

.brand-logo {
  width: min(190px, 46vw);
  height: auto;
  display: block;
  margin: 0 auto 1rem;
}

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

h1 {
  margin: 0.65rem auto 0;
  max-width: 12ch;
  color: var(--green);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 7vw, 5.3rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.lead {
  max-width: 650px;
  margin: 1rem auto 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 2vw, 1.08rem);
  line-height: 1.8;
}

.about,
.contact {
  margin-top: 2rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--bg-soft);
  text-align: left;
}

.about h2,
.contact h2 {
  margin: 0 0 0.9rem;
  color: var(--green);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.3rem);
  font-weight: 700;
  text-align: center;
}

.about p {
  margin: 0 0 1rem;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.8;
}

.about p:last-child {
  margin-bottom: 0;
}

.actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.35rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 56px;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button svg {
  width: 1.18rem;
  height: 1.18rem;
  fill: currentColor;
  flex: 0 0 auto;
}

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

.button-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 28px rgba(16, 32, 24, 0.14);
}

.button-primary:hover {
  box-shadow: 0 16px 32px rgba(16, 32, 24, 0.18);
}

.button-secondary {
  color: var(--green);
  background: transparent;
  border-color: var(--border-strong);
}

.button-secondary:hover {
  background: rgba(199, 160, 99, 0.08);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  padding: 0 1rem 1.2rem;
  color: rgba(19, 35, 25, 0.62);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.button:focus-visible {
  outline: 3px solid rgba(199, 160, 99, 0.4);
  outline-offset: 4px;
}

@media (max-width: 720px) {
  .hero {
    padding: 1rem 0.75rem;
  }

  .hero-card {
    border-radius: 22px;
    padding: 1.2rem 1rem 1.4rem;
  }

  .brand-logo {
    width: min(150px, 42vw);
  }

  .about,
  .contact {
    margin-top: 1.35rem;
    padding: 1.15rem 1rem;
    border-radius: 18px;
  }

  .about p {
    font-size: 0.95rem;
    line-height: 1.72;
  }

  .actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    font-size: 0.92rem;
  }

  .site-footer {
    font-size: 0.68rem;
    padding-bottom: 0.9rem;
  }
}
