:root {
  --white: #ffffff;
  --cream: #faf8f5;
  --surface: #f3f0eb;
  --ink: #1a1a2e;
  --ink-light: #2d2d44;
  --muted: #6e6e82;
  --gold: #b08d4c;
  --gold-dark: #8f7038;
  --gold-light: #d4af6e;
  --gold-soft: rgba(176, 141, 76, 0.08);
  --border: #e0dbd4;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ──────────────────────────────── */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(26, 26, 46, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(176, 141, 76, 0.15);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.15); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ink);
  background: linear-gradient(145deg, var(--gold-light) 0%, var(--gold) 100%);
  border-radius: 6px;
  letter-spacing: .03em;
}

.logo-text { display: flex; flex-direction: column; gap: 1px; }
.logo-name {
  font-family: var(--serif);
  font-size: .9375rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: .04em;
}
.logo-sub {
  font-size: .625rem;
  font-weight: 400;
  color: rgba(255,255,255,.45);
  letter-spacing: .03em;
}

.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-size: .8125rem;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold-light); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold-light);
  border-radius: 1px;
  transition: transform .3s, opacity .3s;
}

/* ── Hero ────────────────────────────────── */
.hero {
  position: relative;
  padding: 160px 0 100px;
  background: var(--ink);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(176,141,76,.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(176,141,76,.08) 0%, transparent 50%);
}

.hero-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(176,141,76,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(176,141,76,.04) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-tag {
  display: inline-block;
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(176,141,76,.3);
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5.5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero p {
  font-size: 1.0625rem;
  font-weight: 300;
  color: rgba(255,255,255,.6);
  line-height: 1.8;
  margin-bottom: 36px;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  font-family: var(--sans);
  font-size: .8125rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 3px;
  transition: all .2s;
  letter-spacing: .02em;
}
.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.btn-line {
  color: var(--gold-light);
  border: 1px solid rgba(176,141,76,.4);
}
.btn-line:hover {
  border-color: var(--gold-light);
  background: rgba(176,141,76,.08);
}

/* ── Sections ────────────────────────────── */
.section { padding: 96px 0; }

.tag {
  display: inline-block;
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.tag.light { color: var(--gold-light); }

.section-head { margin-bottom: 48px; }
.section-head.center { text-align: center; }

.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(1.625rem, 3vw, 2.125rem);
  font-weight: 500;
  color: var(--ink);
}

/* ── About ───────────────────────────────── */
.about { background: var(--white); border-bottom: 1px solid var(--border); }

.about-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
}

.about-left h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--ink);
}

.about-right blockquote {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--gold-dark);
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin-bottom: 24px;
}

.about-right p {
  font-size: .9375rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.85;
}
.about-right strong { color: var(--ink); font-weight: 500; }

/* ── Services ────────────────────────────── */
.services { background: var(--cream); }

.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.srv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px 26px;
  transition: box-shadow .25s;
}
.srv-card:hover { box-shadow: 0 8px 28px rgba(176,141,76,.1); }

.srv-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--gold);
  opacity: .45;
  display: block;
  margin-bottom: 14px;
}

.srv-card h3 {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.35;
}

.srv-card > p {
  font-size: .8125rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.srv-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.srv-card li {
  font-size: .8125rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
  padding: 12px 14px;
  background: var(--gold-soft);
  border-radius: 3px;
}

.srv-card li strong {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 3px;
}

/* ── Strengths ───────────────────────────── */
.strengths { background: var(--white); }

.str-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.str-item {
  padding: 32px 24px;
  border: 1px solid var(--border);
  border-radius: 6px;
  text-align: center;
  transition: background .25s, border-color .25s;
}
.str-item:hover {
  background: var(--gold-soft);
  border-color: rgba(176,141,76,.25);
}

.str-icon {
  color: var(--gold);
  margin-bottom: 18px;
}

.str-item h3 {
  font-family: var(--serif);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}

.str-item p {
  font-size: .8125rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

/* ── Vision ──────────────────────────────── */
.vision {
  padding: 80px 0;
  background: linear-gradient(145deg, var(--ink) 0%, #2a2040 100%);
  text-align: center;
}

.vision-inner { max-width: 680px; }

.vision blockquote {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: var(--white);
  margin: 16px 0 28px;
}

.values {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.values span {
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 6px 16px;
  border: 1px solid rgba(176,141,76,.3);
  border-radius: 2px;
}

.vision-brand {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}

/* ── Contact ─────────────────────────────── */
.contact {
  padding: 80px 0;
  background: var(--cream);
  text-align: center;
}

.contact-inner { max-width: 560px; }

.contact h2 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 16px;
}

.contact p {
  font-size: .9375rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.contact-email {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-decoration: none;
  padding: 14px 36px;
  border: 1.5px solid var(--gold);
  border-radius: 3px;
  transition: all .2s;
}
.contact-email:hover {
  background: var(--gold);
  color: var(--ink);
}

/* ── Footer ──────────────────────────────── */
.footer {
  padding: 24px 0;
  background: var(--ink);
  border-top: 1px solid rgba(176,141,76,.1);
}

.footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .75rem;
  color: rgba(255,255,255,.35);
}
.footer-name {
  font-weight: 600;
  color: rgba(255,255,255,.7);
}

/* ── Responsive ──────────────────────────── */
@media (max-width: 960px) {
  .about-layout { grid-template-columns: 1fr; gap: 32px; }
  .srv-grid { grid-template-columns: 1fr; }
  .str-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(26,26,46,.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(176,141,76,.15);
    padding: 12px 24px 20px;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform .3s, opacity .3s, visibility .3s;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a { display: block; padding: 14px 0; }

  .menu-toggle { display: flex; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { padding: 120px 0 72px; }
  .section { padding: 72px 0; }
  .vision, .contact { padding: 60px 0; }
  .footer-bar { flex-direction: column; text-align: center; }
}
