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

:root {
  --ink: #17202a;
  --muted: #667085;
  --gold: #a67c00;
  --gold-dark: #745500;
  --paper: #fbf8f1;
  --ivory: #f6efe2;
  --line: #d8c7a4;
  --blue: #eef3f7;
  --white: #ffffff;
  --success: #effaf3;
  --shadow: 0 24px 60px rgba(23, 32, 42, .10);
  --shadow-soft: 0 12px 36px rgba(23, 32, 42, .08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, var(--paper), #fff 40%, var(--paper));
  font-family: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.58;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.skip-link {
  position: absolute;
  left: -9999px;
  top: 10px;
  background: var(--ink);
  color: var(--white);
  padding: .7rem 1rem;
  border-radius: 999px;
  z-index: 1000;
}
.skip-link:focus { left: 10px; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.brand-wordmark {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: .01em;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  line-height: 1;
}
.brand-mark {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-dark);
  background: rgba(255,255,255,.78);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(251, 248, 241, .86);
  border-bottom: 1px solid rgba(216, 199, 164, .55);
}
.navbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: .72rem;
  text-decoration: none;
}
.brand small { display: block; color: var(--muted); margin-top: .18rem; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: .1rem; list-style: none; padding: 0; margin: 0; }
.nav-links a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: .6rem .62rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .9rem;
  color: #344054;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { background: rgba(166, 124, 0, .10); color: var(--gold-dark); }
.nav-actions { display: flex; align-items: center; gap: .6rem; }
.lang-switch { display: inline-flex; gap: .2rem; padding: .2rem; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.7); }
.lang-switch a { text-decoration: none; font-size: .84rem; font-weight: 700; padding: .25rem .52rem; border-radius: 999px; color: var(--muted); }
.lang-switch a.active { background: var(--ink); color: var(--white); }
.menu-toggle { display: none; border: 1px solid var(--line); background: var(--white); border-radius: 999px; padding: .65rem .85rem; font-weight: 700; color: var(--ink); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  text-decoration: none;
  border-radius: 999px;
  padding: .86rem 1.2rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--ink); color: var(--white); box-shadow: var(--shadow-soft); }
