@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400&display=swap');

:root {
  --cream: #f8f3f1;
  --teal:  #dceaf0;
  --coral: #f07252;
  --dark:  #2c3a3a;
  --mid:   #526060;
  --faint: rgba(44, 58, 58, 0.10);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ─────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  display: flex;
  gap: 36px;
  padding: 22px 48px;
}

nav a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: var(--dark);
  opacity: 0.6;
  transition: opacity 0.2s;
}

nav a:hover  { opacity: 1; }
nav a.active { opacity: 1; font-weight: 400; }

/* ─── HERO ────────────────────────────────── */
.hero {
  background: var(--cream);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 96px 40px 48px;
  text-align: center;
}

.hero-text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 6.5vw, 78px);
  font-weight: 300;
  line-height: 1.12;
  color: var(--dark);
  margin-bottom: 22px;
}

.hero-text p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--mid);
}

.hero-photo {
  position: relative;
  height: 42vh;
  overflow: hidden;
  flex-shrink: 0;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.hero-photo .btn {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
}

/* ─── BUTTON ──────────────────────────────── */
.btn {
  display: inline-block;
  background: var(--coral);
  color: #fff;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 60px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  text-align: center;
  white-space: nowrap;
  transition: filter 0.2s;
}

.btn:hover { filter: brightness(1.06); }

/* ─── ABOUT ───────────────────────────────── */
.about {
  background: var(--cream);
  padding: 80px 40px;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 72px;
  max-width: 1060px;
  margin: 0 auto;
  align-items: start;
}

.label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 28px;
  display: block;
}

.about-text p {
  font-size: 15.5px;
  line-height: 1.9;
  color: var(--mid);
  margin-bottom: 22px;
}

.about-text blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  color: var(--dark);
  line-height: 1.5;
  margin: 32px 0;
  padding-left: 20px;
  border-left: 2px solid var(--coral);
}

.about-photo {
  position: sticky;
  top: 80px;
}

.about-photo img {
  width: 100%;
  border-radius: 4px;
  display: block;
}

/* ─── SERVICES ────────────────────────────── */
.services {
  background: var(--cream);
  padding: 60px 40px;
  border-top: 1px solid var(--faint);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1060px;
  margin: 0 auto;
}

.service-item {
  text-align: center;
  padding: 24px 16px;
}

.service-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--dark);
  text-transform: uppercase;
}

/* ─── SUPPORT ─────────────────────────────── */
.support {
  background: var(--teal);
  padding: 80px 40px;
}

.support-inner {
  max-width: 720px;
  margin: 0 auto;
}

.support h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 300;
  line-height: 1.3;
  color: var(--dark);
  margin-bottom: 36px;
}

.support ul {
  list-style: none;
}

.support ul li {
  padding: 12px 0 12px 20px;
  border-bottom: 1px solid var(--faint);
  font-size: 15px;
  line-height: 1.7;
  color: var(--mid);
  position: relative;
}

.support ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--coral);
  opacity: 0.7;
}

/* ─── TAGLINE ─────────────────────────────── */
.tagline {
  background: var(--cream);
  padding: 80px 40px;
  text-align: center;
}

.tagline h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
}

/* ─── FOOTER ──────────────────────────────── */
footer {
  background: var(--cream);
  padding: 28px 48px;
  border-top: 1px solid var(--faint);
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: center;
}

footer a {
  font-size: 11.5px;
  color: var(--mid);
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.2s;
}

footer a:hover { opacity: 1; }

/* ─── INNER PAGE WRAPPER ──────────────────── */
.page-wrapper {
  background: var(--teal);
  min-height: 100vh;
  padding: 110px 40px 80px;
}

.page-header {
  max-width: 900px;
  margin: 0 auto 64px;
  position: relative;
  overflow: hidden;
}

.page-bg-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(72px, 14vw, 160px);
  font-weight: 300;
  color: rgba(44, 58, 58, 0.07);
  line-height: 0.9;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 300;
  color: var(--dark);
  margin-top: -8px;
  position: relative;
}

/* ─── METHOD SECTIONS ─────────────────────── */
.method-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
  border-bottom: 1px solid var(--faint);
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}

.method-section:last-of-type { border-bottom: none; }

.method-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.3;
}

.method-section p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--mid);
}

/* ─── FEES PAGE ───────────────────────────── */
.fees-wrapper {
  background: var(--teal);
  min-height: 100vh;
  padding: 110px 40px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.fees-content {
  max-width: 660px;
  width: 100%;
}

.fees-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 6px;
}

.fees-email {
  font-size: 14px;
  color: var(--mid);
  margin-bottom: 48px;
  opacity: 0.8;
}

.fees-content p {
  font-size: 15.5px;
  line-height: 1.9;
  color: var(--mid);
  margin-bottom: 28px;
}

.fees-price {
  font-size: 16px;
  color: var(--dark);
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-bottom: 48px;
}

.fees-cta {
  display: flex;
  justify-content: center;
  padding-top: 12px;
  border-top: 1px solid var(--faint);
}

/* ─── RESPONSIVE ──────────────────────────── */
@media (max-width: 768px) {
  nav { gap: 20px; padding: 18px 24px; }

  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { position: static; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .method-section { grid-template-columns: 1fr; gap: 16px; }

  .hero-photo { height: 38vh; }
}
