@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --paper: #f4efe7;
  --paper-deep: #e8dfd1;
  --ink: #21342f;
  --muted: #66736e;
  --line: rgba(33, 52, 47, .16);
  --green: #153f36;
  --green-soft: #28584d;
  --gold: #b79055;
  --white: #fffdf8;
  --shadow: 0 24px 70px rgba(27, 45, 40, .12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 4%, rgba(183,144,85,.12), transparent 30%),
    var(--paper);
  font-family: "Manrope", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

body.modal-open { overflow: hidden; }

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

button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

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

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.04;
}
h1 { font-size: clamp(3.3rem, 8vw, 7.1rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2.4rem, 5vw, 4.6rem); letter-spacing: -.035em; }
h3 { font-size: clamp(1.55rem, 2.4vw, 2.1rem); }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow { max-width: 880px; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 12px 18px;
  background: var(--ink);
  color: white;
  border-radius: 10px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: .25s ease;
}
.site-header.scrolled {
  background: rgba(244,239,231,.88);
  backdrop-filter: blur(18px);
  border-color: var(--line);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}
.brand-mark {
  width: 42px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
}
.brand-copy {
  display: grid;
  line-height: 1.15;
}
.brand-copy strong { font-size: .94rem; }
.brand-copy small { color: var(--muted); font-size: .73rem; margin-top: 4px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .88rem;
  font-weight: 600;
}
.site-nav a { position: relative; }
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -7px;
  height: 1px;
  background: var(--gold);
  transition: .2s;
}
.site-nav a:hover::after { right: 0; }

.nav-cta {
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  background: var(--green);
  color: white;
  cursor: pointer;
}

.menu-toggle { display: none; }

.hero {
  min-height: 100svh;
  padding: 135px 0 70px;
  display: grid;
  align-items: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .75fr;
  align-items: center;
  gap: clamp(40px, 8vw, 110px);
}
.eyebrow {
  margin-bottom: 20px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .19em;
  font-size: .72rem;
  font-weight: 700;
}
.hero h1 { max-width: 830px; margin-bottom: 28px; }
.hero-lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}
.hero-actions, .center-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 700;
  font-size: .91rem;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  background: var(--green);
  color: white;
  box-shadow: 0 12px 35px rgba(21,63,54,.2);
}
.button-secondary {
  border-color: var(--line);
  background: rgba(255,255,255,.35);
}
.button-light {
  width: 100%;
  background: var(--white);
  color: var(--green);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 48px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-facts div { padding-right: 18px; }
.hero-facts dt {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 600;
}
.hero-facts dd {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: .78rem;
}

.portrait-frame {
  position: relative;
  max-width: 470px;
  margin-left: auto;
}
.portrait-frame::before {
  content: "";
  position: absolute;
  inset: -18px 20px 18px -18px;
  border: 1px solid rgba(183,144,85,.5);
  border-radius: 48% 48% 32px 32px;
  z-index: -1;
}
.portrait-frame img {
  width: 100%;
  aspect-ratio: .78;
  object-fit: cover;
  object-position: center top;
  border-radius: 48% 48% 28px 28px;
  box-shadow: var(--shadow);
}
.portrait-note {
  position: absolute;
  left: -55px;
  bottom: 34px;
  max-width: 220px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 18px;
  background: rgba(255,253,248,.84);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}
.portrait-note span {
  display: block;
  color: var(--gold);
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.portrait-note strong {
  display: block;
  margin-top: 5px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
}

.section { padding: 110px 0; }
.section-tinted { background: rgba(232,223,209,.62); }
.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(183,144,85,.18), transparent 28%),
    var(--green);
}
.section-dark .section-heading p { color: rgba(255,255,255,.68); }

.split {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(55px, 9vw, 125px);
}
.section-heading h2 { max-width: 850px; margin-bottom: 22px; }
.section-heading > p:last-child { max-width: 680px; color: var(--muted); }
.centered { text-align: center; margin-inline: auto; }
.centered h2, .centered p { margin-inline: auto; }

.prose > p {
  font-size: 1.05rem;
  color: var(--muted);
}
.principles {
  display: grid;
  gap: 0;
  margin-top: 45px;
  border-top: 1px solid var(--line);
}
.principles article {
  display: grid;
  grid-template-columns: 50px 1fr;
  column-gap: 18px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}
.principles span {
  color: var(--gold);
  font-size: .77rem;
}
.principles h3 { margin-bottom: 8px; }
.principles p { grid-column: 2; margin-bottom: 0; color: var(--muted); }

.request-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 55px;
  background: var(--line);
  border: 1px solid var(--line);
}
.request-card {
  min-height: 300px;
  padding: 34px;
  background: var(--paper);
  transition: background .2s, transform .2s;
}
.request-card:hover {
  position: relative;
  z-index: 2;
  transform: translateY(-6px);
  background: var(--white);
  box-shadow: var(--shadow);
}
.request-number {
  display: inline-block;
  margin-bottom: 60px;
  color: var(--gold);
  font-size: .75rem;
}
.request-card h3 { margin-bottom: 16px; }
.request-card p { margin-bottom: 0; color: var(--muted); font-size: .91rem; }

.method-layout {
  display: grid;
  grid-template-columns: .8fr 1.1fr;
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}
.method-image img {
  width: 100%;
  max-height: 760px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.steps { margin-top: 42px; }
.steps article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.steps article:last-child { border-bottom: 1px solid var(--line); }
.steps span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: .75rem;
}
.steps h3 { margin-bottom: 6px; }
.steps p { margin-bottom: 0; color: var(--muted); }

