
:root {
  --ink: #242622;
  --muted: #554f49;
  --cream: #fbf7ef;
  --paper: #fffdf8;
  --rose: #c9aaa2;
  --sage: #aeb9aa;
  --accent: #183a2e;
  --accent-soft: #315a49;
  --line: #cfc6bb;
  --shadow: 0 20px 55px rgba(44, 40, 38, 0.11);
  --radius: 24px;
  --max: 1160px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 36px), var(--max)); margin-inline: auto; }
h1,h2,h3 { margin:0; font-family: Georgia, "Times New Roman", serif; font-weight:500; line-height:1.08; }
h1 { font-size: clamp(3rem, 7vw, 6.2rem); letter-spacing:-0.05em; }
h2 { font-size: clamp(2.25rem, 4.5vw, 4.1rem); letter-spacing:-0.035em; }
h3 { font-size:1.5rem; }
p { margin:0; }
section { padding: 76px 0; }
.eyebrow {
  display:inline-flex; align-items:center; gap:10px; margin-bottom:22px;
  color:var(--accent); font-size:.76rem; font-weight:800; letter-spacing:.16em; text-transform:uppercase;
}
.eyebrow::before { content:""; width:28px; height:1px; background:currentColor; }
.btn {
  display:inline-flex; align-items:center; justify-content:center; min-height:52px;
  padding:0 25px; border-radius:999px; border:1px solid var(--ink); font-weight:750; transition:.2s ease;
  cursor:pointer; font:inherit;
}
.btn-primary { background:var(--accent); color:white; border-color:var(--accent); }
.btn-primary:hover { transform:translateY(-2px); background:#10291f; box-shadow:0 10px 24px rgba(24,58,46,.22); }
.btn-secondary:hover { background:var(--accent); color:white; border-color:var(--accent); }
nav {
  position:sticky; top:0; z-index:20; background:rgba(255,253,249,.92);
  border-bottom:1px solid rgba(222,214,206,.78); backdrop-filter:blur(15px);
}
.nav-inner { min-height:78px; display:flex; align-items:center; justify-content:space-between; gap:24px; }
.logo { display:flex; align-items:center; gap:11px; font-family:Georgia,"Times New Roman",serif; font-size:1.16rem; }
.logo-mark {
  width:38px; height:38px; display:grid; place-items:center; border:1px solid var(--ink);
  border-radius:50%; font-size:.86rem; letter-spacing:-.04em;
}
.nav-links { display:flex; align-items:center; gap:24px; font-size:.9rem; font-weight:700; }
.nav-links a.active { color:var(--accent); }
.mobile-nav { display:none; position:relative; }
.mobile-nav summary {
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:center;
  width:46px;
  height:46px;
  border:1px solid var(--accent);
  border-radius:50%;
  color:var(--accent);
  background:var(--paper);
  cursor:pointer;
  font-size:1.35rem;
  font-weight:800;
}
.mobile-nav summary::-webkit-details-marker { display:none; }
.mobile-nav-menu {
  position:absolute;
  top:56px;
  right:0;
  width:min(290px, calc(100vw - 36px));
  padding:14px;
  border:1px solid var(--line);
  border-radius:20px;
  background:var(--paper);
  box-shadow:var(--shadow);
}
.mobile-nav-menu a {
  display:block;
  padding:13px 14px;
  border-radius:12px;
  color:var(--ink);
  font-weight:750;
}
.mobile-nav-menu a:hover,
.mobile-nav-menu a.active {
  background:#e7efe9;
  color:var(--accent);
}
.mobile-nav-menu .mobile-cta {
  margin-top:8px;
  color:white;
  background:var(--accent);
  text-align:center;
}
.mobile-nav-menu .mobile-cta:hover {
  color:white;
  background:#10291f;
}
.hero {
  min-height:720px; display:grid; align-items:center; overflow:hidden;
  background:
    radial-gradient(circle at 82% 16%, rgba(201,170,162,.38), transparent 27%),
    radial-gradient(circle at 78% 67%, rgba(174,185,170,.30), transparent 26%),
    linear-gradient(180deg,var(--cream),var(--paper));
}
.hero-grid { display:grid; grid-template-columns:1.3fr .7fr; align-items:center; gap:48px; padding:72px 0; }
.hero-copy > p { max-width:720px; margin-top:28px; color:var(--muted); font-size:1.13rem; }
.hero-actions { display:flex; flex-wrap:wrap; gap:14px; margin-top:34px; }
.hero-card {
  position:relative; min-height:470px; overflow:hidden; border-radius:180px 180px 28px 28px;
  background:linear-gradient(155deg,#d9c4bb,#315a49); box-shadow:var(--shadow);
}
.hero-card::before,.hero-card::after {
  content:""; position:absolute; border:1px solid rgba(255,255,255,.48); border-radius:50%;
}
.hero-card::before { width:300px; height:300px; left:-82px; bottom:-85px; }
.hero-card::after { width:185px; height:185px; right:-45px; top:72px; }
.hero-card-content {
  position:absolute; inset:auto 28px 28px; padding:26px; border:1px solid rgba(255,255,255,.34);
  border-radius:22px; color:white; background:rgba(16,41,31,.82); backdrop-filter:blur(12px);
}
.hero-card-content strong { display:block; margin-bottom:8px; font-family:Georgia,"Times New Roman",serif; font-size:1.7rem; font-weight:500; }
.page-hero {
  padding:72px 0 58px;
  background:
    radial-gradient(circle at 85% 20%, rgba(201,170,162,.35), transparent 25%),
    linear-gradient(180deg,var(--cream),var(--paper));
}
.page-hero p { max-width:760px; margin-top:24px; color:var(--muted); font-size:1.08rem; }
.trust { padding:32px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); background:white; }
.trust-row { display:grid; grid-template-columns:1.2fr repeat(4,1fr); gap:18px; align-items:center; color:var(--muted); font-size:.86rem; text-align:center; }
.trust-row strong { color:var(--ink); text-align:left; font-family:Georgia,"Times New Roman",serif; font-size:1.18rem; font-weight:500; }
.section-head { display:grid; grid-template-columns:.8fr 1.2fr; gap:32px; align-items:end; margin-bottom:36px; }
.section-head p { max-width:660px; color:var(--muted); font-size:1.04rem; }
.card-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
.card {
  padding:34px; border:1px solid var(--line); border-radius:var(--radius); background:white; transition:.22s ease;
}
.card:hover { transform:translateY(-4px); border-color:transparent; box-shadow:var(--shadow); }
.card p { margin-top:13px; color:var(--muted); }
.card ul { margin:20px 0 0; padding-left:18px; color:var(--muted); }
.card-number {
  width:44px; height:44px; display:grid; place-items:center; margin-bottom:24px;
  border-radius:50%; color:var(--accent); background:var(--cream); font-weight:800;
}
.split-section { background:var(--cream); }
.split { display:grid; grid-template-columns:1fr 1fr; gap:44px; align-items:center; }
.visual {
  min-height:430px; display:flex; flex-direction:column; justify-content:space-between; padding:36px;
  border-radius:30px; color:white; background:linear-gradient(145deg,rgba(255,255,255,.12),rgba(255,255,255,0)),#183a2e;
  box-shadow:var(--shadow);
}
.visual .quote { max-width:510px; font-family:Georgia,"Times New Roman",serif; font-size:clamp(2rem,4vw,3.8rem); line-height:1.05; }
.visual small { max-width:390px; color:rgba(255,255,255,.82); font-size:.96rem; }
.process { display:grid; gap:14px; margin-top:26px; }
.step { display:grid; grid-template-columns:42px 1fr; gap:14px; padding:15px 0; border-top:1px solid var(--line); }
.step span { color:var(--accent); font-family:Georgia,"Times New Roman",serif; font-size:1.25rem; }
.step p { margin-top:6px; color:var(--muted); }
.packages { color:white; background:var(--accent); }
.packages .section-head p { color:rgba(255,255,255,.88); }
.package-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:22px; }
.package {
  min-height:430px; display:flex; flex-direction:column; padding:32px;
  border:1px solid rgba(255,255,255,.28); border-radius:var(--radius); background:rgba(255,255,255,.10);
}
.package.featured { color:var(--ink); background:var(--paper); }
.package-label { font-size:.74rem; font-weight:800; letter-spacing:.15em; text-transform:uppercase; opacity:.92; }
.price { margin-top:22px; font-family:Georgia,"Times New Roman",serif; font-size:3rem; line-height:1; }
.price small { font-family:inherit; font-size:1rem; opacity:.65; }
.package p { margin-top:18px; opacity:.95; }
.package ul { margin:25px 0 30px; padding-left:18px; opacity:1; }
.package .btn { margin-top:auto; }
.package:not(.featured) .btn { color:var(--accent); background:var(--paper); border-color:var(--paper); font-weight:800; }
.detail-section { border-top:1px solid var(--line); }
.detail-grid { display:grid; grid-template-columns:.75fr 1.25fr; gap:60px; }
.detail-sidebar {
  position:sticky; top:105px; align-self:start; padding:26px; border:1px solid var(--line); border-radius:20px; background:var(--cream);
}
.detail-sidebar a { display:block; padding:10px 0; color:var(--muted); font-weight:700; border-bottom:1px solid var(--line); }
.detail-sidebar a:last-child { border-bottom:0; }
.service-detail { padding:0 0 42px; margin-bottom:42px; border-bottom:1px solid var(--line); }
.service-detail:last-child { border-bottom:0; margin-bottom:0; }
.service-detail > p { margin-top:17px; color:var(--muted); max-width:760px; }
.service-detail h3 { margin-top:32px; font-size:1.25rem; }
.check-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:12px 18px; margin-top:18px; }
.check { padding:14px 16px; border:1px solid var(--line); border-radius:14px; background:white; color:var(--muted); }
.check::before { content:"✓"; margin-right:8px; color:var(--accent); font-weight:900; }
.intake-wrap,.contact-grid,.about-grid { display:grid; grid-template-columns:.85fr 1.15fr; gap:60px; align-items:start; }
.intake-copy p,.contact-copy p,.about-copy p { margin-top:20px; color:var(--muted); font-size:1.03rem; }
.form-card,.contact-card {
  display:grid; gap:18px; padding:34px; border:1px solid var(--line); border-radius:var(--radius);
  background:white; box-shadow:var(--shadow);
}
.form-row { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
.field { display:grid; gap:8px; }
.field label { font-size:.86rem; font-weight:800; }
.field input,.field select,.field textarea {
  width:100%; padding:14px 15px; border:1px solid var(--line); border-radius:14px;
  color:var(--ink); background:var(--paper); font:inherit; outline:none;
}
.field textarea { min-height:135px; resize:vertical; }
.field input:focus,.field select:focus,.field textarea:focus { border-color:var(--accent); box-shadow:0 0 0 3px rgba(128,100,92,.10); }
.upload-box {
  position:relative; display:grid; place-items:center; min-height:170px; padding:24px;
  border:1.5px dashed var(--rose); border-radius:18px; text-align:center; background:var(--cream); cursor:pointer;
}
.upload-box input { position:absolute; inset:0; width:100%; height:100%; opacity:0; cursor:pointer; }
.upload-icon {
  width:48px; height:48px; display:grid; place-items:center; margin-bottom:10px; border-radius:50%;
  background:white; color:var(--accent); font-size:1.35rem; box-shadow:0 8px 18px rgba(67,51,45,.08);
}
.form-note { color:var(--muted); font-size:.82rem; }
.contact-options { display:grid; gap:16px; margin-top:28px; }
.contact-option { padding:20px; border:1px solid var(--line); border-radius:18px; background:white; }
.contact-option strong { display:block; margin-bottom:5px; }
.contact-option span { color:var(--muted); }
.faq-list { display:grid; gap:14px; max-width:900px; }
details { border:1px solid var(--line); border-radius:18px; background:white; padding:20px 22px; }
summary { cursor:pointer; font-weight:800; }
details p { margin-top:14px; color:var(--muted); }
.policy { max-width:860px; }
.policy h2 { margin-top:48px; font-size:2rem; }
.policy p,.policy li { color:var(--muted); }
.policy p { margin-top:14px; }
.policy ul { padding-left:20px; }
.cta { padding:64px 0; background:var(--rose); }
.cta-inner { display:grid; grid-template-columns:1.3fr .7fr; gap:40px; align-items:center; }
.cta p { max-width:680px; margin-top:18px; color:rgba(45,41,39,.78); }
.cta-actions { display:flex; justify-content:flex-end; }
footer { padding:40px 0 24px; color:rgba(255,255,255,.74); background:var(--ink); }
.footer-grid { display:grid; grid-template-columns:1.3fr .7fr .7fr; gap:40px; }
footer h3 { color:white; font-size:1.3rem; }
footer p,footer a { font-size:.92rem; }
.footer-links { display:grid; gap:10px; margin-top:16px; }
.footer-bottom { margin-top:30px; padding-top:22px; border-top:1px solid rgba(255,255,255,.12); font-size:.82rem; }
@media (max-width:900px) {
  .nav-links { display:none; }
  .mobile-nav { display:block; }
  .hero-grid,.split,.section-head,.intake-wrap,.contact-grid,.about-grid,.cta-inner,.detail-grid { grid-template-columns:1fr; }
  .hero-card { min-height:420px; max-width:520px; }
  .card-grid,.package-grid,.form-row,.check-grid { grid-template-columns:1fr; }
  .trust-row { grid-template-columns:1fr 1fr; }
  .trust-row strong { grid-column:1/-1; text-align:center; }
  .cta-actions { justify-content:flex-start; }
  .footer-grid { grid-template-columns:1fr; }
  .detail-sidebar { position:static; }
}
@media (max-width:580px) {
  .hero-grid { padding-top:80px; }
  section { padding:80px 0; }
  .card,.package,.form-card,.contact-card { padding:27px; }
  .trust-row { grid-template-columns:1fr; }
}


.package:not(.featured) h3,
.package:not(.featured) .price,
.package:not(.featured) li,
.package:not(.featured) p {
  color: #fffdf8;
}

.package:not(.featured) .package-label {
  color: rgba(255,255,255,0.92);
}

.package.featured .package-label,
.package.featured .price {
  color: var(--accent);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(24, 58, 46, 0.16);
}

.upload-box {
  border-color: var(--accent-soft);
  background: #eef3ee;
}

.upload-box:hover {
  border-color: var(--accent);
  background: #e7efe9;
}

.upload-icon {
  background: var(--accent);
  color: white;
}

footer {
  background: #10291f;
}

footer h3 {
  color: white;
}


.about-photo-card {
  overflow: hidden;
  border-radius: 30px;
  background: white;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.about-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.pricing-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1rem;
}

.investment-box {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.investment-box p {
  color: var(--muted);
}

.price-list {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.price-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}

.price-item strong {
  font-size: 1.1rem;
}

.price-item span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  color: var(--accent);
}

@media (max-width: 700px) {
  .price-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .about-photo-card img {
    min-height: 420px;
  }
}


/* Compact spacing refinements */
main > section:first-child:not(.hero) {
  padding-top: 68px;
}

.card-grid,
.package-grid {
  align-items: stretch;
}

.package {
  min-height: 0;
}

.contact-options,
.faq-list,
.price-list {
  gap: 12px;
}

.about-copy p + p {
  margin-top: 14px;
}

@media (max-width: 900px) {
  section { padding: 62px 0; }
  .hero-grid { padding: 58px 0; gap: 34px; }
  .page-hero { padding: 58px 0 44px; }
  .visual { min-height: 360px; }
}

@media (max-width: 580px) {
  section { padding: 50px 0; }
  .hero-grid { padding: 46px 0; }
  .page-hero { padding: 48px 0 36px; }
  .hero { min-height: auto; }
  .hero-card { min-height: 340px; }
  .visual { min-height: 320px; }
  .about-photo-card img { min-height: 360px; }
}

.turnaround {
  margin-top: 8px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 750;
}

.policy h3 {
  margin-top: 28px;
  font-size: 1.3rem;
  color: var(--accent);
}

.policy a {
  color: var(--accent);
  text-decoration: underline;
}


.nav-logo-image {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 50%;
}

.hero-brand-logo {
  display: block;
  width: min(420px, 86%);
  max-height: 165px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 20px;
}

.credential-strip {
  padding: 34px 0;
  background: #183a2e;
  color: #fffdf8;
}

.credential-grid {
  display: grid;
  grid-template-columns: .6fr 1.5fr 1fr;
  gap: 24px;
}

.credential-grid div {
  display: grid;
  gap: 4px;
}

.credential-grid strong {
  color: #fffdf8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.credential-grid span {
  color: rgba(255,253,248,.85);
  font-size: .92rem;
}

.secure-payment-note {
  margin-top: 22px;
  color: var(--muted);
  font-size: .92rem;
}

.text-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--accent);
  font-weight: 750;
  text-decoration: underline;
}

