/* ===================================================================
   Světlo dušičkám — styles
   Palette, typography and layout faithful to the Claude Design source,
   rebuilt as a responsive, dependency-free site.
   =================================================================== */

:root {
  --bg:        #F3EADD;
  --bg-warm:   #FBF4E9;
  --ink:       #2B2018;
  --ink-soft:  #3A2E22;
  --rust:      #B5552F;
  --gold:      #D08A3C;
  --muted:     #5A4D3E;
  --muted-2:   #6A5D4D;
  --muted-3:   #9C8E73;
  --border:    #E4D6C0;
  --border-2:  #EEE3D2;
  --cream:     #F1E1CC;
  --footer-bg: #241A13;

  --serif:  'Newsreader', Georgia, 'Times New Roman', serif;
  --sans:   'Figtree', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --script: 'Caveat', cursive;

  --maxw: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}
::selection { background: var(--rust); color: #fff; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ---------- layout helpers ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding-left: 32px; padding-right: 32px; }
.container-narrow { max-width: 1000px; margin: 0 auto; padding-left: 32px; padding-right: 32px; }
.section { padding-top: 80px; padding-bottom: 30px; }
.section--tight { padding-top: 60px; padding-bottom: 20px; }
.center { text-align: center; }

/* ---------- shared type ---------- */
.script-accent {
  font-family: var(--script);
  font-size: 25px;
  color: var(--rust);
  display: inline-block;
}
.script-tilt { transform: rotate(-3deg); font-size: 27px; align-self: flex-start; margin-bottom: 6px; }
.h2 { font-family: var(--serif); font-weight: 500; font-size: 34px; line-height: 1.15; }
.body-text { font-size: 15.5px; line-height: 1.65; color: var(--muted-2); }
.sparkle { color: var(--gold); font-size: 17px; }
.sparkle--lg { font-size: 20px; }
.stars { color: var(--gold); font-size: 16px; letter-spacing: 3px; }
.stars--sm { font-size: 15px; margin-bottom: 12px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--rust); color: #fff; box-shadow: 0 8px 20px -10px rgba(181,85,47,.7); }
.btn-primary:hover { background: #a44b27; }
.btn-dark { background: var(--ink); color: var(--bg); padding: 14px 26px; margin-top: 24px; }
.btn-dark:hover { background: #1d150f; }
.btn-sm { padding: 11px 20px; font-size: 14px; }
.btn-outline-light { border: 1px solid rgba(247,239,226,.4); color: #F7EFE2; padding: 15px 30px; }
.btn-outline-light:hover { background: rgba(247,239,226,.08); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn-row.center { justify-content: center; }

.btn-tel { font-size: 15px; color: var(--ink); font-weight: 600; display: flex; align-items: center; gap: 8px; }
.link-arrow { font-size: 14.5px; color: var(--rust); font-weight: 600; }
.link-arrow:hover { text-decoration: underline; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(243,234,221,.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 15px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 11px; cursor: pointer; }
.brand-name { font-family: var(--serif); font-size: 23px; font-weight: 500; letter-spacing: .005em; }
.primary-nav { display: flex; align-items: center; gap: 25px; font-size: 14.5px; color: var(--muted); font-weight: 500; }
.primary-nav a { cursor: pointer; padding: 4px 0; }
.primary-nav a:not(.nav-cta):hover { color: var(--rust); }
.primary-nav a.is-current:not(.nav-cta) { color: var(--rust); }
.nav-cta { background: var(--rust); color: #fff; border-radius: 999px; padding: 9px 20px; font-weight: 600; }
.nav-cta:hover { background: #a44b27; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- page switching ---------- */
.page[hidden] { display: none; }

/* ---------- hero ---------- */
.hero { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; border-bottom: 1px solid var(--border); }
.hero-copy {
  padding: 80px 56px 80px 0;
  padding-left: max(32px, calc((100vw - var(--maxw)) / 2 + 32px));
  display: flex; flex-direction: column; justify-content: center;
}
.display { font-family: var(--serif); font-weight: 500; font-size: clamp(40px, 4.6vw, 60px); line-height: 1.06; letter-spacing: -.01em; }
.lead { font-size: 18px; line-height: 1.65; color: var(--muted); margin-top: 24px; max-width: 440px; }
.hero-media { position: relative; min-height: 520px; overflow: hidden; }
.hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-media-overlay { position: absolute; inset: 0; background: linear-gradient(110deg, rgba(243,234,221,.35), rgba(43,32,24,.15) 45%, rgba(43,32,24,.05)); }
.hero-media--fallback { background: linear-gradient(150deg, #E7D8B8, #D9B98C 55%, #B5552F); }
.hero-media--fallback::before {
  content: "🕯"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 96px; opacity: .35;
}
.hero-note {
  position: absolute; left: 24px; bottom: 24px;
  background: var(--bg); padding: 11px 17px; border-radius: 12px;
  box-shadow: 0 10px 26px -10px rgba(0,0,0,.5); transform: rotate(-1.5deg);
}
.hero-note .script-accent { font-size: 22px; color: var(--ink); }

/* ---------- trust band ---------- */
.trust-band { background: var(--bg-warm); border-bottom: 1px solid var(--border); }
.trust-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 22px 32px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px;
  font-size: 14.5px; color: var(--muted);
}
.trust-item { display: flex; align-items: center; gap: 9px; }

/* ---------- section heads ---------- */
.section-head--center { text-align: center; margin-bottom: 46px; }
.section-head--center .h2 { font-size: 38px; margin-top: 2px; }
.row-between { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 16px; margin-bottom: 30px; }

/* ---------- how it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { text-align: center; }
.step-num {
  width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 50%;
  background: var(--cream); display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 22px; color: var(--rust);
}
.step-title { font-weight: 700; font-size: 17px; margin-bottom: 7px; }
.step-text { font-size: 14.5px; line-height: 1.6; color: var(--muted-2); max-width: 280px; margin: 0 auto; }

/* ---------- services preview list ---------- */
.svc-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 40px; }
.svc-item { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.svc-name { font-weight: 700; font-size: 16px; }
.svc-desc { font-size: 14px; color: var(--muted-2); line-height: 1.5; }

/* ---------- band (warm) ---------- */
.band { background: var(--bg-warm); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.band--top { border-top: none; }
.pricing-teaser { padding: 66px 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

/* ---------- price card ---------- */
.price-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 24px; box-shadow: 0 16px 40px -24px rgba(43,32,24,.4); }
.price-card-head { display: flex; justify-content: space-between; font-size: 13px; color: var(--muted-3); font-weight: 600; padding-bottom: 12px; border-bottom: 1px solid var(--border-2); }
.price-row { display: flex; justify-content: space-between; align-items: center; padding: 13px 0; border-bottom: 1px solid var(--border-2); font-size: 15px; }
.price-row--last { border-bottom: none; }
.price { font-family: var(--serif); font-size: 19px; color: var(--rust); }
.price-note { font-size: 12.5px; color: var(--muted-3); margin-top: 12px; }

/* ---------- before / after ---------- */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 900px; margin: 0 auto; }
.ba-photo { position: relative; aspect-ratio: 4/3; border-radius: 14px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.ba-photo--before { background: var(--border); }
.ba-photo--after { background: #E7D8B8; }
.ba-placeholder { font-family: var(--serif); font-size: 18px; color: var(--muted-3); }
.ba-tag { position: absolute; left: 14px; top: 14px; font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 999px; }
.ba-tag--before { background: var(--ink); color: var(--bg); }
.ba-tag--after { background: var(--rust); color: #fff; }

/* ---------- quote ---------- */
.quote-section { max-width: 900px; margin: 0 auto; padding: 50px 32px 80px; text-align: center; }
.quote-mark { font-family: var(--serif); font-size: 60px; color: var(--gold); line-height: .5; height: 30px; }
.quote { font-family: var(--serif); font-style: italic; font-size: 26px; line-height: 1.5; color: var(--ink-soft); }
.quote-author { margin-top: 20px; font-size: 14.5px; color: var(--muted-2); font-weight: 600; }
.quote-section .stars { margin-top: 6px; font-size: 15px; }

/* ---------- final CTA ---------- */
.cta-band { background: var(--ink); color: var(--bg); text-align: center; padding: 70px 32px; }
.cta-title { font-family: var(--serif); font-weight: 500; font-size: 36px; color: #F7EFE2; }
.cta-script { font-size: 26px; color: #E0A35A; margin-top: 10px; }
.cta-band .btn-row { margin-top: 28px; }

/* ---------- inner page heroes ---------- */
.page-hero { padding: 64px 32px 56px; }
.page-title { font-family: var(--serif); font-weight: 500; font-size: clamp(34px, 4.4vw, 52px); line-height: 1.08; margin-top: 2px; }
.page-intro { font-size: 17px; line-height: 1.65; color: var(--muted); max-width: 560px; margin-top: 18px; }

/* ---------- service cards ---------- */
.card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 30px; }
.card-title { font-family: var(--serif); font-size: 26px; color: var(--rust); margin-bottom: 6px; }
.card-text { font-size: 15px; line-height: 1.6; color: var(--muted-2); }
.card--accent { background: var(--cream); border-color: #E2C9A8; display: flex; flex-direction: column; justify-content: center; }
.card-script { font-family: var(--script); font-size: 24px; color: var(--rust); margin-bottom: 4px; }
.card-text-accent { font-size: 15px; line-height: 1.6; color: #6A4E32; margin-bottom: 14px; }
.card--accent .btn { align-self: flex-start; }

/* ---------- note boxes ---------- */
.note-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.note-box { border: 1px dashed #C9B89C; border-radius: 16px; padding: 26px 30px; }
.note-label { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-3); font-weight: 600; margin-bottom: 12px; }
.note-list { list-style: none; font-size: 15px; color: var(--muted); line-height: 2; }

/* ---------- price table ---------- */
.price-table { background: #fff; border: 1px solid var(--border); border-radius: 18px; overflow: hidden; box-shadow: 0 18px 44px -28px rgba(43,32,24,.4); }
.pt-head, .pt-row { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.3fr; align-items: center; }
.pt-head { background: var(--ink); color: var(--bg); font-size: 13px; font-weight: 600; }
.pt-head > div { padding: 16px 22px; }
.pt-head .pt-c { padding: 16px; }
.pt-row { border-bottom: 1px solid var(--border-2); }
.pt-row:last-child { border-bottom: none; }
.pt-row--alt { background: var(--bg-warm); }
.pt-c { text-align: center; }
.pt-label { padding: 18px 22px; font-weight: 600; font-size: 15px; }
.pt-price { padding: 18px 16px; font-family: var(--serif); font-size: 20px; color: var(--rust); }
.pt-price--sm { font-size: 18px; color: var(--muted); }
.pt-terms { padding: 18px 22px; font-size: 13.5px; color: var(--muted-2); }
.price-legend { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; margin-top: 22px; font-size: 13.5px; color: var(--muted-3); }
.price-legend .dot { opacity: .6; }

/* ---------- gallery ---------- */
.gallery { display: flex; flex-direction: column; gap: 30px; }
.gallery-item { background: #fff; border: 1px solid var(--border); border-radius: 18px; overflow: hidden; }
.gallery-pair { display: grid; grid-template-columns: 1fr 1fr; }
.gallery-pair .ba-photo { border-radius: 0; }
.gallery-caption { padding: 18px 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.gallery-title { font-weight: 600; font-size: 15px; }
.gallery-loc { font-size: 13.5px; color: var(--muted-3); }
.gallery-hint { font-size: 23px; color: var(--muted-3); }

/* ---------- reference ---------- */
.rating { display: flex; align-items: center; gap: 14px; margin-top: 18px; }
.rating-num { font-family: var(--serif); font-size: 34px; color: var(--rust); }
.rating-sub { font-size: 13px; color: var(--muted-3); margin-top: 2px; }
.ref-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ref-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 26px; }
.ref-quote { font-family: var(--serif); font-style: italic; font-size: 17px; line-height: 1.55; color: var(--ink-soft); }
.ref-author { margin-top: 16px; font-size: 14px; font-weight: 600; }

/* ---------- faq ---------- */
.faq { display: flex; flex-direction: column; gap: 12px; max-width: 820px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 18px 24px; }
.faq-item summary { font-weight: 700; font-size: 16px; cursor: pointer; list-style: none; position: relative; padding-right: 28px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 0; top: -2px; font-size: 22px; font-weight: 400; color: var(--rust); transition: transform .2s; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { font-size: 14.5px; line-height: 1.6; color: var(--muted-2); margin-top: 10px; }

/* ---------- about ---------- */
.about-hero { padding: 64px 32px 56px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.about-photo { position: relative; aspect-ratio: 4/5; border-radius: 18px; overflow: hidden; box-shadow: 0 18px 44px -24px rgba(43,32,24,.5); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo--fallback { background: linear-gradient(150deg, #E7D8B8, #D9B98C 55%, #B5552F); }
.about-photo--fallback::before { content: "🕯"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 80px; opacity: .4; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value { text-align: center; }
.value-icon { font-size: 26px; margin-bottom: 10px; }
.value-title { font-family: var(--serif); font-size: 21px; margin-bottom: 6px; }
.value-text { font-size: 14.5px; line-height: 1.6; color: var(--muted-2); }
.area-box { background: #fff; border: 1px solid var(--border); border-radius: 18px; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; }
.area-copy { padding: 36px 40px; display: flex; flex-direction: column; justify-content: center; }
.area-title { font-family: var(--serif); font-size: 28px; margin-bottom: 10px; }
.area-map { position: relative; min-height: 240px; background: linear-gradient(135deg, #E7D8B8, var(--border)); display: flex; align-items: center; justify-content: center; }
.area-map-label { position: absolute; bottom: 16px; font-family: var(--script); font-size: 20px; color: #8A6A3E; }

/* ---------- contact ---------- */
.contact { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: start; }
.contact-form { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 32px 34px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-top: 16px; }
.form-row .field { margin-top: 0; }
.field label { font-size: 13px; font-weight: 600; color: var(--muted); display: block; margin-bottom: 6px; }
.field input, .field textarea {
  width: 100%; border: 1px solid #DCCDB4; border-radius: 10px; background: var(--bg-warm);
  padding: 12px 14px; font-family: inherit; font-size: 15px; color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.field input { height: 46px; }
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--rust); box-shadow: 0 0 0 3px rgba(181,85,47,.12); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.btn-submit { margin-top: 20px; width: 100%; background: var(--rust); color: #fff; font-weight: 600; font-size: 15px; padding: 15px; border: none; border-radius: 10px; cursor: pointer; font-family: inherit; transition: background .15s; }
.btn-submit:hover { background: #a44b27; }
.btn-submit:disabled { opacity: .6; cursor: default; }
.form-note { font-size: 12.5px; color: var(--muted-3); margin-top: 12px; text-align: center; }
.form-note.is-success { color: #2e7d32; font-weight: 600; }
.form-note.is-error { color: #b3261e; font-weight: 600; }

.contact-aside { display: flex; flex-direction: column; gap: 14px; }
.contact-whatsapp { background: var(--ink); color: var(--bg); border-radius: 16px; padding: 24px; display: block; transition: transform .15s; }
.contact-whatsapp:hover { transform: translateY(-2px); }
.contact-kicker { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: #E0A35A; margin-bottom: 8px; }
.contact-wa-title { font-family: var(--serif); font-size: 24px; margin-bottom: 4px; }
.contact-wa-num { font-size: 16px; font-weight: 600; }
.contact-box { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 24px; }
.contact-lines { display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; color: var(--ink-soft); }
.contact-lines strong { font-weight: 600; }
.contact-lines a:hover { color: var(--rust); text-decoration: underline; }
.contact-accent { background: var(--cream); border: 1px solid #E2C9A8; border-radius: 16px; padding: 20px 24px; }
.contact-accent .script-accent { font-size: 21px; }
.contact-accent p { font-size: 14px; color: #6A4E32; line-height: 1.5; margin-top: 4px; }

/* ---------- footer ---------- */
.site-footer { background: var(--footer-bg); color: #C9B79D; border-top: 1px solid #3A2C20; }
.footer-grid { padding: 54px 32px 30px; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand-name { font-family: var(--serif); font-size: 21px; color: var(--bg); }
.footer-about { font-size: 14px; line-height: 1.6; max-width: 330px; color: #A8967C; }
.footer-label { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: #7A6A52; margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; font-size: 14px; }
.footer-links a { cursor: pointer; }
.footer-links a:hover { color: var(--bg); }
.footer-tel { color: #E0A35A; font-weight: 600; }
.footer-muted { color: #A8967C; }
.footer-bottom { border-top: 1px solid #3A2C20; padding: 18px 32px; text-align: center; font-size: 12.5px; color: #7A6A52; }

/* ===================================================================
   Responsive
   =================================================================== */
@media (max-width: 960px) {
  .ref-grid { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; gap: 28px; }
  .steps { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 860px) {
  /* nav → mobile toggle */
  .nav-toggle { display: flex; }
  .primary-nav {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px);
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--bg); padding: 88px 24px 24px;
    box-shadow: -16px 0 40px -20px rgba(0,0,0,.4);
    transform: translateX(100%); transition: transform .25s ease;
    font-size: 17px;
  }
  .primary-nav.is-open { transform: translateX(0); }
  .primary-nav a { padding: 12px 6px; border-bottom: 1px solid var(--border); }
  .nav-cta { text-align: center; margin-top: 12px; border-bottom: none !important; }
  body.nav-open { overflow: hidden; }
  .nav-scrim { position: fixed; inset: 0; background: rgba(43,32,24,.35); z-index: 40; opacity: 0; pointer-events: none; transition: opacity .25s; }
  .nav-scrim.is-open { opacity: 1; pointer-events: auto; }

  /* hero stacks */
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 56px 32px 40px; }
  .hero-media { min-height: 360px; }

  /* two-col grids stack */
  .svc-list { grid-template-columns: 1fr; gap: 0; }
  .pricing-teaser { grid-template-columns: 1fr; gap: 32px; padding: 48px 32px; }
  .card-grid { grid-template-columns: 1fr; }
  .note-grid { grid-template-columns: 1fr; }
  .about-hero { grid-template-columns: 1fr; gap: 32px; }
  .about-photo { max-width: 420px; }
  .area-box { grid-template-columns: 1fr; }
  .area-map { min-height: 180px; }
  .contact { grid-template-columns: 1fr; }

  .section { padding-top: 56px; }
  .section-head--center { margin-bottom: 32px; }
  .h2 { font-size: 28px; }
  .section-head--center .h2 { font-size: 30px; }

  /* price table → stacked cards */
  .price-table { border-radius: 14px; }
  .pt-head { display: none; }
  .pt-row { grid-template-columns: 1fr; padding: 6px 0 14px; }
  .pt-row > div { padding: 6px 20px; text-align: left; }
  .pt-label { font-size: 17px; padding-top: 16px; }
  .pt-c { text-align: left; }
  .pt-price, .pt-price--sm { font-size: 18px; }
  .pt-row > div[data-th]::before {
    content: attr(data-th) ": "; font-family: var(--sans); font-size: 12px;
    font-weight: 600; color: var(--muted-3); text-transform: uppercase; letter-spacing: .04em;
    display: inline-block; min-width: 90px;
  }
  .pt-label[data-th]::before { content: none; }
  .pt-terms[data-th]::before { content: attr(data-th) ": "; }
}

@media (max-width: 520px) {
  .container, .container-narrow { padding-left: 20px; padding-right: 20px; }
  .hero-copy { padding: 44px 20px 36px; }
  .page-hero, .about-hero { padding-left: 20px; padding-right: 20px; }
  .ba-grid { gap: 14px; }
  .gallery-pair { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-row .field { margin-top: 16px; }
  .form-row .field:first-child { margin-top: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .trust-inner { gap: 12px; }
  .display { font-size: clamp(34px, 9vw, 44px); }
  .cta-title { font-size: 28px; }
}

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