.education {
  margin-top: 26px;
  border-bottom: 1px solid var(--line);
}
.education summary {
  padding: 20px 0;
  cursor: pointer;
  font-weight: 700;
}
.education div { padding: 0 0 20px; color: var(--muted); }
.education li { margin-bottom: 7px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 58px;
}
.price-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.06);
}
.price-card.featured {
  transform: translateY(-12px);
  border-color: rgba(183,144,85,.8);
}
.badge {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--green);
  font-size: .67rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.price-image img {
  width: 100%;
  aspect-ratio: 1.6;
  object-fit: cover;
}
.price-content { padding: 29px; }
.price-label {
  color: var(--gold);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 700;
}
.price-content > p:not(.price-label) { color: rgba(255,255,255,.69); }
.price-content ul {
  min-height: 68px;
  padding-left: 18px;
  color: rgba(255,255,255,.78);
  font-size: .88rem;
}
.price-row {
  margin: 28px 0 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.16);
}
.price-row strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.1rem;
}

.review-slider {
  max-width: 790px;
  margin: 50px auto 0;
}
.review-viewport {
  overflow: hidden;
  border-radius: var(--radius-md);
}
.review-track {
  display: flex;
  transition: transform .45s cubic-bezier(.22,.61,.36,1);
}
.review-slide {
  min-width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}
.review-slide img {
  width: 100%;
  max-height: 670px;
  object-fit: contain;
  background: var(--white);
  border-radius: var(--radius-md);
}
.slider-controls {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 15px;
  margin-top: 18px;
}
.slider-controls > button {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.slider-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(33,52,47,.25);
  cursor: pointer;
}
.slider-dots button.active { background: var(--green); }
.center-actions { justify-content: center; }

.faq-list { margin-top: 44px; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary {
  list-style: none;
  position: relative;
  padding: 25px 55px 25px 0;
  cursor: pointer;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 20px;
  color: var(--gold);
  font-family: "Manrope", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p {
  max-width: 720px;
  padding-bottom: 24px;
  color: var(--muted);
}

.contact-section { padding-top: 40px; }
.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: clamp(35px, 6vw, 68px);
  border-radius: var(--radius-lg);
  background: var(--paper-deep);
}
.contact-panel h2 { margin-bottom: 14px; }
.contact-panel p:last-child { max-width: 690px; margin-bottom: 0; color: var(--muted); }

.site-footer {
  padding: 44px 0;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: end;
  gap: 30px;
}
.footer-grid p { margin-bottom: 0; color: var(--muted); font-size: .82rem; }
.footer-links { display: flex; gap: 20px; font-size: .85rem; }

.modal, .lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  place-items: center;
  padding: 20px;
}
.modal.open, .lightbox.open { display: grid; }
.modal-backdrop, .lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,28,24,.78);
  backdrop-filter: blur(12px);
}
.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  padding: 38px;
  border-radius: 28px;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.modal-close, .lightbox-close {
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.75);
  font-size: 1.55rem;
  cursor: pointer;
}
.contact-options {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.contact-options a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.35);
}
.contact-options a:hover { border-color: var(--gold); }
.contact-options span { font-weight: 700; }
.contact-options small { color: var(--muted); }
.privacy-note {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: .75rem;
}

.lightbox img {
  position: relative;
  z-index: 1;
  max-width: min(920px, 92vw);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 20px;
}
.lightbox-close { color: var(--ink); }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    inset: 82px 20px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(244,239,231,.97);
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 14px 10px; }
  .site-nav a::after { display: none; }
  .menu-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--ink);
  }

  .hero-grid, .split, .method-layout {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; }
  .hero-content { order: 1; }
  .hero-visual { order: 0; }
  .portrait-frame {
    max-width: 390px;
    margin: 0 auto;
  }
  .portrait-note { left: -20px; }
  .request-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 720px; margin-inline: auto; }
  .price-card.featured { transform: none; }
  .price-content ul { min-height: auto; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-inner { min-height: 72px; }
  .site-nav { inset: 72px 14px auto; }
  .brand-copy small { display: none; }
  .hero { padding-top: 105px; }
  h1 { font-size: clamp(3.1rem, 16vw, 4.7rem); }
  .hero-facts { grid-template-columns: 1fr; gap: 16px; }
  .hero-facts div { display: flex; align-items: baseline; gap: 10px; }
  .hero-facts dd { margin: 0; }
  .portrait-note {
    position: relative;
    left: auto;
    bottom: auto;
    max-width: none;
    margin: -25px 14px 0;
  }
  .section { padding: 78px 0; }
  .request-grid { grid-template-columns: 1fr; }
  .request-card { min-height: auto; }
  .request-number { margin-bottom: 36px; }
  .contact-panel { align-items: stretch; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; align-items: start; }
  .footer-links { flex-wrap: wrap; }
  .modal-dialog { padding: 32px 22px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* =========================
   Mobile Hero
========================= */

@media (max-width: 768px) {

    .hero-grid{
        gap:48px;
    }

    .hero-visual{
        display:flex;
        justify-content:center;
        align-items:center;
        order:-1;
    }

    .portrait-frame{
        width:260px;
        height:340px;
        border-radius:140px;
        margin:0 auto;
    }

    .portrait-frame img{
        width:100%;
        height:100%;
        object-fit:cover;
        object-position:center top;
    }

    .portrait-note{
        bottom:18px;
        left:18px;
        right:18px;
        padding:14px 16px;
    }

}
