:root {
  --bg: #f8f4ed;
  --bg-soft: #f0e7da;
  --surface: #fffaf2;
  --text: #2b2823;
  --muted: #5f564a;
  --brand: #7a4c23;
  --brand-strong: #5d3813;
  --line: rgba(84, 61, 38, 0.2);
  --shadow: 0 18px 45px rgba(57, 44, 30, 0.17);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 420px at 85% -80px, #ffe0a7 0, transparent 45%),
    radial-gradient(1000px 380px at -120px 20%, #f3d6b5 0, transparent 50%),
    var(--bg);
  line-height: 1.6;
}

h1,
h2,
h3 {
  margin: 0 0 0.75rem;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  line-height: 1.1;
  color: var(--brand-strong);
}

h1 {
  font-size: clamp(2.1rem, 4vw, 3.8rem);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

h3 {
  font-size: 1.4rem;
}

p,
li,
label {
  color: var(--text);
}

.container {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(9px);
  background: rgba(248, 244, 237, 0.85);
  border-bottom: 1px solid rgba(93, 56, 19, 0.15);
}

.site-header.scrolled {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.nav-shell {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  text-decoration: none;
  color: var(--brand-strong);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.25rem;
}

.nav-list a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.2s ease;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width 0.2s ease;
}

.nav-list a:hover {
  color: var(--brand);
}

.nav-list a:hover::after {
  width: 80%;
}

.section {
  padding: 4.5rem 0;
}

.hero {
  min-height: calc(100vh - 68px);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  inset: auto;
  right: -120px;
  top: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 35%, #ffe8c3 0, #f8cf84 35%, #ca8f36 70%, rgba(202, 143, 54, 0.12) 100%);
  opacity: 0.85;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-weight: 700;
  color: var(--brand);
  margin: 0 0 0.8rem;
}

.lead {
  font-size: 1.12rem;
  max-width: 70ch;
}

.section-muted {
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.82), rgba(255, 255, 255, 0.8));
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.copy-card,
article,
.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 1.6rem;
}

.with-top-spacing {
  margin-top: 1rem;
}

ul {
  margin: 0.4rem 0 0 1.25rem;
  padding: 0;
}

.copy-card + .copy-card {
  margin-top: 1rem;
}

.doc-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.doc-links li {
  margin: 0.4rem 0;
}

.doc-links a {
  color: var(--brand-strong);
  font-weight: 600;
}

.contact-form {
  display: grid;
  gap: 0.55rem;
}

label {
  font-weight: 600;
  font-size: 0.94rem;
}

input,
textarea,
button {
  width: 100%;
  font: inherit;
  border-radius: 10px;
}

input,
textarea {
  padding: 0.7rem 0.82rem;
  border: 1px solid rgba(95, 86, 74, 0.35);
  background: #fffdf9;
}

textarea {
  resize: vertical;
}

button {
  margin-top: 0.3rem;
  border: 0;
  background: linear-gradient(135deg, #925d2d, #60380f);
  color: #fff7ea;
  font-weight: 700;
  padding: 0.85rem 1rem;
  cursor: pointer;
  transition: transform 0.18s ease, filter 0.18s ease;
}

button:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.site-footer {
  background: #2f2419;
  color: #f6efe5;
  padding: 2rem 0 2.6rem;
}

.footer-shell {
  display: grid;
  gap: 0.75rem;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.15rem;
}

.site-footer a {
  color: #f6efe5;
  text-decoration: none;
}

@media (max-width: 940px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .nav-list {
    justify-content: flex-start;
  }
}
