:root {
  --bg: #f3f5f4;
  --surface: #ffffff;
  --soft: #e9eeeb;
  --ink: #151917;
  --muted: #66706c;
  --emerald: #123f36;
  --emerald-2: #1b5a4c;
  --line: #d7dfdb;
  --light-ink: #edf4f1;
  --radius-lg: 26px;
  --radius-md: 18px;
  --shadow: 0 18px 55px rgba(21, 25, 23, .08);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 14px;
  background: #fff;
  transform: translateY(-160%);
  transition: .2s ease;
}
.skip-link:focus { transform: translateY(0); }

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

.section { padding: 112px 0; }
.section-soft { background: var(--soft); }
.section-dark { background: var(--emerald); color: var(--light-ink); }

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--emerald-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow-light { color: #b9d8ce; }

h1, h2, h3 { margin: 0; line-height: 1.04; }
h1, h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: -.025em;
}
h1 { font-size: clamp(56px, 7vw, 92px); }
h2 { font-size: clamp(42px, 5vw, 66px); }
h3 { font-size: 23px; line-height: 1.2; }
p { margin: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(243, 245, 244, .86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(18, 63, 54, .08);
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.logo {
  display: inline-flex;
  align-items: baseline;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 33px;
  font-weight: 700;
  line-height: 1;
}
.logo-accent { color: var(--emerald-2); }
.main-nav { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 600; }
.main-nav > a:not(.nav-cta) { position: relative; }
.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 1px;
  background: var(--emerald);
  transition: right .25s ease;
}
.main-nav > a:not(.nav-cta):hover::after { right: 0; }
.nav-cta {
  padding: 12px 18px;
  border: 1px solid var(--emerald);
  border-radius: 999px;
  transition: .25s ease;
}
.nav-cta:hover { background: var(--emerald); color: #fff; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.menu-toggle span { width: 26px; height: 2px; background: var(--ink); display: block; margin: 5px 0; transition: .2s ease; }

.hero { padding-top: 86px; }
.hero-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 70px; align-items: center; }
.hero-copy h1 { max-width: 830px; }
.hero-copy h1 em { font-style: italic; color: var(--emerald-2); font-weight: 500; }
.hero-lead { max-width: 680px; margin-top: 28px; color: var(--muted); font-size: 18px; }
.hero-actions { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 25px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 14px;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--emerald); color: #fff; }
.btn-primary:hover { background: #0c332b; }
.btn-ghost { border-color: #bdc8c3; background: transparent; }
.btn-ghost:hover { border-color: var(--emerald); }
.btn-light { background: #f3f5f4; color: var(--emerald); }

.hero-meta { margin-top: 58px; display: grid; grid-template-columns: repeat(3, 1fr); max-width: 760px; border-top: 1px solid var(--line); padding-top: 24px; }
.hero-meta div { display: flex; flex-direction: column; gap: 2px; }
.hero-meta strong { font-size: 14px; }
.hero-meta span { color: var(--muted); font-size: 12px; }

.hero-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.portrait-photo {
  display: block;
  overflow: hidden;
  background: #dfe5e2;
}
.portrait-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.hero-portrait { aspect-ratio: 4 / 4.4; }
.hero-portrait img { object-position: 50% 62%; }
.hero-card-content { padding: 30px 32px 32px; }
.small-label { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; }
.hero-card h2 { font-size: 40px; margin-top: 8px; }
.hero-card p { color: var(--muted); margin-top: 14px; font-size: 14px; }
.text-link { display: inline-flex; gap: 8px; align-items: center; margin-top: 24px; font-size: 14px; font-weight: 700; color: var(--emerald-2); }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.text-link-light { color: #d9eee7; }

.trust-strip { background: #fff; border-block: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-grid > div { padding: 28px 30px; display: flex; align-items: center; gap: 18px; }
.trust-grid > div + div { border-left: 1px solid var(--line); }
.trust-number { color: var(--emerald-2); font-size: 12px; font-weight: 700; }
.trust-grid p { font-size: 14px; }

.section-head { display: flex; justify-content: space-between; align-items: end; gap: 50px; margin-bottom: 52px; }
.section-head > div { max-width: 700px; }
.section-head > p { max-width: 410px; color: var(--muted); }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card { min-height: 290px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255,255,255,.58); display: flex; flex-direction: column; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.service-card:hover { transform: translateY(-4px); border-color: #b6c6bf; background: #fff; }
.service-index { color: var(--emerald-2); font-size: 12px; font-weight: 700; }
.service-card h3 { margin-top: 30px; }
.service-card p { margin-top: 16px; color: var(--muted); font-size: 14px; }
.service-price { margin-top: auto; padding-top: 28px; font-weight: 700; }
.service-card-accent { background: var(--emerald); color: #fff; border-color: var(--emerald); }
.service-card-accent:hover { background: #0d372f; border-color: #0d372f; }
.service-card-accent .service-index, .service-card-accent p { color: #bcd6ce; }

.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 86px; align-items: center; }
.portrait-large { height: 560px; border-radius: var(--radius-lg); }
.portrait-large img { object-position: 50% 66%; }
.about-copy h2 { max-width: 650px; }
.about-lead { margin-top: 28px; max-width: 650px; color: #c7d8d3; font-size: 18px; }
.about-points { margin: 38px 0; border-top: 1px solid rgba(255,255,255,.18); }
.about-points > div { display: grid; grid-template-columns: 54px 1fr; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.about-points span { color: #a9c9bf; font-size: 12px; font-weight: 700; }
.about-points p { font-size: 14px; }

.price-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 82px; align-items: start; }
.price-intro { position: sticky; top: 120px; }
.price-intro p { margin-top: 24px; max-width: 460px; color: var(--muted); }
.urgent-note { margin-top: 32px; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; gap: 4px; }
.urgent-note strong { font-size: 14px; }
.urgent-note span { color: var(--muted); font-size: 13px; }
.price-list { background: #fff; border-radius: var(--radius-lg); padding: 12px 30px 30px; box-shadow: var(--shadow); }
.price-row { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-bottom: 1px solid var(--line); }
.price-row span { color: #3e4743; }
.price-row strong { text-align: right; }
.price-button { width: 100%; margin-top: 28px; }

.process-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid #cad5d0; }
.process-card { padding: 28px 24px 0 0; position: relative; }
.process-card + .process-card { padding-left: 24px; border-left: 1px solid #cad5d0; }
.process-card > span { font-size: 12px; color: var(--emerald-2); font-weight: 700; }
.process-card h3 { margin-top: 36px; font-size: 20px; }
.process-card p { color: var(--muted); font-size: 13px; margin-top: 12px; }

.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-gallery { align-items: start; }
.review-shot {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s ease, border-color .2s ease;
}
.review-shot:hover { transform: translateY(-4px); border-color: #b6c6bf; }
.review-shot figure {
  margin: 0;
  background: linear-gradient(180deg, #f5f7f6, #edf2ef);
  padding: 14px;
}
.review-shot img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid #e5ebe8;
  background: #fff;
}
.review-shot-copy {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  padding: 16px 18px 18px;
}
.review-shot-copy strong { font-size: 14px; line-height: 1.3; }
.review-shot-copy span { color: var(--muted); font-size: 12px; white-space: nowrap; }

.order-section { padding-bottom: 120px; }
.order-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 82px; align-items: start; }
.order-copy { position: sticky; top: 120px; }
.order-copy > p { margin-top: 26px; color: #c2d4ce; max-width: 470px; }
.contact-card { margin-top: 38px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); display: flex; flex-direction: column; gap: 6px; }
.contact-card span { font-size: 12px; color: #a9c7bd; margin-bottom: 8px; }
.contact-card a { font-size: 16px; font-weight: 600; }

.order-form { background: #f8faf9; color: var(--ink); border-radius: var(--radius-lg); padding: 34px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: block; margin-bottom: 16px; }
.field > span { display: block; font-size: 12px; font-weight: 700; margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid #cfd9d4;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input, .field select { height: 50px; padding: 0 14px; }
.field textarea { padding: 14px; resize: vertical; min-height: 112px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--emerald-2); box-shadow: 0 0 0 3px rgba(27,90,76,.09); }
.file-field input { height: auto; padding: 12px; }
.file-field small { display: block; color: var(--muted); margin-top: 6px; }
.consent { display: flex; align-items: flex-start; gap: 10px; margin: 8px 0 20px; font-size: 12px; color: var(--muted); }
.consent input { margin-top: 3px; accent-color: var(--emerald); }
.form-submit { width: 100%; border: 0; }
.form-note { color: var(--muted); font-size: 11px; text-align: center; margin-top: 12px; }
.form-status { min-height: 24px; margin-top: 10px; font-size: 13px; font-weight: 600; text-align: center; }
.form-status.error { color: #963b3b; }
.form-status.success { color: var(--emerald-2); }

.faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; align-items: start; }
.faq-intro { position: sticky; top: 120px; }
.faq-intro p { color: var(--muted); margin-top: 20px; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { list-style: none; cursor: pointer; padding: 25px 42px 25px 0; font-weight: 700; position: relative; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 0; top: 20px; font-size: 28px; font-weight: 400; color: var(--emerald-2); }
details[open] summary::after { content: "−"; }
details p { padding: 0 48px 24px 0; color: var(--muted); font-size: 14px; }

.site-footer { padding: 58px 0 24px; background: #101713; color: #e6eeea; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .6fr .8fr; gap: 40px; }
.footer-logo { color: #fff; }
.footer-grid p { margin-top: 12px; color: #8f9d97; font-size: 13px; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 10px; font-size: 13px; }
.footer-bottom { margin-top: 44px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 20px; color: #75837d; font-size: 11px; }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; transition: none !important; }
}

@media (max-width: 980px) {
  .section { padding: 84px 0; }
  .menu-toggle { display: block; z-index: 120; }
  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 110;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    font-size: 24px;
    transform: translateY(-100%);
    transition: transform .3s ease;
  }
  .main-nav.is-open { transform: translateY(0); }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero-grid, .about-grid, .price-layout, .order-grid, .faq-layout { grid-template-columns: 1fr; gap: 48px; }
  .hero-card { max-width: 540px; }
  .section-head { display: block; }
  .section-head > p { margin-top: 22px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; border-top: 0; gap: 16px; }
  .process-card, .process-card + .process-card { padding: 24px; border: 1px solid #cad5d0; border-radius: var(--radius-md); }
  .process-card h3 { margin-top: 24px; }
  .price-intro, .order-copy, .faq-intro { position: static; }
  .review-grid { grid-template-columns: 1fr 1fr; }
  .portrait-large { height: 440px; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 68px 0; }
  h1 { font-size: clamp(47px, 15vw, 66px); }
  h2 { font-size: clamp(38px, 12vw, 50px); }
  .hero { padding-top: 54px; }
  .hero-grid { gap: 42px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-meta { grid-template-columns: 1fr; gap: 16px; }
  .hero-meta div { padding-bottom: 14px; border-bottom: 1px solid var(--line); }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div + div { border-left: 0; border-top: 1px solid var(--line); }
  .service-grid, .review-grid, .process-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 245px; }
  .about-grid { gap: 36px; }
  .portrait-large { height: 420px; }
  .price-list { padding: 8px 20px 24px; }
  .price-row { min-height: 68px; align-items: flex-start; padding: 18px 0; flex-direction: column; gap: 4px; }
  .price-row strong { text-align: left; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .order-form { padding: 24px 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 6px; }
}

/* Review gallery lightbox */
.review-shot figure { cursor: zoom-in; }
.review-lightbox-trigger { display: block; cursor: zoom-in; }
.review-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(8, 14, 11, .88);
  padding: 28px;
  display: grid;
  place-items: center;
  backdrop-filter: blur(7px);
}
.review-lightbox[hidden] { display: none; }
.review-lightbox img {
  max-width: min(92vw, 980px);
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
  background: #fff;
}
.review-lightbox-close {
  position: fixed;
  top: 18px;
  right: 22px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.32);
  background: rgba(16, 23, 19, .8);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}
body.lightbox-open { overflow: hidden; }

@media (max-width: 680px) {
  .review-lightbox { padding: 16px; }
  .review-lightbox img { max-width: 96vw; max-height: 86vh; border-radius: 12px; }
  .review-lightbox-close { top: 10px; right: 10px; }
}

/* Anti-spam honeypot: hidden from normal visitors. */
.hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.form-submit:disabled {
  opacity: 0.65;
  cursor: wait;
}
