/* ─── TOKENS ─── */
:root {
  --green:        #495A58;
  --green-dark:   #3B4A48;
  --green-darker: #2E3B39;
  --parchment:    #F5EFE6;
  --parchment-dk: #EDE7D8;
  --gold:         #C4A46A;
  --text-dark:    #2C2420;
  --text-muted:   #7A6E68;
  --text-on-dark: rgba(245, 239, 230, 0.70);
  --gold-on-dark: rgba(196, 164, 106, 0.80);

  --display: 'Cormorant Garamond', serif;
  --body:    'Inter', sans-serif;
  --script:  'Pinyon Script', cursive;

  --shadow-card:  0 6px 28px rgba(44, 36, 32, 0.10);
  --shadow-hover: 0 12px 40px rgba(44, 36, 32, 0.15);
  --shadow-tier:  0 4px 18px rgba(44, 36, 32, 0.08);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); color: var(--text-dark); background: var(--parchment); line-height: 1.5; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ─── BASE TYPE ─── */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 300; line-height: 1.1; }
h1 { font-size: clamp(3.2rem, 5.5vw, 5rem); color: var(--green); }
h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); color: var(--green); }
h3 { font-size: 1.5rem; color: var(--green); }
h4 { font-size: 1.2rem; font-weight: 400; color: var(--green); }
p  { font-size: 0.92rem; line-height: 1.85; color: var(--text-muted); }

/* ─── NAV ─── */
.nav {
  background: var(--parchment);
  padding: 0.75rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 0.5px solid rgba(196, 164, 106, 0.4);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo img { height: 100px; width: auto; }
.nav-logo svg { display: block; }
.nav-links { display: flex; gap: 2.5rem; }
.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-dark);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }
.nav-portal {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid rgba(73, 90, 88, 0.4);
  padding: 0.6rem 1.25rem;
  transition: background 0.2s, color 0.2s;
}
.nav-portal:hover { background: var(--green); color: var(--parchment); }
.nav-cta {
  background: var(--green);
  color: var(--parchment) !important;
  padding: 0.6rem 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--green-dark); }
.nav-mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-mobile-toggle span { display: block; width: 22px; height: 1.5px; background: var(--text-dark); margin: 5px 0; transition: 0.3s; }

/* ─── EYEBROW ─── */
.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: block;
}
.eyebrow-center { text-align: center; }
.eyebrow-light { color: var(--gold-on-dark); }

/* ─── GOLD RULE ─── */
.gold-rule { width: 50px; height: 1px; background: var(--gold); display: block; }
.gold-rule-short { width: 36px; height: 2px; background: var(--gold); display: block; margin-bottom: 1.5rem; }

/* ─── LINK UNDERLINE ─── */
.link-underline {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.link-underline:hover { opacity: 0.7; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  background: var(--green);
  color: var(--parchment);
  padding: 0.9rem 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--green-dark); }
.btn-light {
  display: inline-block;
  background: var(--parchment);
  color: var(--green);
  padding: 1rem 2.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: opacity 0.2s;
}
.btn-light:hover { opacity: 0.88; }

