/* Landing page */

.top { position: sticky; top: 0; z-index: 40; background: rgba(23, 20, 15, 0.92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.top__inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 64px; }
.top__nav { display: flex; align-items: center; gap: 10px; }
.top__call { display: inline-grid; place-items: center; width: 40px; height: 40px; color: var(--gold-2); border: 1px solid var(--line-strong); border-radius: var(--radius); }
.top__call svg { width: 18px; height: 18px; }
.top__link { display: none; font-size: 15px; color: var(--cream); text-decoration: none; padding: 8px 6px; white-space: nowrap; }
.top__link:hover { color: var(--gold-2); }
@media (min-width: 640px) { .top__link { display: inline-block; } }
.top__link--wide { display: none; }
@media (min-width: 960px) { .top__link--wide { display: inline-block; } }
.brand img { max-height: 42px; }

.hero { padding: clamp(40px, 9vw, 96px) 0 clamp(32px, 6vw, 64px); position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(216, 180, 90, 0.14), transparent 60%); pointer-events: none; }
.hero .wrap { position: relative; }
.hero__title { font-size: clamp(34px, 8.4vw, 60px); font-weight: 400; margin: 18px 0 18px; text-wrap: balance; line-height: 1.12; }
.hero__title em { font-style: italic; color: var(--gold-2); }
.hero__lede { font-size: clamp(18px, 2.4vw, 21px); color: var(--cream); max-width: 34rem; line-height: 1.55; }
.hero__price { margin: 28px 0 22px; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.hero__price-row { display: flex; align-items: baseline; gap: 12px; }
.hero__amount { font-family: var(--serif); font-size: 46px; line-height: 1; color: var(--gold-2); }
.hero__per { font-size: 16px; }
.hero__value { margin-top: 8px; font-size: 16px; color: var(--cream-2); white-space: nowrap; }
@media (max-width: 360px) { .hero__value { white-space: normal; } }
.hero__actions { display: grid; gap: 10px; }
@media (min-width: 560px) { .hero__actions { grid-template-columns: 1fr 1fr; } }
.hero__next { margin-top: 18px; }
.hero__next b { color: var(--cream); font-weight: 600; }
.hero__trust { margin-top: 10px; font-size: 13.5px; letter-spacing: 0.02em; color: var(--gold-2); display: flex; flex-wrap: wrap; gap: 4px 8px; }
.hero__trust span { color: var(--cream-3); }

.section { padding: clamp(44px, 8vw, 88px) 0; border-top: 1px solid var(--line); }
.section--tint { background: var(--ink-2); }
.section__title { font-size: clamp(27px, 6vw, 40px); margin: 14px 0 22px; text-wrap: balance; max-width: 26ch; line-height: 1.18; }

.ledger { list-style: none; margin: 8px 0 0; padding: 0; }
.ledger li { display: grid; grid-template-columns: 44px 1fr; gap: 6px 10px; padding: 20px 0; border-top: 1px solid var(--line); }
.ledger li:last-child { border-bottom: 1px solid var(--line); }
.ledger__n { font-family: var(--serif); font-size: 26px; color: var(--gold-2); line-height: 1; padding-top: 2px; }
.ledger h3 { font-family: var(--sans); font-weight: 700; font-size: 18px; margin-bottom: 5px; letter-spacing: 0; }
.ledger p { color: var(--cream-2); font-size: 16.5px; line-height: 1.55; }
.value { margin-top: 28px; display: grid; gap: 8px; justify-items: start; }
.value__line { color: var(--cream-2); font-size: 16px; }
.value__line s { color: var(--cream-3); }
.value__big { font-family: var(--serif); font-size: clamp(26px, 6vw, 36px); color: var(--cream); margin-bottom: 8px; }
.cta-link { display: inline-block; color: var(--gold-2); font-weight: 700; font-size: 16px; text-decoration: none; border-bottom: 1px solid var(--gold); padding-bottom: 2px; }
.cta-link:hover { color: var(--cream); border-bottom-color: var(--cream); }

.prices { display: grid; gap: 0; border-top: 1px solid var(--line); }
.price { display: grid; grid-template-columns: auto 1fr; grid-template-areas: "amount name" "amount desc"; column-gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--line); align-items: start; }
.price__amount { grid-area: amount; font-family: var(--serif); font-size: 36px; line-height: 1; color: var(--gold-2); min-width: 96px; }
.price__amount small { font-family: var(--sans); font-size: 13px; color: var(--cream-2); margin-left: 2px; }
.price__name { grid-area: name; font-weight: 700; font-size: 18px; }
.price__desc { grid-area: desc; color: var(--cream-2); font-size: 16px; line-height: 1.55; margin-top: 4px; }
.prices__note { margin-top: 16px; }