.contact-option a {
  color: var(--accent);
  font-weight: 700;
}

@media (max-width: 900px) {
  .credential-grid {
    grid-template-columns: 1fr;
  }
  .hero-brand-logo {
    width: min(360px, 90%);
  }
}

@media (max-width: 580px) {
  .hero-brand-logo {
    width: 100%;
    max-height: 125px;
    margin-bottom: 12px;
  }
}


.icon-only-logo {
  gap: 0;
}

.icon-only-logo span {
  display: none;
}

.logo.icon-only-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-image {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}

.footer-full-logo {
  width: min(280px, 100%);
  max-height: 120px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.about-photo-card img {
  object-position: center top;
}


.purchase-price-item {
  align-items: center;
}

.price-copy {
  flex: 1;
}

.price-action {
  display: grid;
  justify-items: end;
  gap: 12px;
  min-width: 180px;
}

.purchase-button {
  white-space: nowrap;
  min-height: 46px;
  padding-inline: 20px;
}

@media (max-width: 700px) {
  .purchase-price-item {
    align-items: stretch;
  }

  .price-action {
    width: 100%;
    justify-items: stretch;
    min-width: 0;
  }

  .price-action span {
    font-size: 2.2rem;
  }

  .purchase-button {
    width: 100%;
  }
}