/* ─── HERO ─── */
.hero { display: grid; grid-template-columns: 7fr 5fr; min-height: 480px; }
.hero-text-only { grid-template-columns: 1fr; }
.hero-text-only .hero-text { max-width: 100%; padding: 4rem 10rem; align-items: center; text-align: center; }
.hero-text-only .hero-text p { max-width: 560px; }
.hero-text-only .hero-actions { justify-content: center; }
.hero-text {
  background: var(--parchment);
  padding: 4rem 3rem 4rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-text h1 { margin-bottom: 1.5rem; }
.hero-text p  { max-width: 380px; margin-bottom: 2.5rem; font-size: 0.95rem; }
.hero-actions { display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap; }
.hero-photo {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(to bottom, rgba(73,90,88,0.45) 0%, rgba(73,90,88,0.1) 55%, transparent 100%),
    linear-gradient(to top, rgba(180,140,90,0.6) 0%, rgba(140,110,70,0.3) 35%, transparent 65%),
    linear-gradient(160deg, #3d4f3a 0%, #556650 25%, #7a8c6a 45%, #9a8870 65%, #c49a6a 85%, #d4aa7a 100%);
}
.hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}
.hero-photo-caption {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  background: rgba(245, 239, 230, 0.12);
  border: 1px solid rgba(196, 164, 106, 0.35);
  padding: 1rem 1.5rem;
  z-index: 1;
}
.hero-photo-caption p:first-child {
  font-family: var(--display);
  font-style: italic;
  font-size: 1rem;
  color: rgba(245, 239, 230, 0.9);
  margin-bottom: 0.2rem;
}
.hero-photo-caption p:last-child {
  font-size: 0.72rem;
  color: rgba(196, 164, 106, 0.85);
  letter-spacing: 0.02em;
}

/* Inner page hero */
.page-hero {
  background: var(--green);
  padding: 6rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='200,40 320,90 350,200 310,310 200,355 90,310 50,200 80,90' fill='none' stroke='%23C4A46A' stroke-width='0.5' opacity='0.2'/%3E%3Cpolygon points='200,65 305,108 332,200 296,292 200,330 104,292 68,200 95,108' fill='none' stroke='%23C4A46A' stroke-width='0.3' opacity='0.2'/%3E%3C/svg%3E") center/cover;
  opacity: 0.3;
  pointer-events: none;
}
.page-hero h1 { color: var(--parchment); margin-bottom: 1rem; position: relative; }
.page-hero p  { color: var(--text-on-dark); max-width: 540px; margin: 0 auto; font-size: 1rem; position: relative; }

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--parchment-dk);
  padding: 1.1rem 4rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
  align-items: center;
  border-top: 0.5px solid rgba(196, 164, 106, 0.3);
  flex-wrap: wrap;
}
.trust-bar span { font-size: 0.8rem; color: var(--text-muted); }
.trust-divider { width: 1px; height: 16px; background: var(--gold); opacity: 0.35; }

/* ─── PULL QUOTE ─── */
.pull-quote {
  background: var(--green);
  padding: 6rem 4rem 10rem;
  text-align: center;
}
.pull-quote-inner { max-width: 700px; margin: 0 auto; }
.pull-quote p {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 300;
  font-style: italic;
  color: var(--parchment);
  line-height: 1.65;
  margin: 3rem 0;
}
.pull-quote-attr {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(196, 164, 106, 0.75);
}

/* ─── SERVICES FLOAT ─── */
.services-float {
  position: relative;
  z-index: 2;
  margin-top: -5rem;
  padding: 0 4rem 6rem;
}
.services-inner { max-width: 1060px; margin: 0 auto; }

/* ─── CARD ─── */
.card {
  background: var(--parchment);
  border: 0.5px solid rgba(196, 164, 106, 0.2);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.25s;
}
.card:hover { box-shadow: var(--shadow-hover); }
.card-parchment-dk { background: var(--parchment-dk); }

/* Featured monthly booking card */
.card-featured {
  padding: 3rem;
  margin-bottom: 12px;
}
.card-featured-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; align-items: start; margin-top: 0.75rem; }
.card-featured-desc h3 { margin: 0.75rem 0; font-size: 1.8rem; }
.card-featured-desc p { margin-bottom: 1.5rem; }

