@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --gold: #d99a08;
  --gold-light: #f1c45c;
  --gold-pale: #fff8e8;
  --brown: #2d241e;
  --text: #514941;
  --cream: #fbfaf7;
  --white: #ffffff;
  --line: #eadfca;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 40px)); margin: auto; }
.narrow { max-width: 820px; }

.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(251,250,247,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(234,223,202,.75);
}
.nav { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand img { width: 175px; display: block; }
nav { display: flex; align-items: center; gap: 28px; font-size: .94rem; font-weight: 600; }
nav a:not(.nav-button):hover { color: var(--gold); }
.nav-button { padding: 11px 18px; border: 1px solid var(--gold); border-radius: 999px; color: var(--gold); }

.hero {
  min-height: 720px;
  display: flex; align-items: center;
  background:
    radial-gradient(circle at 80% 15%, rgba(241,196,92,.22), transparent 30%),
    linear-gradient(135deg, #fffdf9 0%, #fbf4e4 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 80px; align-items: center; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  font-size: .78rem;
}
h1, h2, h3 { color: var(--brown); }
h1, h2 { font-family: "Playfair Display", Georgia, serif; line-height: 1.12; }
h1 { font-size: clamp(3rem, 6vw, 5.5rem); margin: 0 0 24px; letter-spacing: -.03em; }
h1 span { color: var(--gold); }
h2 { font-size: clamp(2.1rem, 4vw, 3.5rem); margin: 0 0 18px; }
h3 { margin: 0 0 8px; font-size: 1.2rem; }
.lead { max-width: 680px; font-size: 1.15rem; color: #665c53; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button {
  display: inline-flex; justify-content: center; align-items: center;
  min-height: 50px; padding: 0 23px; border-radius: 999px;
  font-weight: 700; transition: .2s ease;
}
.button:hover { transform: translateY(-2px); }
.primary { background: var(--gold); color: white; box-shadow: 0 10px 24px rgba(217,154,8,.2); }
.secondary { border: 1px solid var(--line); background: white; color: var(--brown); }

.hero-card {
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(217,154,8,.25);
  border-radius: 34px;
  padding: 48px;
  box-shadow: 0 30px 70px rgba(67,52,28,.10);
}
.gold-circle {
  width: 120px; height: 120px; border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: 30px;
  background: linear-gradient(145deg, #f4c95f, #c88400);
  color: white; font-family: "Playfair Display", Georgia, serif;
  font-size: 2.5rem; box-shadow: 0 15px 35px rgba(217,154,8,.25);
}
.gold-circle span { font-size: 1.8rem; }
.hero-card h2 { font-size: 2rem; }

.intro { padding: 115px 0; background: white; }
.intro p:last-child { font-size: 1.2rem; color: #6b625b; }

.services { padding: 115px 0; }
.section-heading { display: grid; grid-template-columns: 1fr .65fr; gap: 70px; align-items: end; margin-bottom: 50px; }
.section-heading > p { margin: 0 0 8px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  padding: 34px; border-radius: 25px; background: white;
  border: 1px solid var(--line);
  min-height: 250px;
}
.icon {
  width: 45px; height: 45px; border-radius: 50%; display: grid; place-items: center;
  background: var(--gold-pale); color: var(--gold); font-size: 1.35rem; margin-bottom: 24px;
}

.how { padding: 115px 0; background: #2d241e; color: #eee7de; }
.how h2 { color: white; }
.how .eyebrow { color: var(--gold-light); }
.how-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: start; }
.how-grid > div:first-child p:last-child { color: #d6cec5; font-size: 1.08rem; }
.steps { border-top: 1px solid rgba(255,255,255,.18); }
.step { display: grid; grid-template-columns: 70px 1fr; gap: 20px; padding: 25px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.step > span { color: var(--gold-light); font-weight: 700; }
.step h3 { color: white; margin-bottom: 4px; }
.step p { margin: 0; color: #cfc6bc; }

.quote { padding: 90px 0; background: var(--gold-pale); }
blockquote {
  margin: 0 auto; max-width: 900px; text-align: center;
  color: var(--brown); font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.2;
}

.contact { padding: 110px 0; background: white; }
.contact-box {
  display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center;
  padding: 55px; border-radius: 32px;
  background: linear-gradient(135deg, #fffaf0, #f8eed9);
  border: 1px solid var(--line);
}
.contact-box h2 { max-width: 680px; }
.contact-box p { max-width: 680px; }
.contact-actions { display: flex; flex-direction: column; gap: 12px; min-width: 190px; }

footer { padding: 32px 0; background: var(--cream); border-top: 1px solid var(--line); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.footer-logo { width: 145px; }
footer p { margin: 0; font-size: .88rem; color: #7b7168; }

@media (max-width: 850px) {
  nav a:not(.nav-button) { display: none; }
  .hero { padding: 80px 0; }
  .hero-grid, .how-grid, .section-heading, .contact-box { grid-template-columns: 1fr; gap: 35px; }
  .hero-card { max-width: 600px; }
  .cards { grid-template-columns: 1fr; }
  .contact-actions { flex-direction: row; flex-wrap: wrap; }
  .footer-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 520px) {
  .container { width: min(100% - 28px, 1120px); }
  .nav { min-height: 70px; }
  .brand img { width: 145px; }
  h1 { font-size: 3rem; }
  .hero-card, .contact-box { padding: 30px; }
  .actions, .contact-actions { flex-direction: column; }
  .button { width: 100%; }
}
