/* ============== RESET & BASE ============== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-weight: 400;
  color: #0c0c0e;
  background: #f6f4ef;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

:root {
  --ink: #0c0c0e;
  --bone: #f6f4ef;
  --cream: #ede8dc;
  --gold: #b89968;
  --gold-deep: #8a6f3f;
  --accent: #d44d2a;
  --muted: #6b6960;
  --line: rgba(12,12,14,0.12);
}

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 28px; }

/* ============== TYPOGRAPHY ============== */
h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
h1 em, h2 em, h3 em { font-style: italic; font-weight: 400; color: var(--gold-deep); }
h1 { font-size: clamp(2.6rem, 6vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.5rem); }
h3 { font-size: 1.4rem; font-weight: 600; letter-spacing: -0.01em; }

.eyebrow {
  display: inline-block;
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.eyebrow.dark { color: var(--gold-deep); }

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--muted);
  max-width: 580px;
  line-height: 1.55;
}

.highlight {
  position: relative;
  display: inline-block;
}
.highlight::after {
  content: "";
  position: absolute;
  left: -4px; right: -4px; bottom: 4px;
  height: 14px;
  background: var(--gold);
  opacity: 0.35;
  z-index: -1;
  border-radius: 2px;
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 999px;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: var(--bone); }
.btn-primary:hover { background: var(--gold-deep); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* ============== HEADER ============== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246, 244, 239, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  background: var(--ink); color: var(--bone);
  font-family: 'Fraunces', serif;
  font-weight: 600; font-size: 1.2rem;
  border-radius: 50%;
}
.brand-name {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.brand-name em { font-style: italic; color: var(--gold-deep); font-weight: 400; }

.nav { display: flex; gap: 32px; }
.nav a {
  font-size: 0.95rem;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav a:hover, .nav a.active { color: var(--gold-deep); }
.nav a.active::after {
  content: ""; position: absolute; left: 0; bottom: -4px;
  width: 16px; height: 2px; background: var(--gold);
}

.nav-cta { padding: 11px 22px; font-size: 0.9rem; }
.menu-toggle {
  display: none;
  font-size: 1.6rem;
  color: var(--ink);
}

@media (max-width: 880px) {
  .nav, .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bone);
    padding: 24px 28px;
    border-bottom: 1px solid var(--line);
    gap: 18px;
  }
}

/* ============== HERO ============== */
.hero {
  position: relative;
  padding: 100px 0 120px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 10%, rgba(184,153,104,0.18), transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(212,77,42,0.06), transparent 50%);
  pointer-events: none;
}
.hero-inner { position: relative; }
.hero h1 { margin-bottom: 28px; max-width: 980px; }
.hero .lead { margin-bottom: 40px; }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 80px; }

.hero-meta {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
  max-width: 720px;
}
.hero-meta div { display: flex; flex-direction: column; }
.hero-meta strong {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--ink);
}
.hero-meta span { font-size: 0.85rem; color: var(--muted); margin-top: 4px; }

@media (max-width: 640px) {
  .hero-meta { grid-template-columns: 1fr 1fr; gap: 20px; }
}

/* ============== SECTIONS ============== */
.section { padding: 110px 0; }
.section-light { background: var(--bone); }
.section-dark {
  background: var(--ink);
  color: var(--bone);
}
.section-dark h2, .section-dark h3 { color: var(--bone); }
.section-dark .eyebrow { color: var(--gold); }

.section-head { margin-bottom: 64px; max-width: 720px; }
.section-head h2 { margin-bottom: 1rem; }

