/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:       #F5F0E6;
  --cream-dark:  #EDE8DA;
  --cream-mid:   #E6DFD0;
  --brown-dark:  #2C2416;
  --brown-mid:   #5C4A30;
  --green-dark:  #3D4A2E;
  --green-mid:   #4E5E3A;
  --amber:       #B8832A;
  --amber-light: #C8972E;
  --text:        #3A3028;
  --text-light:  #6B5C48;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --max-w: 1140px;
  --section-pad: 96px 24px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 28px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}

.btn-primary {
  background: var(--amber);
  color: #fff;
}
.btn-primary:hover { background: var(--amber-light); }

.btn-nav {
  background: var(--amber);
  color: #fff;
  padding: 10px 22px;
  font-size: 12px;
}
.btn-nav:hover { background: var(--amber-light); }

.link-arrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: 8px;
  transition: gap 0.2s;
}
.link-arrow:hover { text-decoration: underline; }

/* ── Container ────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ── NAV ──────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 40px;
  height: 64px;
  background: rgba(245, 240, 230, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(60, 40, 20, 0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--brown-dark);
  white-space: nowrap;
  margin-right: auto;
}

.nav-icon { width: 28px; height: 20px; color: var(--green-dark); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown-mid);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green-dark); }

.nav-toggle { display: none; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  overflow: hidden;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(30, 22, 10, 0.88) 0%,
    rgba(30, 22, 10, 0.80) 28%,
    rgba(30, 22, 10, 0.35) 50%,
    rgba(30, 22, 10, 0.05) 68%,
    rgba(30, 22, 10, 0.00) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: 80px 40px 80px 80px;
  color: #fff;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  color: #fff;
}

.hero-sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  margin-bottom: 24px;
}

.hero-note {
  font-style: italic;
  font-size: 14px;
  color: rgba(255,255,255,0.70);
  line-height: 1.65;
  margin-bottom: 36px;
  padding-left: 14px;
  border-left: 2px solid rgba(255,255,255,0.25);
}

/* ── PILLARS ──────────────────────────────────────────────── */
.pillars {
  background: var(--cream-dark);
  border-top: 1px solid var(--cream-mid);
  border-bottom: 1px solid var(--cream-mid);
  padding: 32px 24px;
}

.pillars-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-dark);
}

.pillar svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--amber); }

.pillar-divider {
  width: 1px;
  height: 32px;
  background: var(--cream-mid);
  flex-shrink: 0;
}

/* ── YOU DON'T NEED MORE ADVICE ───────────────────────────── */
.advice {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.advice-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--brown-dark);
  margin-bottom: 28px;
}

.advice-text p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 16px;
}

.advice-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
}

/* ── OFFERINGS ────────────────────────────────────────────── */
.offerings {
  background: var(--cream-dark);
  padding: var(--section-pad);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 300;
  color: var(--brown-dark);
  text-align: center;
  margin-bottom: 56px;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.offering-card {
  background: var(--cream);
  border-radius: 4px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offering-icon svg {
  width: 28px;
  height: 28px;
  color: var(--amber);
}

.offering-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--brown-dark);
  line-height: 1.2;
}

.offering-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  flex: 1;
}

/* ── PISAC + BOUNDARY ROW ─────────────────────────────────── */
.info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 72px 24px;
  gap: 64px;
}

.info-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-icon svg {
  width: 26px;
  height: 26px;
  color: var(--amber);
}

.info-col h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--brown-dark);
}

.info-col h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--brown-dark);
}

.info-col p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.75;
}

.info-tagline {
  font-style: italic;
  color: var(--brown-mid) !important;
}

.info-col-boundary {
  padding-left: 40px;
  border-left: 1px solid var(--cream-mid);
}

/* ── ABOUT STRIP ──────────────────────────────────────────── */
.about-strip {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-strip-image {
  position: absolute;
  inset: 0;
}

.about-strip-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.about-strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(30, 22, 10, 0.78) 0%,
    rgba(30, 22, 10, 0.55) 50%,
    rgba(30, 22, 10, 0.15) 100%
  );
}

.about-strip-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding: 64px 40px 64px 80px;
  color: #fff;
}

.about-strip-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
}

.about-strip-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  margin-bottom: 28px;
}

/* ── CTA ──────────────────────────────────────────────────── */
.cta {
  background: var(--green-dark);
  color: #fff;
  padding: var(--section-pad);
}

.cta-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.cta-left { flex: 1; }

.cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 16px;
  color: #fff;
}

.cta p {
  font-size: 16px;
  color: rgba(255,255,255,0.80);
  line-height: 1.7;
}

.cta-right {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.cta .btn-primary { background: var(--amber); }
.cta .btn-primary:hover { background: var(--amber-light); }

.cta-sub {
  font-style: italic;
  font-size: 13px !important;
  color: rgba(255,255,255,0.55) !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--brown-dark);
  color: rgba(255,255,255,0.6);
  padding: 48px 40px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-logo { color: rgba(255,255,255,0.85); }
.footer-logo .nav-icon { color: rgba(255,255,255,0.5); }

.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-nav a:hover { color: rgba(255,255,255,0.9); }

.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .offerings-grid { grid-template-columns: repeat(2, 1fr); }

  .advice {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 64px 24px;
  }

  .advice-image { order: -1; }
  .advice-image img { height: 320px; }

  .hero-content { padding: 64px 24px; }

  .about-strip-content { padding: 48px 24px; }
}

@media (max-width: 680px) {
  .nav { padding: 0 20px; gap: 16px; }

  .nav-links {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--cream-mid);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-links.open { display: flex; }

  .nav-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--brown-dark);
    padding: 4px;
  }

  .btn-nav { display: none; }

  .pillar-divider { display: none; }
  .pillars-inner { gap: 0; justify-content: flex-start; }
  .pillar { padding: 10px 20px; flex: 0 0 50%; }

  .offerings-grid { grid-template-columns: 1fr; }

  .info-row { grid-template-columns: 1fr; gap: 40px; padding: 48px 24px; }
  .info-col-boundary { padding-left: 0; border-left: none; border-top: 1px solid var(--cream-mid); padding-top: 40px; }

  .cta-inner { flex-direction: column; align-items: flex-start; }
  .cta-right { align-items: flex-start; text-align: left; }
}