.timeline { display: grid; gap: 0; border-top: 1px solid var(--line); }
.timeline__row { display: grid; gap: 6px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.timeline__t { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-2); font-weight: 700; }
.timeline h3 { font-family: var(--sans); font-weight: 700; font-size: 18px; margin-bottom: 5px; }
.timeline p { color: var(--cream-2); font-size: 16.5px; line-height: 1.55; }
@media (min-width: 640px) { .timeline__row { grid-template-columns: 150px 1fr; gap: 16px; } }

.about { display: grid; gap: 16px; font-size: 17px; line-height: 1.6; color: var(--cream); }
.about p { max-width: var(--measure); }
.creds { list-style: none; padding: 0; margin: 4px 0 6px; display: grid; gap: 10px; }
.creds li { padding-left: 18px; position: relative; font-size: 16px; color: var(--cream-2); }
.creds li::before { content: ""; position: absolute; left: 0; top: 10px; width: 8px; height: 1px; background: var(--gold); }
.creds strong { color: var(--cream); font-weight: 700; }
.certs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 8px; }
.cert { padding: 0; border: 1px solid var(--line-strong); background: var(--ink); border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.cert img { aspect-ratio: 4 / 3; object-fit: cover; object-position: top; filter: saturate(0.9); }

.quotes { display: grid; gap: 0; margin-top: 22px; border-top: 1px solid var(--line); }
.quote { margin: 0; padding: 22px 0; border-bottom: 1px solid var(--line); }
.quote p { font-family: var(--serif); font-size: clamp(19px, 4.5vw, 22px); line-height: 1.4; font-weight: 400; text-wrap: pretty; color: var(--cream); }
.quote p::before { content: "“"; color: var(--gold-2); }
.quote p::after { content: "”"; color: var(--gold-2); }
.quote footer { margin-top: 10px; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream-2); }
.quote .stars { color: var(--gold-2); letter-spacing: 2px; margin-right: 8px; }
#more-quotes { margin-top: 18px; }

.find { display: grid; gap: 18px; margin-bottom: 20px; }
.find__addr { font-family: var(--serif); font-style: normal; font-size: 24px; line-height: 1.25; color: var(--gold-2); }
.find__body { display: grid; gap: 12px; color: var(--cream); font-size: 16.5px; line-height: 1.55; }
.find__links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
@media (min-width: 640px) { .find { grid-template-columns: 180px 1fr; } }
.map { border: 1px solid var(--line-strong); border-radius: var(--radius); overflow: hidden; background: var(--ink-3); }
.map iframe { display: block; width: 100%; height: 260px; border: 0; filter: grayscale(1) invert(0.92) contrast(0.9) sepia(0.25); }

.linklist { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.linklist li { display: grid; gap: 2px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.linklist a { font-weight: 700; font-size: 17px; color: var(--cream); text-decoration: none; text-decoration-color: var(--gold-2); }
.linklist a:hover { text-decoration: underline; }
.linklist span { color: var(--cream-2); font-size: 15.5px; }

.cta { padding: clamp(52px, 10vw, 100px) 0; border-top: 1px solid var(--gold); background: radial-gradient(ellipse 70% 60% at 50% 110%, rgba(216, 180, 90, 0.16), transparent 60%); }
.cta__title { font-size: clamp(32px, 7.6vw, 50px); margin-bottom: 12px; }
.cta .muted { font-size: 17px; }
.cta .hero__actions { margin-top: 22px; }

.foot { padding: 32px 0 calc(96px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); display: grid; gap: 12px; }
.foot .wrap { display: grid; gap: 12px; }
.foot__brand { display: inline-flex; align-items: center; gap: 12px; }
.foot__brand .mono { font-family: var(--script); font-size: 40px; line-height: 1; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.foot__brand .word { font-family: var(--serif); font-weight: 600; font-size: 15px; letter-spacing: 0.16em; text-transform: uppercase; line-height: 1.1; }
.foot__brand .word small { display: block; font-family: var(--sans); font-weight: 400; font-size: 9px; letter-spacing: 0.26em; color: var(--gold-2); margin-top: 4px; }
.foot__links { display: flex; flex-wrap: wrap; gap: 4px 18px; }
.foot__links a { color: var(--cream-2); text-decoration: none; }
.foot__links a:hover { color: var(--gold); }
@media (min-width: 720px) { .foot { padding-bottom: 40px; } }

.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px var(--pad) calc(10px + env(safe-area-inset-bottom)); background: rgba(23, 20, 15, 0.95); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-top: 1px solid var(--line-strong); transform: translateY(100%); transition: transform 0.25s; }
.sticky-cta.is-on { transform: none; }
.sticky-cta__text { display: grid; line-height: 1.2; }
.sticky-cta .btn { min-height: 46px; padding-left: 26px; padding-right: 26px; }
@media (min-width: 720px) { .sticky-cta { display: none; } }

.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: end center; }
.modal[hidden] { display: none; }
.modal__scrim { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.7); }
.modal__box { position: relative; width: 100%; max-width: 44rem; max-height: 90dvh; overflow: auto; background: var(--ink-2); border: 1px solid var(--line-strong); border-bottom: 0; border-radius: 10px 10px 0 0; padding: 16px var(--pad) calc(24px + env(safe-area-inset-bottom)); display: grid; gap: 14px; }
.modal__head { display: flex; align-items: center; justify-content: space-between; }
.modal__box img { border: 1px solid var(--line); }
body.modal-open { overflow: hidden; }