/* ============== GRID 3 (cards) ============== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px 32px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.15);
}
.card-num {
  display: inline-block;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-deep);
  margin-bottom: 20px;
}
.card h3 { margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 0.97rem; }

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

/* ============== SERVICES GRID ============== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.service {
  padding: 44px 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  border-right: 1px solid rgba(255,255,255,0.1);
  position: relative;
  transition: background 0.3s;
  display: block;
}
.service:nth-child(2n) { border-right: none; }
.service:hover { background: rgba(184,153,104,0.08); }
.service h3 { margin-bottom: 12px; color: var(--bone); }
.service p { color: rgba(246,244,239,0.65); font-size: 0.97rem; max-width: 460px; }
.service .arrow {
  position: absolute; top: 44px; right: 36px;
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 0.25s;
}
.service:hover .arrow { transform: translateX(6px); }

@media (max-width: 720px) {
  .services-grid { grid-template-columns: 1fr; }
  .service { border-right: none !important; }
}

/* ============== CTA ============== */
.cta-section {
  background: var(--cream);
  padding: 120px 0;
  text-align: center;
  border-top: 1px solid var(--line);
}
.cta-inner { max-width: 720px; margin: 0 auto; }
.cta-section h2 { margin-bottom: 20px; }
.cta-section p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 36px;
}

/* ============== FOOTER ============== */
.site-footer {
  background: var(--ink);
  color: rgba(246,244,239,0.75);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-footer .brand-mark { background: var(--bone); color: var(--ink); }
.site-footer .brand-name { color: var(--bone); margin-bottom: 16px; display: inline-block; }
.footer-about {
  font-size: 0.92rem;
  line-height: 1.65;
  margin-top: 16px;
  max-width: 320px;
}
.site-footer h4 {
  color: var(--bone);
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
  font-weight: 600;
}
.site-footer a {
  display: block;
  font-size: 0.92rem;
  padding: 5px 0;
  transition: color 0.2s;
}
.site-footer a:hover { color: var(--gold); }
.site-footer p { font-size: 0.92rem; line-height: 1.65; margin-bottom: 10px; }
.footer-bottom {
  padding-top: 28px;
  display: flex; justify-content: space-between;
}
.footer-bottom small { color: rgba(246,244,239,0.5); font-size: 0.82rem; }

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============== INTERNAL PAGES ============== */
.page-hero {
  padding: 90px 0 60px;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { margin-bottom: 16px; max-width: 800px; }
.page-hero p { color: var(--muted); font-size: 1.1rem; max-width: 640px; }

.content-section { padding: 80px 0; }
.content-section h2 {
  font-size: 1.8rem;
  margin: 40px 0 16px;
}
.content-section h3 {
  font-size: 1.2rem;
  margin: 28px 0 10px;
  color: var(--gold-deep);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
}
.content-section p, .content-section li {
  font-size: 1rem;
  color: #2a2a2c;
  margin-bottom: 14px;
  line-height: 1.75;
}
.content-section ul, .content-section ol { padding-left: 24px; margin-bottom: 16px; }
.content-section li { margin-bottom: 8px; }
.content-section .lead-block {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--ink);
  border-left: 3px solid var(--gold);
  padding: 6px 0 6px 24px;
  margin: 36px 0;
  max-width: 720px;
}

.legal-meta {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 14px 20px;
  background: var(--cream);
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 30px;
}

/* ============== CONTACT ============== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info-card {
  background: var(--cream);
  border-radius: 18px;
  padding: 40px;
  border: 1px solid var(--line);
}
.contact-info-card h3 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 24px 0 6px;
}
.contact-info-card h3:first-child { margin-top: 0; }
.contact-info-card p { color: var(--ink); font-size: 1rem; line-height: 1.6; }

.contact-form {
  display: flex; flex-direction: column; gap: 18px;
}
.contact-form label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  display: block;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bone);
  font: inherit;
  font-size: 0.97rem;
  color: var(--ink);
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--ink);
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.contact-form .consent {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; color: var(--muted);
  line-height: 1.5;
}
.contact-form .consent input { width: auto; margin-top: 4px; }
.contact-form .consent a { color: var(--gold-deep); text-decoration: underline; }

.form-success {
  background: #e6f4ea;
  color: #1e4620;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 0.95rem;
  display: none;
}
.form-success.show { display: block; }

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form .form-row { grid-template-columns: 1fr; }
}
