*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #f7f4f0;
  --bg-dark:   #1a1814;
  --text:      #1a1814;
  --text-mid:  #4a4540;
  --gold:      #8a6d3b;
  --gold-light:#b89050;
  --rule:      rgba(138,109,59,0.2);
  --card-bg:   #eeebe6;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 56px;
  background: rgba(247,244,240,0.96);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(8px);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 75px;
  width: auto;
  display: block;
}

.nav-cta {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.nav-cta:hover { color: var(--gold-light); border-color: var(--gold-light); }

/* HERO — dark panel */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 56px 88px;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 75% 35%, rgba(138,109,59,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.9s 0.2s forwards;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.08;
  color: #f0ece6;
  max-width: 820px;
  opacity: 0;
  animation: fadeUp 0.9s 0.35s forwards;
  position: relative;
  z-index: 1;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  margin-top: 28px;
  max-width: 520px;
  font-size: 1.05rem;
  color: #c8c2b8;
  line-height: 1.75;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
  position: relative;
  z-index: 1;
}

.hero-cta {
  margin-top: 48px;
  align-self: flex-start;
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f0ece6;
  text-decoration: none;
  border: 1px solid rgba(138,109,59,0.6);
  padding: 11px 22px;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
  opacity: 0;
  animation: fadeUp 0.9s 0.65s forwards;
  position: relative;
  z-index: 1;
}
.hero-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* SECTIONS */
section {
  padding: 96px 56px;
  border-top: 1px solid var(--rule);
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 44px;
  font-weight: 500;
}

.section-intro {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  line-height: 1.3;
  color: var(--text);
  max-width: 720px;
  margin-bottom: 36px;
}

.section-intro em {
  font-style: italic;
  color: var(--gold);
}

.body-text {
  max-width: 600px;
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.85;
}

.body-text p + p { margin-top: 18px; }

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  margin-top: 56px;
  border: 1px solid var(--rule);
}

.service-card {
  background: var(--bg);
  padding: 40px 32px;
  transition: background 0.2s;
}
.service-card:hover { background: var(--card-bg); }

.service-num {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 500;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--text);
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* HOW WE WORK */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.engagement-list {
  list-style: none;
  margin-top: 32px;
}

.engagement-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 0.95rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 16px;
}

.engagement-list li::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.callout {
  background: var(--bg-dark);
  border-left: 2px solid var(--gold);
  padding: 36px 40px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.6;
  color: #ddd8d0;
}

/* WHO WE WORK WITH */
.client-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 56px;
}

.client-type {
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}

.client-type h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text);
}

.client-type p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* CONTACT */
#contact {
  text-align: center;
  padding: 120px 56px;
  background: var(--card-bg);
}

#contact .section-intro {
  margin: 0 auto 16px;
}

#contact .body-text {
  margin: 0 auto 44px;
  text-align: center;
}

.contact-note {
  font-size: 0.85rem;
  color: #9a9590;
  margin-bottom: 36px;
  font-style: italic;
}

.contact-email {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--gold);
  text-decoration: none;
  margin-bottom: 40px;
  letter-spacing: 0.04em;
}
.contact-email:hover { color: var(--text); }

.btn {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: var(--gold);
  text-decoration: none;
  padding: 15px 40px;
  border: 1px solid var(--gold);
  transition: background 0.2s, color 0.2s;
}
.btn:hover { background: var(--gold-light); border-color: var(--gold-light); }

/* FOOTER */
footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(138,109,59,0.2);
  padding: 32px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: #6a6560;
  letter-spacing: 0.04em;
}

.footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.footer-logo img {
  height: 65px;
  width: auto;
  display: block;
  opacity: 0.8;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav, .hero, section, #contact, footer { padding-left: 24px; padding-right: 24px; }
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .client-types { grid-template-columns: 1fr; gap: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .nav-logo img { height: 75px; }
  .footer-logo img { height: 65px; }
}