.btn-primary:hover { background: #0f1620; }
.btn-outline { background: rgba(255,255,255,.65); border-color: var(--line); color: var(--ink); }
.btn-outline:hover { background: var(--white); box-shadow: var(--shadow-soft); }
.btn-gold { background: var(--gold-dark); color: var(--white); box-shadow: var(--shadow-soft); }
.kicker { color: var(--gold-dark); text-transform: uppercase; letter-spacing: .14em; font-weight: 800; font-size: .86rem; }
.hero { padding: 78px 0 54px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr); gap: 3rem; align-items: center; }
.hero h1 { font-family: "Playfair Display", Georgia, serif; font-size: clamp(3rem, 6.4vw, 5.85rem); line-height: .98; letter-spacing: -.045em; margin: .4rem 0 1rem; }
.hero p.lead { font-size: clamp(1.15rem, 2vw, 1.35rem); color: #344054; max-width: 780px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.hero-card {
  background: rgba(255,255,255,.74);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: -70px -80px auto auto;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(166, 124, 0, .10);
}
.hero-card-inner { position: relative; }
.metric-list { display: grid; gap: .7rem; margin-top: 1rem; }
.metric { display: flex; justify-content: space-between; gap: 1rem; border: 1px solid rgba(216, 199, 164, .65); background: #fff; border-radius: 16px; padding: .92rem 1rem; }
.metric strong { font-family: "Playfair Display", Georgia, serif; font-size: 1.15rem; }
.section { padding: 62px 0; }
.section-alt { background: linear-gradient(180deg, rgba(248,243,234,.8), rgba(255,255,255,.8)); border-top: 1px solid rgba(216,199,164,.5); border-bottom: 1px solid rgba(216,199,164,.5); }
.section-header { max-width: 780px; margin-bottom: 2rem; }
h2 { font-family: "Playfair Display", Georgia, serif; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.08; letter-spacing: -.025em; margin: .2rem 0 .8rem; }
h3 { font-size: 1.28rem; line-height: 1.22; margin: .2rem 0 .45rem; }
.muted { color: var(--muted); }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.card {
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(216, 199, 164, .75);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  box-shadow: 0 8px 28px rgba(23,32,42,.045);
}
.card a.card-link { text-decoration: none; }
.card p:last-child { margin-bottom: 0; }
.pill { display: inline-flex; align-items: center; padding: .28rem .65rem; border-radius: 999px; font-size: .83rem; font-weight: 700; background: var(--blue); color: #344054; }
.pill.gold { background: rgba(166,124,0,.11); color: var(--gold-dark); }
.list-check { list-style: none; padding: 0; margin: 1rem 0 0; }
.list-check li { position: relative; padding-left: 1.7rem; margin: .52rem 0; }
.list-check li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--gold-dark); font-weight: 900; }
.service-hero { padding: 58px 0 38px; }
.service-hero h1 { font-family: "Playfair Display", Georgia, serif; font-size: clamp(2.8rem, 5vw, 4.8rem); line-height: 1; letter-spacing: -.04em; margin: .3rem 0 1rem; }
.breadcrumb { display: flex; gap: .4rem; align-items: center; font-size: .9rem; color: var(--muted); margin-bottom: 1rem; }
.breadcrumb a { color: var(--gold-dark); text-decoration: none; font-weight: 700; }
.content-wrap { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 2rem; align-items: start; }
.sidebar { position: sticky; top: 96px; }
.cta-panel { background: var(--ink); color: var(--white); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow); }
.cta-panel .muted { color: #d0d5dd; }
.cta-panel .btn { margin-top: 1rem; }
.process { counter-reset: step; display: grid; gap: .85rem; }
.process li { list-style: none; counter-increment: step; display: grid; grid-template-columns: 42px 1fr; gap: .8rem; align-items: start; background: #fff; border: 1px solid rgba(216,199,164,.75); padding: 1rem; border-radius: 16px; }
.process li::before { content: counter(step); width: 42px; height: 42px; border-radius: 50%; background: var(--ivory); display: grid; place-items: center; font-weight: 900; color: var(--gold-dark); }
.faq details { border: 1px solid rgba(216,199,164,.75); background: #fff; border-radius: 16px; padding: 1rem 1.1rem; margin-bottom: .75rem; }
.faq summary { cursor: pointer; font-weight: 800; }
.contact-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-card label { display: block; font-weight: 800; margin: .9rem 0 .25rem; }
.input, textarea, select { width: 100%; border: 1px solid var(--line); border-radius: 14px; padding: .85rem .95rem; font: inherit; background: #fff; }
textarea { min-height: 140px; resize: vertical; }
.site-footer { background: #111827; color: #f9fafb; padding: 46px 0; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 2rem; }
.site-footer a { color: #f9fafb; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .45rem; }
.footer-small { margin-top: 2rem; color: #d0d5dd; font-size: .92rem; border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.4rem; }
.notice { border-left: 4px solid var(--gold-dark); background: var(--ivory); padding: 1rem 1.2rem; border-radius: 0 16px 16px 0; }
@media (max-width: 980px) {
  .hero-grid, .content-wrap, .contact-panel { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nav-links {
    position: absolute;
    inset: 78px 20px auto 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: .2rem;
    padding: .8rem;
    background: rgba(255,255,255,.98);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .menu-toggle { display: inline-flex; }
  .nav-actions .btn-primary { display: none; }
}
@media (max-width: 700px) {
  .container { width: min(100% - 28px, var(--max)); }
  .hero { padding-top: 44px; }
  .grid-2, .grid-3, .footer-grid { grid-template-columns: 1fr; }
  .brand small { display: none; }
  .brand-mark { width: 40px; height: 40px; }
  .section { padding: 44px 0; }
}
