/* ---------- Custom properties ---------- */
:root {
  --ink: #2E1D40;
  --ink-soft: #4A3A5C;
  --gold: #C79043;
  --gold-dark: #AD7833;
  --magenta: #8B4392;
  --bg: #FAF9F7;
  --bg-alt: #F1ECE6;
  --white: #FFFFFF;
  --text-body: #4A4550;
  --border: #E7E1D8;

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Fraunces', Georgia, serif;

  --max-width: 1120px;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 0.5em;
  font-weight: 600;
  line-height: 1.15;
}
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}
.section-tag-light { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s ease;
  border: 1.5px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover { background: var(--gold-dark); }
.btn-ghost {
  border-color: var(--ink);
  color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--white); }
.btn-small { padding: 9px 18px; font-size: 14px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 247, 0.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 6px;
  padding-bottom: 6px;
}
.brand-logo { height: 72px; width: auto; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 500;
}
.site-nav a:not(.btn):hover { color: var(--gold-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 130px;
  background: linear-gradient(135deg, #3A2554 0%, var(--ink) 45%, #6B2E6F 100%);
  isolation: isolate;
}
.hero-watermark {
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  width: 480px;
  max-width: 55vw;
  opacity: 0.16;
  z-index: 0;
  pointer-events: none;
}
.hero-inner { max-width: 760px; position: relative; z-index: 1; }
.eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #E3A8D9;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: 48px;
  margin-bottom: 24px;
  color: var(--white);
}
.hero-sub {
  font-size: 18px;
  color: #E6DEEF;
  max-width: 620px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero .btn-ghost {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--white);
}
.hero .btn-ghost:hover {
  background: var(--white);
  color: var(--ink);
}

.wave-divider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  line-height: 0;
  z-index: 1;
  pointer-events: none;
}
.wave-divider svg {
  width: 100%;
  height: 110px;
  display: block;
}
.wave-to-light { color: var(--white); }
.wave-to-dark { color: var(--ink); }

/* ---------- About ---------- */
.about {
  padding: 100px 0;
  background: var(--white);
}
.about-inner { max-width: 760px; }
.about h2 { font-size: 32px; margin-bottom: 32px; }
.about-copy p { font-size: 17px; }
.founder-line {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 15px;
  color: var(--ink-soft);
  font-style: italic;
}

/* ---------- Services ---------- */
.services {
  padding: 100px 0;
  background: var(--bg-alt);
}
.services h2 { font-size: 32px; margin-bottom: 48px; max-width: 620px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.service-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.service-icon {
  width: 44px;
  height: 44px;
  color: var(--gold-dark);
  margin-bottom: 20px;
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 15px;
  margin-bottom: 0;
}

/* ---------- Areas of Focus ---------- */
.who {
  padding: 100px 0;
  background: var(--ink);
  color: #DCD4E4;
}
.who-heading {
  color: var(--white);
  font-size: 30px;
  max-width: 700px;
  margin-bottom: 56px;
}
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.who-item h3 {
  color: var(--white);
  font-size: 19px;
  border-top: 2px solid var(--gold);
  padding-top: 18px;
  margin-bottom: 12px;
}
.who-item p {
  color: #C9BFD6;
  font-size: 15px;
  margin-bottom: 0;
}

/* ---------- Contact ---------- */
.contact {
  position: relative;
  overflow: hidden;
  padding: 110px 0 150px;
  text-align: center;
  background: linear-gradient(180deg, #FBF3E4 0%, #F3E2C4 100%);
}
.contact-inner { max-width: 640px; margin: 0 auto; }
.contact h2 { font-size: 32px; }
.contact-sub { font-size: 17px; margin-bottom: 36px; }
.contact-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 32px 0;
  background: var(--ink);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo { height: 38px; width: auto; opacity: 0.95; }
.footer-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-phone {
  font-size: 13px;
  color: #B7ACC6;
}
.footer-phone:hover { color: var(--gold); }
.footer-divider { color: #5C4A70; }
.footer-inner p {
  margin: 0;
  font-size: 13px;
  color: #B7ACC6;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .who-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero h1 { font-size: 36px; }
  .hero { padding: 56px 0 110px; }
  .contact { padding: 90px 0 110px; }
  .wave-divider svg { height: 80px; }
}

@media (max-width: 640px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border);
    display: none;
  }
  .site-nav.open { display: flex; }
  .site-nav a { width: 100%; padding: 10px 0; }
  .site-nav a.btn { width: auto; margin-top: 10px; }

  .hero { padding: 48px 0 80px; }
  .hero h1 { font-size: 30px; }
  .hero-sub { font-size: 16px; }
  .hero-watermark { display: none; }
  .wave-divider svg { height: 55px; }

  .services-grid { grid-template-columns: 1fr; }
  .about, .services, .who { padding: 72px 0; }
  .contact { padding: 72px 0 80px; }

  .brand-logo { height: 58px; }
}