/* FAQ */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 16px 32px 16px 0; font-weight: 700; font-size: 17px; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); color: var(--gold-2); font-size: 22px; font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq p { padding: 0 0 18px; color: var(--cream-2); font-size: 16.5px; line-height: 1.55; max-width: 60ch; }

/* Desktop and larger tablets ------------------------------------------ */
@media (min-width: 960px) {
  .wrap { max-width: 70rem; }
  .top__inner { min-height: 72px; }
  .top__nav { gap: 22px; }
  .hero { padding: 96px 0 72px; }
  .hero .wrap { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); column-gap: 72px; align-items: center; }
  .hero .eyebrow, .hero__title, .hero__lede, .hero__trust { grid-column: 1; }
  .hero__side { grid-column: 2; grid-row: 1 / span 4; align-self: center; padding: 28px 32px 32px; border: 1px solid var(--line-strong); border-radius: 6px; background: var(--ink-2); }
  .hero__price { margin: 0 0 18px; padding: 0 0 18px; border-top: 0; }
  .hero__actions { grid-template-columns: 1fr; }
  .hero__title { font-size: clamp(44px, 4.6vw, 64px); max-width: 14ch; }
  .hero__lede { font-size: 20px; }
  .section { padding: 88px 0; }
  .section__title { font-size: 40px; max-width: 24ch; }
  .ledger { display: grid; grid-template-columns: 1fr 1fr; column-gap: 48px; border-top: 1px solid var(--line); }
  .ledger li { border-top: 0; border-bottom: 1px solid var(--line); }
  .ledger li:last-child { border-bottom: 1px solid var(--line); }
  .value { grid-template-columns: auto auto; align-items: center; justify-content: start; column-gap: 28px; margin-top: 36px; }
  .value__line { grid-column: 1 / -1; }
  .prices { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); column-gap: 32px; border-top: 0; max-width: 60rem; }
  .price { grid-template-columns: 1fr; grid-template-areas: "amount" "name" "desc"; padding: 26px 28px; border: 1px solid var(--line-strong); border-radius: 6px; background: var(--ink); row-gap: 6px; }
  .price__amount { font-size: 44px; }
  .prices .price[hidden] { display: none; }
  .timeline { grid-template-columns: 1fr 1fr; column-gap: 48px; }
  .timeline__row { grid-template-columns: 1fr; border-top: 0; }
  .about { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); column-gap: 64px; align-items: start; }
  .about > p { grid-column: 1; }
  .creds, .certs, .about > .small { grid-column: 2; }
  .creds { grid-row: 1 / span 2; margin: 0; }
  .certs { grid-row: 3; }
  .about > .small { grid-row: 4; }
  .quotes { grid-template-columns: 1fr 1fr; column-gap: 48px; }
  .find { grid-template-columns: 200px 1fr; }
  #find-us .wrap { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); column-gap: 64px; align-items: start; }
  #find-us .eyebrow, #find-us .section__title, #find-us .find { grid-column: 1; }
  #find-us .map { grid-column: 2; grid-row: 1 / span 3; align-self: stretch; }
  #find-us .map iframe { height: 100%; min-height: 360px; }
  .faq { columns: 2; column-gap: 48px; border-top: 0; }
  .faq details { break-inside: avoid; border-top: 1px solid var(--line); border-bottom: 0; }
  .linklist { display: grid; grid-template-columns: 1fr 1fr; column-gap: 48px; }
  .cta .wrap { text-align: center; }
  .cta .hero__actions { grid-template-columns: auto auto; justify-content: center; }
  .cta .btn--block { width: auto; min-width: 260px; }
  .foot .wrap { grid-template-columns: auto 1fr; column-gap: 48px; align-items: center; }
  .foot__brand { grid-row: 1 / span 3; }
}
@media (min-width: 1280px) {
  .hero__title { font-size: 68px; }
}