/* Tier cards */
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.tier-card {
  padding: 1.75rem 1.5rem;
  border: 0.5px solid rgba(196, 164, 106, 0.25);
  box-shadow: var(--tier-shadow);
}
.tier-card.dark { background: var(--green); }
.tier-label {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.tier-label-light { color: rgba(196, 164, 106, 0.9); }
.tier-card h4 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.tier-card.dark h4 { color: var(--parchment); }
.tier-card p { font-size: 0.82rem; line-height: 1.75; }
.tier-card.dark p { color: rgba(245, 239, 230, 0.7); }

/* Standalone service cards */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.service-card { padding: 2.5rem 2.25rem; }
.service-card h3 { margin: 0.75rem 0; }
.service-card p { margin-bottom: 1.75rem; }

/* ─── WHY NONPROFITS ─── */
.why-section {
  background: var(--green-dark);
  padding: 8rem 4rem 6rem;
  position: relative;
  overflow: hidden;
}
.why-watermark {
  position: absolute;
  bottom: -3rem;
  right: -1rem;
  font-family: var(--display);
  font-size: clamp(8rem, 16vw, 16rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(196, 164, 106, 0.07);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.why-grid { max-width: 1060px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; position: relative; z-index: 1; }
.why-text h2 { color: var(--parchment); margin-bottom: 1.5rem; }
.why-text p  { color: var(--text-on-dark); }
.why-text p + p { margin-top: 1.25rem; }
.spec-row { border-top: 0.5px solid rgba(196, 164, 106, 0.3); padding: 1.5rem 0; }
.spec-row:last-child { border-bottom: 0.5px solid rgba(196, 164, 106, 0.3); }
.spec-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(196, 164, 106, 0.9);
  display: block;
  margin-bottom: 0.45rem;
  letter-spacing: 0.04em;
}
.spec-row p { color: rgba(245, 239, 230, 0.65); font-size: 0.88rem; line-height: 1.75; }

/* ─── PROCESS ─── */
.process-section { background: var(--parchment); padding: 6rem 4rem; }
.process-section .section-header { text-align: center; margin-bottom: 3.5rem; }
.process-grid { max-width: 1060px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.process-card { background: #fff; border: 0.5px solid rgba(196, 164, 106, 0.2); padding: 2.25rem 1.75rem; box-shadow: var(--shadow-card); transition: box-shadow 0.25s; }
.process-card:hover { box-shadow: var(--shadow-hover); }
.process-num {
  font-family: var(--display);
  font-size: 2.8rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(196, 164, 106, 0.5);
  display: block;
  margin-bottom: 0.75rem;
  line-height: 1;
}
.process-card h4 { margin-bottom: 0.6rem; }
.process-card p { font-size: 0.85rem; }

/* ─── ABOUT ─── */
.about-section { background: var(--parchment-dk); padding: 6rem 4rem; }
.about-grid { max-width: 1060px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-photo {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background:
    linear-gradient(to bottom, rgba(73,90,88,0.5) 0%, rgba(73,90,88,0.15) 50%, transparent 100%),
    linear-gradient(to top, rgba(180,140,90,0.55) 0%, rgba(140,110,70,0.25) 40%, transparent 70%),
    linear-gradient(165deg, #3d4f3a 0%, #556650 20%, #7a8c6a 42%, #9a8870 62%, #c49a6a 82%, #d4aa7a 100%);
}
.about-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
.about-photo-tag {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: rgba(245, 239, 230, 0.12);
  border: 1px solid rgba(196, 164, 106, 0.35);
  padding: 0.75rem 1.25rem;
}
.about-photo-tag p { font-family: var(--display); font-style: italic; font-size: 0.9rem; color: rgba(245, 239, 230, 0.9); }
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { margin-bottom: 1.25rem; }
.about-text p:last-of-type { margin-bottom: 2rem; }

/* ─── CTA ─── */
.cta-section {
  background: var(--green);
  padding: 5.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-watermark {
  position: absolute;
  top: -4rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--display);
  font-size: clamp(8rem, 20vw, 22rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(196, 164, 106, 0.05);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}
.cta-inner { position: relative; z-index: 1; max-width: 540px; margin: 0 auto; }
.cta-section h2 { color: var(--parchment); margin-bottom: 1.25rem; }
.cta-section p  { color: var(--text-on-dark); font-size: 0.95rem; margin-bottom: 2.75rem; }

/* ─── FOOTER ─── */
.footer {
  background: var(--green-darker);
  padding: 2.25rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo img { height: 52px; width: auto; opacity: 0.5; }
.footer-logo-img { height: 70px; width: auto; opacity: 0.6; filter: brightness(0) invert(1); }
.footer-info { font-size: 0.78rem; color: rgba(245, 239, 230, 0.35); }
.footer-copy { font-size: 0.65rem; color: rgba(245, 239, 230, 0.25); }

/* ─── SECTION UTILITY ─── */
.section-header { margin-bottom: 1rem; }
.section-content { max-width: 1060px; margin: 0 auto; }
.mt-section { margin-top: 3.5rem; }

/* ─── SERVICES PAGE ─── */
.services-page { background: var(--parchment); padding: 6rem 4rem; }
.service-full { max-width: 1060px; margin: 0 auto 4rem; }
.service-full-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; align-items: start; }
.service-full:not(:last-child) { padding-bottom: 4rem; border-bottom: 0.5px solid rgba(196, 164, 106, 0.25); }

/* ─── ABOUT PAGE ─── */
.about-page { background: var(--parchment); padding: 6rem 4rem; }
.about-page-grid { max-width: 1060px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr; gap: 5rem; align-items: start; }
.credentials { background: var(--parchment-dk); padding: 2.5rem; border: 0.5px solid rgba(196, 164, 106, 0.2); }
.credentials h4 { font-family: var(--display); font-size: 1.2rem; color: var(--green); margin-bottom: 1.5rem; }
.cred-item { padding: 0.85rem 0; border-bottom: 0.5px solid rgba(196, 164, 106, 0.2); }
.cred-item:last-child { border-bottom: none; }
.cred-item p:first-child { font-size: 0.8rem; font-weight: 500; color: var(--green); margin-bottom: 0.2rem; }
.cred-item p:last-child  { font-size: 0.8rem; color: var(--text-muted); }

/* ─── CONTACT PAGE ─── */
.contact-page { background: var(--parchment); padding: 6rem 4rem; }
.contact-grid { max-width: 1060px; margin: 0 auto; display: grid; grid-template-columns: 3fr 2fr; gap: 5rem; align-items: start; }
.contact-form-wrap h2 { margin-bottom: 0.75rem; }
.contact-form-wrap > p { margin-bottom: 2.5rem; }
form .field { margin-bottom: 1.5rem; }
form label { display: block; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin-bottom: 0.5rem; }
form input, form textarea, form select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 0.5px solid rgba(196, 164, 106, 0.4);
  background: #fff;
  font-family: var(--body);
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
form input:focus, form textarea:focus, form select:focus { border-color: var(--green); }
form textarea { resize: vertical; min-height: 140px; }
.contact-info { position: sticky; top: 120px; }
.contact-info h3 { font-size: 1.5rem; margin-bottom: 1.5rem; }
.contact-info-row { display: flex; gap: 0.85rem; align-items: flex-start; padding: 1.25rem 0; border-bottom: 0.5px solid rgba(196, 164, 106, 0.25); }
.contact-info-row:first-of-type { border-top: 0.5px solid rgba(196, 164, 106, 0.25); }
.contact-info-label { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.25rem; }
.contact-info-row p { font-size: 0.88rem; color: var(--text-muted); }
.next-steps { background: var(--parchment-dk); padding: 2rem; border: 0.5px solid rgba(196, 164, 106, 0.2); margin-top: 2rem; }
.next-steps h4 { font-size: 1.1rem; margin-bottom: 1rem; }
.next-steps ol { padding-left: 1.25rem; }
.next-steps li { font-size: 0.85rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 0.5rem; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .nav { padding: 0.75rem 2rem; }
  .hero-text { padding: 4rem 2.5rem; }
  .services-float { padding: 0 2rem 5rem; }
  .card-featured-grid { grid-template-columns: 1fr; }
  .tier-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { gap: 3rem; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 3rem; }
  .services-page, .about-page, .contact-page { padding: 5rem 2rem; }
  .about-page-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { position: static; }
  .service-full-grid { grid-template-columns: 1fr; }
  .footer { padding: 2rem; }
}

@media (max-width: 768px) {
  .nav { padding: 0.75rem 1.5rem; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--parchment); padding: 1.5rem; border-bottom: 0.5px solid rgba(196,164,106,0.4); z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-mobile-toggle { display: block; }
  .nav-cta { display: none; }

  .hero { grid-template-columns: 1fr; }
  .hero-photo { min-height: 360px; }
  .hero-text { padding: 3.5rem 1.5rem; }
  .hero-text h1 { font-size: 2.8rem; }

  .trust-bar { padding: 1rem 1.5rem; gap: 1.25rem; }
  .trust-divider { display: none; }

  .pull-quote { padding: 5rem 1.5rem 8rem; }
  .pull-quote p { font-size: 1.5rem; }

  .services-float { padding: 0 1.5rem 4rem; margin-top: -3rem; }
  .card-featured { padding: 2rem 1.5rem; }
  .card-featured-grid { grid-template-columns: 1fr; gap: 2rem; }
  .tier-grid { grid-template-columns: 1fr; gap: 10px; }
  .service-grid { grid-template-columns: 1fr; gap: 10px; }

  .why-section { padding: 5rem 1.5rem 4rem; }
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .why-watermark { font-size: 6rem; }

  .process-section { padding: 5rem 1.5rem; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 10px; }

  .about-section { padding: 5rem 1.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-photo { aspect-ratio: 3/2; }

  .cta-section { padding: 4.5rem 1.5rem; }
  .cta-watermark { font-size: 7rem; }

  .footer { flex-direction: column; text-align: center; padding: 2rem 1.5rem; gap: 0.75rem; }

  .page-hero { padding: 4rem 1.5rem; }
  .services-page { padding: 4rem 1.5rem; }
  .about-page  { padding: 4rem 1.5rem; }
  .contact-page { padding: 4rem 1.5rem; }
}

@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: 2.4rem; }
}

@media (max-width: 768px) {
  .services-page-section { padding: 4rem 1.5rem; }
  .tier-grid-page { grid-template-columns: 1fr; }
  .services-detail-grid { grid-template-columns: 1fr; }
  .contact-section { padding: 4rem 1.5rem; }
  .contact-grid { gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .about-page { padding: 4rem 1.5rem; }
  .about-page-grid { gap: 3rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ─── SERVICES PAGE (full) ─── */
.services-page-section { background: var(--parchment); padding: 6rem 4rem; }
.services-page-section.alt { background: var(--parchment-dk); }
.services-page-inner { max-width: 1060px; margin: 0 auto; }
.services-page-header { margin-bottom: 3.5rem; }
.services-page-header h2 { margin-bottom: 1.25rem; }
.services-page-intro { max-width: 640px; font-size: 1rem; }
.tier-grid-page { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.tier-best-for { font-size: 0.75rem; color: var(--text-muted); font-style: italic; margin: 1.25rem 0; }
.service-list { list-style: none; padding: 0; margin: 1.25rem 0; }
.service-list li { font-size: 0.85rem; color: var(--text-muted); padding: 0.45rem 0; border-bottom: 0.5px solid rgba(196, 164, 106, 0.15); line-height: 1.6; }
.service-list li:last-child { border-bottom: none; }
.service-list-light li { color: rgba(245, 239, 230, 0.65); border-bottom-color: rgba(245, 239, 230, 0.1); }
.service-list-body { margin: 1.5rem 0 2rem; }
.service-list-body li { padding: 0.55rem 0; }
.services-divider { background: var(--parchment); padding: 3.5rem 4rem; text-align: center; }
.services-divider p { font-family: var(--display); font-style: italic; font-size: 1.4rem; font-weight: 300; color: var(--green); max-width: 560px; margin: 0 auto; line-height: 1.6; }
.services-detail-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 4rem; align-items: start; }
.services-detail-text h2 { margin-bottom: 1.5rem; }
.services-detail-text p { margin-bottom: 1.25rem; }
.services-detail-aside { position: sticky; top: 120px; }
.detail-aside-card { background: var(--parchment-dk); padding: 2rem; border: 0.5px solid rgba(196, 164, 106, 0.2); }
.detail-aside-card h4 { margin-bottom: 1rem; }

/* ─── BUTTONS (additional) ─── */
.btn-outline {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border: 1px solid var(--green);
  color: var(--green);
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s;
  margin-top: 0.5rem;
}
.btn-outline:hover { background: var(--green); color: var(--parchment); }
.btn-submit {
  width: 100%;
  border: none;
  cursor: pointer;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  margin-top: 0.5rem;
}

/* ─── CONTACT PAGE (full) ─── */
.contact-section { background: var(--parchment); padding: 6rem 4rem; }
.contact-form-wrap { }
.contact-form { }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin-bottom: 0.5rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 0.5px solid rgba(196, 164, 106, 0.4);
  background: #fff;
  font-family: var(--body);
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 140px; }
.contact-aside { position: sticky; top: 120px; }
.contact-aside-card { background: var(--parchment-dk); padding: 2.5rem; border: 0.5px solid rgba(196, 164, 106, 0.2); }
.contact-aside-card h4 { font-family: var(--display); font-size: 1.2rem; margin-bottom: 1.5rem; }
.contact-steps { padding-left: 1.25rem; }
.contact-steps li { font-size: 0.85rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 0.75rem; }
.contact-aside-info { margin-top: 2rem; padding: 2rem; background: var(--parchment-dk); border: 0.5px solid rgba(196, 164, 106, 0.2); }
.contact-aside-info h4 { font-family: var(--display); font-size: 1.1rem; margin-bottom: 1rem; }
.contact-aside-info p { margin-bottom: 0.35rem; font-size: 0.88rem; }
.contact-aside-info a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }

/* ─── ABOUT PAGE — DIMENSION ─── */
.about-intro-section {
  background: var(--green-dark);
  padding: 5rem 4rem 9rem;
  position: relative;
}
.about-intro-photo {
  position: relative;
  width: 480px;
  max-width: 90%;
  margin: 0 auto;
  aspect-ratio: 4/5;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.about-intro-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.about-intro-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(43,58,56,0.8) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}
.about-intro-caption { }
.about-intro-name {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 300;
  color: rgba(245, 239, 230, 0.95);
  margin-bottom: 0.3rem;
}
.about-intro-title {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: rgba(196, 164, 106, 0.85);
}

.about-page {
  background: var(--parchment);
  padding: 6rem 4rem;
  position: relative;
  overflow: hidden;
}
.about-page-watermark {
  position: absolute;
  top: -2rem;
  right: -2rem;
  font-family: var(--display);
  font-size: clamp(7rem, 14vw, 14rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(196, 164, 106, 0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.about-page-grid {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: start;
}
.about-aside { position: sticky; top: 120px; }
.about-sidebar-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.about-sidebar-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.about-sidebar-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(43,58,56,0.85) 0%, transparent 100%);
  padding: 2rem 1.5rem 1.25rem;
}
.about-sidebar-caption .about-intro-name {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(245,239,230,0.95);
  margin-bottom: 0.2rem;
}
.about-sidebar-caption .about-intro-title {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(196,164,106,0.85);
}
.about-divider-card {
  background: var(--green);
  padding: 2.5rem;
  margin: 2.5rem 0;
}
.about-divider-quote {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--parchment);
  line-height: 1.65;
}
.credentials.card {
  background: var(--parchment-dk);
  padding: 2.5rem;
}
.credentials h4 { font-family: var(--display); font-size: 1.2rem; color: var(--green); margin-bottom: 1.5rem; }
.cred-item { padding: 0.85rem 0; border-bottom: 0.5px solid rgba(196, 164, 106, 0.2); }
.cred-item:last-child { border-bottom: none; }
.cred-item p:first-child { font-size: 0.8rem; font-weight: 500; color: var(--green); margin-bottom: 0.2rem; }
.cred-item p:last-child  { font-size: 0.8rem; color: var(--text-muted); }

/* ─── SERVICES PAGE — DIMENSION ─── */
.services-hero-band {
  background: var(--green-dark);
  padding: 5rem 4rem 9rem;
  text-align: center;
}
.services-hero-band-inner { max-width: 700px; margin: 0 auto; }
.services-tier-float {
  position: relative;
  z-index: 2;
  margin-top: -6rem;
  padding: 0 4rem 6rem;
}
.services-tier-float-inner { max-width: 1060px; margin: 0 auto; }
.services-page-section {
  background: var(--parchment);
  padding: 6rem 4rem;
  position: relative;
  overflow: hidden;
}
.services-page-section.alt { background: var(--parchment-dk); }
.services-page-watermark {
  position: absolute;
  bottom: -3rem;
  right: -1rem;
  font-family: var(--display);
  font-size: clamp(6rem, 12vw, 12rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(196, 164, 106, 0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.detail-aside-card.card {
  background: var(--parchment-dk);
  padding: 2rem;
}

/* ─── CONTACT PAGE — DIMENSION ─── */
.contact-section {
  background: var(--parchment);
  padding: 6rem 4rem;
  position: relative;
  overflow: hidden;
}
.contact-watermark {
  position: absolute;
  top: -3rem;
  left: -2rem;
  font-family: var(--display);
  font-size: clamp(8rem, 18vw, 18rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(196, 164, 106, 0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.contact-aside-card.card {
  background: var(--parchment-dk);
  padding: 2.5rem;
}
.contact-aside-info.card {
  background: var(--parchment-dk);
  padding: 2rem;
  margin-top: 1.5rem;
}

/* ─── RESPONSIVE — inner page dimension ─── */
@media (max-width: 1024px) {
  .about-intro-overlay { padding: 2rem; }
  .about-page { padding: 0 2rem 5rem; }
  .services-hero-band { padding: 4rem 2rem 8rem; }
  .services-tier-float { padding: 0 2rem 5rem; }
  .services-page-section { padding: 5rem 2rem; }
  .contact-section { padding: 5rem 2rem; }
}
@media (max-width: 768px) {
  .about-intro-photo { height: 320px; }
  .about-intro-overlay { padding: 1.5rem; }
  .about-page-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-aside { position: static; }
  .services-hero-band { padding: 3.5rem 1.5rem 7rem; }
  .services-tier-float { padding: 0 1.5rem 4rem; margin-top: -4rem; }
  .tier-grid-page { grid-template-columns: 1fr; }
  .services-page-section { padding: 4rem 1.5rem; }
  .services-detail-grid { grid-template-columns: 1fr; }
  .services-detail-aside { position: static; }
  .contact-section { padding: 4rem 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-aside { position: static; }
  .form-row { grid-template-columns: 1fr; }
  .about-page { padding: 0 1.5rem 4rem; }
}
