:root {
  --bg: #fffaf3;
  --paper: #fffdf9;
  --cream: #f8efe3;
  --gold: #b98a3d;
  --gold-dark: #8f6727;
  --text: #2d241d;
  --muted: #766a5f;
  --line: #ead8bf;
  --shadow: 0 22px 55px rgba(115, 77, 35, .12);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
}
a { color: inherit; text-decoration: none; }
.site-header {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6vw;
  background: rgba(255, 253, 249, .92);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
}
.logo { display: grid; line-height: 1; color: var(--gold-dark); }
.crown { font-size: 24px; text-align: center; }
.brand { font-family: 'Playfair Display', serif; font-size: 30px; }
.subbrand { text-transform: uppercase; letter-spacing: 9px; font-size: 10px; text-align: center; color: var(--muted); }
.nav { display: flex; gap: 34px; align-items: center; font-weight: 600; font-size: 14px; }
.nav a { padding: 11px 16px; border-radius: 999px; }
.nav a.active, .nav a:hover { background: var(--cream); color: var(--gold-dark); }
.menu-toggle { display: none; border: 0; background: transparent; font-size: 28px; }
.hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 44px;
  align-items: center;
  padding: 70px 8vw;
  background: radial-gradient(circle at 75% 40%, #f1d5a9 0, transparent 32%), linear-gradient(105deg, #fffaf3 0%, #fff8ef 48%, #f3dfc1 100%);
  border-bottom: 1px solid var(--line);
}
.eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: 4px; font-size: 13px; font-weight: 700; }
h1, h2, h3 { font-family: 'Playfair Display', serif; margin: 0; }
h1 { font-size: clamp(56px, 8vw, 105px); line-height: .92; }
h1 span, h2 span { color: var(--gold); }
h2 { font-size: clamp(34px, 4vw, 52px); line-height: 1.05; }
h3 { font-size: 23px; }
.hero-text { max-width: 560px; color: var(--muted); font-size: 18px; line-height: 1.8; }
.hero-memberships { margin-top: 22px; }
.hero-memberships > span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.association-logos { display: flex; align-items: center; gap: 24px; }
.association-logo { display: block; width: auto; object-fit: contain; }
.association-logos .tica-logo { height: 87px; }
.association-logos .cfa-logo { height: 65px; max-width: 265px; }
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 34px; }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid var(--gold);
}
.btn.primary { background: linear-gradient(135deg, #c79a4c, #9a6d29); color: white; box-shadow: 0 10px 25px rgba(154,109,41,.22); }
.btn.secondary { color: var(--gold-dark); background: rgba(255,255,255,.55); }
.hero-card, .soft-image, .card-image {
  background: linear-gradient(135deg, rgba(255,255,255,.35), rgba(198,145,66,.18)), url('/assets/mockup.png');
  background-size: cover;
  background-position: 77% 14%;
  box-shadow: var(--shadow);
}
.home-top-image {
  background-image: url("/assets/top.jpg");
}
.about-image {
  background-image: url("/assets/about.jpg");
}
.hero-card {
  min-height: 520px;
  border-radius: 38px;
  border: 1px solid rgba(255,255,255,.7);
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.trust-strip div { padding: 32px 4vw; border-right: 1px solid var(--line); font-size: 30px; color: var(--gold); }
.trust-strip strong { display: block; color: var(--text); font-size: 16px; margin-top: 8px; }
.trust-strip span { display: block; color: var(--muted); font-size: 13px; margin-top: 5px; }
.section, .split-section, .contact-grid, .page-title { padding: 70px 8vw; }
.split-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; background: var(--paper); border-bottom: 1px solid var(--line); }
.text-block p { color: var(--muted); line-height: 1.9; max-width: 620px; }
.soft-image { min-height: 410px; border-radius: 32px; background-position: 20% 48%; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 30px; }
.section-head a { color: var(--gold-dark); font-weight: 700; }
.pale { background: #fff6e9; }
.cards { display: grid; gap: 24px; }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.card { background: var(--paper); border: 1px solid var(--line); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); }
.card-image { height: 230px; background-position: 61% 45%; }
.card:nth-child(2) .card-image { background-position: 50% 45%; }
.card:nth-child(3) .card-image { background-position: 75% 45%; }
.card-body { padding: 22px; }
.card p { color: var(--muted); line-height: 1.7; }
.muted { color: var(--gold-dark) !important; font-size: 14px; margin: 6px 0; }
.badge { display: inline-flex; padding: 8px 13px; background: var(--cream); color: var(--gold-dark); border-radius: 999px; font-size: 13px; font-weight: 700; }
.page-title { text-align: center; background: linear-gradient(180deg, #fff7ea, #fffaf3); border-bottom: 1px solid var(--line); }
.page-title p { max-width: 680px; margin: 16px auto 0; color: var(--muted); line-height: 1.8; }
.process { margin: 0 8vw 70px; padding: 40px; border: 1px solid var(--line); border-radius: 28px; background: var(--paper); display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; box-shadow: var(--shadow); }
.process h2 { grid-column: 1 / -1; font-size: 38px; }
.process div { font-weight: 700; color: var(--muted); }
.process span { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--gold); color: white; margin-right: 10px; }
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 30px; }
.contact-form, .contact-card { background: var(--paper); border: 1px solid var(--line); border-radius: 28px; padding: 32px; box-shadow: var(--shadow); }
label { display: grid; gap: 8px; margin-bottom: 18px; color: var(--muted); font-weight: 700; }
input, textarea { border: 1px solid var(--line); border-radius: 16px; padding: 15px; font: inherit; background: white; }
.footer { display: grid; grid-template-columns: 1.4fr .8fr 1fr 1.35fr; gap: 30px; padding: 46px 8vw; background: #fff7eb; border-top: 1px solid var(--line); color: var(--muted); }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 31px; color: var(--gold-dark); }
.footer a { display: block; margin: 9px 0; }
.footer .instagram-link { display: inline-flex; align-items: center; gap: 9px; color: var(--gold-dark); }
.instagram-link img { display: block; width: 28px; height: 28px; }
.footer h4 { color: var(--text); }
.association-logos-footer { gap: 18px; }
.association-logos-footer .tica-logo { height: 81px; }
.association-logos-footer .cfa-logo { height: 61px; max-width: 231px; }
@media (max-width: 850px) {
  .site-header { height: auto; min-height: 78px; align-items: center; }
  .menu-toggle { display: block; }
  .nav { display: none; position: absolute; top: 78px; left: 0; right: 0; padding: 20px 6vw; background: var(--paper); border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; }
  .nav.open { display: flex; }
  .hero, .split-section, .contact-grid, .footer { grid-template-columns: 1fr; }
  .hero { padding-top: 44px; }
  .hero-card { min-height: 360px; }
  .trust-strip, .cards.three, .process { grid-template-columns: 1fr; }
  .section-head { align-items: start; flex-direction: column; }
  .association-logos { flex-wrap: wrap; }
}
@media (max-width: 430px) {
  .association-logos { gap: 16px; }
  .association-logos .tica-logo { height: 75px; }
  .association-logos .cfa-logo { height: 56px; max-width: 220px; }
}
.empty-state {
  text-align: center;
  padding: 80px 24px;
  background: #fffaf4;
  border-radius: 24px;
}
.empty-state h2 {
  margin-bottom: 16px;
}
.empty-state p {
  max-width: 600px;
  margin: 0 auto 24px;
  color: #666;
}
