/* American Mobile Care Team */

:root {
  --cream: #FAF4E9;
  --cream-deep: #F1E6D2;
  --paper: #FFFDF7;
  --ink: #16264A;
  --ink-deep: #0E1A36;
  --ink-60: rgba(22, 38, 74, 0.68);
  --ink-40: rgba(22, 38, 74, 0.44);
  --line: rgba(22, 38, 74, 0.18);
  --line-soft: rgba(22, 38, 74, 0.1);
  --red: #C22F2F;
  --red-deep: #9E2121;
  --red-tint: #F4DFD2;
  --cream-on-ink: #F6EEDD;
  --cream-on-ink-60: rgba(246, 238, 221, 0.66);
  --serif: 'Zodiak', Georgia, 'Times New Roman', serif;
  --sans: 'General Sans', 'Segoe UI', Tahoma, sans-serif;
  --radius: 18px;
  --header-h: 76px;
  --gutter: clamp(20px, 4.5vw, 56px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.04rem;
  line-height: 1.62;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

main, .site-header, .site-footer { position: relative; z-index: 1; }

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

a { color: var(--red); }

::selection { background: var(--red-tint); color: var(--ink); }

:focus-visible {
  outline: 2.5px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

h1, h2, h3 {
  font-family: var(--serif);
  color: var(--ink);
  line-height: 1.06;
  font-weight: 900;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 200;
  background: var(--ink);
  color: var(--cream-on-ink);
  padding: 12px 20px;
  border-radius: 0 0 10px 10px;
  text-decoration: none;
  font-weight: 600;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1;
  text-decoration: none;
  border: 2px solid var(--ink);
  border-radius: 12px;
  padding: 15px 26px;
  min-height: 44px;
  cursor: pointer;
  color: var(--ink);
  background: transparent;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease,
              box-shadow 0.22s ease, transform 0.22s ease;
}

.btn-solid {
  background: var(--red);
  border-color: var(--red);
  color: #FFF6EA;
  box-shadow: 4px 4px 0 rgba(22, 38, 74, 0.9);
}
.btn-solid:hover {
  background: var(--red-deep);
  border-color: var(--red-deep);
  box-shadow: 2px 2px 0 rgba(22, 38, 74, 0.9);
  transform: translate(2px, 2px);
}

.btn-ghost:hover { background: rgba(22, 38, 74, 0.07); }

.btn-ghost svg { width: 17px; height: 17px; }

.btn-lg { padding: 18px 32px; font-size: 1.04rem; }

.btn-compact { padding: 11px 18px; font-size: 0.9rem; border-width: 1.7px; }

.text-link {
  display: inline-block;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  border-bottom: 2px solid currentColor;
  padding-bottom: 2px;
  min-height: 0;
}
.text-link:hover { color: var(--red-deep); }

.phone-link {
  color: var(--red);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.phone-link:hover { color: var(--red-deep); }

/* ---------- Type helpers ---------- */

.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--red);
  flex: none;
}

.section-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 64px); }

.section-head h2 { font-size: clamp(2.1rem, 4vw, 3.2rem); letter-spacing: -0.01em; }

.section-lead {
  margin-top: 16px;
  font-size: 1.12rem;
  color: var(--ink-60);
  max-width: 56ch;
}

.accent-underline {
  font-style: normal;
  position: relative;
  white-space: nowrap;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 26' preserveAspectRatio='none'%3E%3Cpath d='M6 18 C 60 8, 150 6, 214 12 M10 22 C 70 14, 160 12, 208 17' fill='none' stroke='%23C22F2F' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 0.34em;
  padding-bottom: 0.16em;
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(250, 244, 233, 0.86);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line-soft);
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 28px;
}

.wordmark {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
  flex: none;
}

.wordmark-kicker {
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}

.wordmark-name {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 1.24rem;
  color: var(--ink);
  letter-spacing: 0.005em;
}

.site-nav {
  display: flex;
  gap: clamp(14px, 2vw, 28px);
  margin-left: auto;
}

.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.94rem;
  padding: 8px 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 90 8' preserveAspectRatio='none'%3E%3Cpath d='M3 5 C 28 2, 62 2, 87 4' fill='none' stroke='%23C22F2F' stroke-width='2.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 50% calc(100% - 2px);
  background-size: 0% 6px;
  transition: background-size 0.25s ease;
}
.site-nav a:hover { background-size: 100% 6px; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 9px;
  background: none;
  border: 2px solid var(--ink);
  border-radius: 12px;
  padding: 10px 14px;
  min-height: 44px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle-bars {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  width: 18px;
}
.menu-toggle-bars span {
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-bars span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-bars span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-menu {
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
  box-shadow: 0 24px 48px rgba(14, 26, 54, 0.18);
  padding: 10px var(--gutter) 26px;
}

.mobile-menu nav { display: flex; flex-direction: column; }

.mobile-menu nav a {
  color: var(--ink);
  text-decoration: none;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.35rem;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-soft);
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

/* ---------- Hero ---------- */

.hero {
  padding: calc(var(--header-h) + clamp(40px, 7vw, 96px)) var(--gutter) clamp(48px, 7vw, 104px);
  background:
    radial-gradient(1100px 520px at 82% 4%, rgba(194, 47, 47, 0.07), transparent 60%),
    radial-gradient(900px 620px at 6% 90%, rgba(22, 38, 74, 0.06), transparent 55%);
}

.hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.5rem, 4.1vw, 3.5rem);
  letter-spacing: -0.015em;
}

.h1-line { display: block; }

.hero-sub {
  margin-top: 24px;
  font-size: 1.16rem;
  color: var(--ink-60);
  max-width: 50ch;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-note {
  margin-top: 22px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}

.note-flag {
  width: 10px;
  height: 10px;
  background: var(--red);
  transform: rotate(45deg);
  flex: none;
}

.hero-media { position: relative; }

.hero-frame {
  position: relative;
  aspect-ratio: 3 / 2.1;
  border-radius: 260px 260px var(--radius) var(--radius);
  overflow: hidden;
  border: 2px solid var(--ink);
  box-shadow: 10px 10px 0 rgba(22, 38, 74, 0.9);
}

.hero-frame img {
  position: absolute;
  top: -7%;
  left: 0;
  width: 100%;
  height: 114%;
  object-fit: cover;
  transform-origin: center;
}

.hero-cutout {
  position: absolute;
  left: -46px;
  bottom: -34px;
  width: clamp(120px, 14vw, 185px);
  height: auto;
  filter: drop-shadow(0 18px 22px rgba(14, 26, 54, 0.3));
}

.hero-stamp {
  position: absolute;
  top: -34px;
  right: -18px;
  width: clamp(96px, 10vw, 132px);
  height: auto;
}

.stamp-ring { fill: var(--cream); stroke: var(--red); stroke-width: 2; }
.stamp-core { fill: var(--red); }
.stamp-spin { transform-origin: 50% 50%; transform-box: view-box; }
.stamp-text {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  fill: var(--ink);
}
.stamp-check { stroke: var(--cream); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Trust strip ---------- */

.trust { background: var(--ink-deep); }

.trust-list {
  max-width: 1240px;
  margin: 0 auto;
  padding: 26px var(--gutter);
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px 34px;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--cream-on-ink);
  font-weight: 500;
  font-size: 0.96rem;
}

.trust-list svg {
  width: 26px;
  height: 26px;
  flex: none;
  color: #E8B96A;
}

/* ---------- Sections shared ---------- */

.services, .how, .pricing, .specials, .quotes, .faq, .contact {
  padding: clamp(64px, 9vw, 128px) var(--gutter);
}

.services > *, .how > *, .pricing > *, .specials > *, .quotes > *, .faq > * {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Services ---------- */

.svc-flagship {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 4.5vw, 68px);
  align-items: center;
  margin-bottom: clamp(52px, 7vw, 92px);
}

.svc-flagship-media {
  position: relative;
  transform: rotate(-1.4deg);
}

.svc-flagship-media img {
  border-radius: var(--radius);
  border: 2px solid var(--ink);
  box-shadow: 10px 10px 0 var(--red-tint);
}

.svc-flag-tag {
  position: absolute;
  top: 22px;
  left: -14px;
  background: var(--red);
  color: #FFF6EA;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 4px;
  box-shadow: 4px 4px 0 rgba(22, 38, 74, 0.85);
}

.svc-flagship-body h3 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  margin-bottom: 18px;
}

.svc-price {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 700;
  margin-top: 18px;
  color: var(--ink);
}
.svc-price strong { color: var(--red); font-weight: 900; }

.svc-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 26px;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3.5vw, 52px);
}

.svc-card {
  border-top: 2px solid var(--ink);
  padding-top: 24px;
  position: relative;
}

.svc-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 44px;
  height: 2px;
  background: var(--red);
  transform: translateY(-3px);
}

.svc-card:nth-child(2) { margin-top: 30px; }

.svc-card figure {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--line);
  margin-bottom: 22px;
}

.svc-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.svc-card:hover img { transform: scale(1.04); }

.svc-card h3 { font-size: 1.42rem; margin-bottom: 12px; }

.svc-card .svc-price { font-size: 1.05rem; margin: 14px 0 12px; }

/* ---------- How it works ---------- */

.how {
  background: var(--cream-deep);
  position: relative;
  overflow: hidden;
}

.how-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(28px, 3.5vw, 44px);
  counter-reset: step;
  position: relative;
}

.how-steps::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 4%;
  right: 4%;
  border-top: 2px dashed rgba(194, 47, 47, 0.5);
}

.how-steps li { position: relative; }

.how-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--ink);
  font-family: var(--serif);
  font-weight: 900;
  font-size: 1.7rem;
  color: var(--red);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  box-shadow: 4px 4px 0 rgba(22, 38, 74, 0.16);
}

.how-steps h3 { font-size: 1.32rem; margin-bottom: 10px; }

.how-steps p { color: var(--ink-60); font-size: 0.99rem; }

.how-cutout {
  position: absolute;
  width: clamp(90px, 10vw, 150px);
  height: auto;
  filter: drop-shadow(0 14px 18px rgba(14, 26, 54, 0.24));
  pointer-events: none;
}
.how-cutout-a { right: max(-20px, 1vw); top: 44px; transform: rotate(8deg); }
.how-cutout-b { left: max(-24px, 0.5vw); bottom: -30px; transform: rotate(-7deg); }

/* ---------- Pricing ---------- */

.pricing { background: var(--ink-deep); }

.pricing .eyebrow { color: #E8B96A; }
.pricing .eyebrow::before { background: #E8B96A; }
.pricing h2, .pricing h3 { color: var(--cream-on-ink); }
.pricing .section-lead { color: var(--cream-on-ink-60); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 60px);
}

.menu-group h3 {
  font-size: 1.4rem;
  padding-bottom: 14px;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(246, 238, 221, 0.24);
  position: relative;
}
.menu-group h3::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--red);
}

.menu-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 13px 0;
}

.menu-row dt {
  color: var(--cream-on-ink);
  font-weight: 500;
  font-size: 0.99rem;
}

.menu-row dt small {
  display: block;
  color: var(--cream-on-ink-60);
  font-size: 0.84rem;
  font-weight: 400;
  margin-top: 3px;
}

.menu-row::before { display: none; }

.menu-row::after {
  content: "";
  order: 2;
  flex: 1;
  border-bottom: 2px dotted rgba(246, 238, 221, 0.3);
  transform: translateY(-4px);
  min-width: 24px;
}

.menu-row dt { order: 1; }

.menu-row dd {
  order: 3;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--cream-on-ink);
  white-space: nowrap;
}

.menu-row dd a {
  color: #E8B96A;
  text-decoration: none;
  border-bottom: 2px solid rgba(232, 185, 106, 0.5);
}
.menu-row dd a:hover { border-bottom-color: #E8B96A; }

.menu-custom {
  margin-top: clamp(36px, 5vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: var(--red);
  color: #FFF6EA;
  text-decoration: none;
  border-radius: 14px;
  padding: 24px clamp(22px, 3vw, 40px);
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  box-shadow: 6px 6px 0 rgba(246, 238, 221, 0.22);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.menu-custom:hover {
  background: var(--red-deep);
  transform: translate(2px, 2px);
  box-shadow: 4px 4px 0 rgba(246, 238, 221, 0.22);
}

.menu-custom-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.98rem;
  white-space: nowrap;
}
.menu-custom-cta svg { width: 20px; height: 20px; }

.menu-note {
  margin-top: 26px;
  color: var(--cream-on-ink-60);
  font-size: 0.9rem;
}

/* ---------- Specials ---------- */

.tickets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.5vw, 30px);
  align-items: stretch;
}

.ticket {
  position: relative;
  background: var(--paper);
  border: 2px dashed var(--ink);
  border-radius: 14px;
  padding: 30px 26px 28px;
  overflow: hidden;
}

.ticket::before, .ticket::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px dashed var(--ink);
  transform: translateY(-50%);
}
.ticket::before { left: -15px; }
.ticket::after { right: -15px; }

.ticket-big {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(2.1rem, 3vw, 2.7rem);
  color: var(--red);
  line-height: 1;
  margin-bottom: 12px;
}

.ticket h3 { font-size: 1.16rem; margin-bottom: 10px; }

.ticket p:last-child { color: var(--ink-60); font-size: 0.93rem; }

.ticket-featured {
  background: var(--red);
  border-color: var(--red-deep);
  transform: rotate(-1.6deg);
}
.ticket-featured::before, .ticket-featured::after { border-color: var(--red-deep); }
.ticket-featured .ticket-big { color: #FFF6EA; }
.ticket-featured h3 { color: #FFF6EA; }
.ticket-featured p:last-child { color: rgba(255, 246, 234, 0.82); }

.tickets-note {
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--ink-40);
}

/* ---------- Cinematic break ---------- */

.break { position: relative; }

.break-figure {
  position: relative;
  height: clamp(380px, 62vh, 620px);
  overflow: hidden;
}

.break-figure img {
  width: 100%;
  height: 118%;
  object-fit: cover;
  position: absolute;
  top: -9%;
  left: 0;
}

.break-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 26, 54, 0.34), rgba(14, 26, 54, 0.08) 45%, rgba(14, 26, 54, 0.42));
}

.break-line {
  position: absolute;
  inset: auto 0 clamp(36px, 7vh, 72px);
  z-index: 1;
  text-align: center;
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(1.7rem, 4vw, 3rem);
  color: #FFF8EC;
  text-shadow: 0 3px 26px rgba(14, 26, 54, 0.55);
  padding: 0 var(--gutter);
}

/* ---------- Quotes ---------- */

.quotes { background: var(--cream); }

.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 3vw, 40px);
}

.quote {
  position: relative;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 34px 30px;
}

.quote::before {
  content: "\201C";
  position: absolute;
  top: -8px;
  left: 22px;
  font-family: var(--serif);
  font-weight: 900;
  font-size: 4.4rem;
  line-height: 1;
  color: var(--red);
}

.quote p {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.28rem;
  line-height: 1.42;
}

.quote footer {
  margin-top: 18px;
  color: var(--ink-60);
  font-size: 0.93rem;
}

.quote cite {
  font-style: normal;
  font-weight: 700;
  color: var(--ink);
  margin-right: 8px;
}

.quote:nth-child(even) { margin-top: 34px; }

.quote-ink { background: var(--ink-deep); border-color: var(--ink-deep); }
.quote-ink p { color: var(--cream-on-ink); }
.quote-ink footer { color: var(--cream-on-ink-60); }
.quote-ink cite { color: var(--cream-on-ink); }
.quote-ink::before { color: #E8B96A; }

.quote-red { background: var(--red-tint); border-color: var(--red-tint); }

/* ---------- FAQ ---------- */

.faq .faq-list { max-width: 860px; }

.faq details {
  border-bottom: 1.5px solid var(--line);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 4px;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }

.faq summary h3 {
  display: inline;
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.3;
}

.faq-icon {
  position: relative;
  flex: none;
  width: 34px;
  height: 34px;
  border: 2px solid var(--ink);
  border-radius: 50%;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2.4px;
  background: var(--red);
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
details[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }

.faq-body { padding: 0 44px 26px 4px; }

.faq-body p { color: var(--ink-60); max-width: 68ch; }

/* ---------- Contact ---------- */

.contact { background: var(--cream-deep); }

.contact-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.04fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

.contact h2 { font-size: clamp(2.1rem, 4vw, 3.2rem); }

.area-map { margin-top: 36px; max-width: 430px; }

.area-map svg { width: 100%; height: auto; }

.map-blob {
  fill: var(--cream);
  stroke: var(--ink);
  stroke-width: 2;
}

.map-road {
  fill: none;
  stroke: var(--ink-40);
  stroke-width: 1.6;
  stroke-dasharray: 7 6;
}

.map-river {
  fill: none;
  stroke: #7A93C4;
  stroke-width: 2.4;
  stroke-linecap: round;
  opacity: 0.8;
}

.map-city circle { fill: var(--red); }

.map-city text {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  fill: var(--ink);
}

.map-star { fill: var(--red); stroke: var(--ink); stroke-width: 1.4; }

.map-city-main text {
  font-size: 14.5px;
  font-weight: 700;
}

.area-map figcaption {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--ink-60);
}

.quote-form {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: clamp(28px, 3.5vw, 44px);
  box-shadow: 10px 10px 0 rgba(22, 38, 74, 0.85);
  position: relative;
}

.form-row { margin-bottom: 20px; }

.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.quote-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.6px solid var(--line);
  border-radius: 10px;
  padding: 13px 15px;
  min-height: 44px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.quote-form textarea { resize: vertical; }

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--red);
  background: var(--paper);
}

.quote-form input[aria-invalid="true"],
.quote-form textarea[aria-invalid="true"] { border-color: var(--red-deep); }

.quote-form ::placeholder { color: var(--ink-40); }

.btn-submit { width: 100%; position: relative; }

.btn-submit .btn-sending { display: none; }

.btn-submit.sending .btn-label { display: none; }
.btn-submit.sending .btn-sending {
  display: inline-block;
  animation: sending-pulse 1s ease-in-out infinite;
}

@keyframes sending-pulse {
  50% { opacity: 0.5; }
}

.form-micro {
  text-align: center;
  margin-top: 14px;
  font-size: 0.88rem;
  color: var(--ink-60);
}

.form-status {
  margin-top: 12px;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--red-deep);
  text-align: center;
  min-height: 1.4em;
}

.form-success {
  background: var(--red-tint);
  border-radius: 12px;
  padding: 26px 24px;
  margin-top: 8px;
}

.form-success-title {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 1.45rem;
  margin-bottom: 10px;
}

/* ---------- About ---------- */

.about {
  padding: clamp(48px, 6vw, 84px) var(--gutter);
  border-top: 1.5px solid var(--line-soft);
}

.about-inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(26px, 4vw, 48px);
}

.about-logo {
  flex: none;
  width: clamp(96px, 11vw, 132px);
  background: #FFFFFF;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 12px;
  box-shadow: 6px 6px 0 var(--red-tint);
  transform: rotate(-2.2deg);
}

.about-logo img { width: 100%; height: auto; }

.about-body h2 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); margin-bottom: 12px; }

.about-body p { color: var(--ink-60); max-width: 56ch; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink-deep);
  color: var(--cream-on-ink-60);
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 76px) var(--gutter) 40px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr;
  gap: clamp(32px, 4vw, 64px);
}

.wordmark-footer { margin-bottom: 16px; }
.wordmark-footer .wordmark-name { color: var(--cream-on-ink); font-size: 1.5rem; }

.footer-brand p { max-width: 34ch; font-size: 0.96rem; }

.footer-brand .phone-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 1.2rem;
  color: #E8B96A;
}

.footer-nav { display: flex; flex-direction: column; gap: 10px; }

.footer-nav a {
  color: var(--cream-on-ink);
  text-decoration: none;
  font-weight: 500;
  width: fit-content;
  border-bottom: 1.5px solid transparent;
}
.footer-nav a:hover { border-bottom-color: var(--red); }

.footer-meta { font-size: 0.9rem; display: flex; flex-direction: column; gap: 12px; }

.footer-credit { opacity: 0.62; }

/* ---------- Motion setup ---------- */

.js [data-reveal],
.js [data-stagger] > * {
  opacity: 0;
  transform: translateY(28px);
}

.js [data-split] { visibility: hidden; }

.js.no-motion [data-reveal],
.js.no-motion [data-stagger] > * {
  opacity: 1;
  transform: none;
}

.js.no-motion [data-split] { visibility: visible; }

.split-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
}

.split-word-inner { display: inline-block; }

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

/* ---------- Responsive ---------- */

@media (max-width: 1100px) {
  .trust-list { grid-template-columns: repeat(2, 1fr); }
  .tickets { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { max-width: none; }
}

@media (max-width: 900px) {
  .site-nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .header-actions .btn-ghost { display: none; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { max-width: 560px; }
  .hero-cutout { left: -14px; }
  .hero-stamp { right: 0; top: -26px; }

  .svc-flagship { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .svc-card:nth-child(2) { margin-top: 0; }

  .how-steps { grid-template-columns: 1fr 1fr; gap: 36px; }
  .how-steps::before { display: none; }
  .how-cutout { display: none; }

  .menu-grid { grid-template-columns: 1fr; gap: 40px; }

  .contact-inner { grid-template-columns: 1fr; }
  .area-map { max-width: 480px; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-meta { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  body { font-size: 1rem; }

  .header-inner { gap: 10px; padding: 0 16px; }
  .wordmark-kicker { font-size: 0.54rem; letter-spacing: 0.22em; }
  .wordmark-name { font-size: 1rem; }
  .btn-compact { padding: 10px 12px; font-size: 0.82rem; }
  .menu-toggle { padding: 10px 12px; }
  .menu-toggle-label { display: none; }
  .header-actions { gap: 8px; }

  .hero { padding-top: calc(var(--header-h) + 34px); }
  .hero h1 { font-size: clamp(2rem, 9vw, 2.6rem); }
  .hero-ctas .btn { width: 100%; }
  .hero-cutout { width: 110px; bottom: -22px; }

  .svc-grid { grid-template-columns: 1fr; }
  .svc-flag-tag { left: 10px; }

  .how-steps { grid-template-columns: 1fr; }

  .tickets { grid-template-columns: 1fr; }
  .ticket-featured { transform: none; }

  .quote-grid { grid-template-columns: 1fr; }
  .quote:nth-child(even) { margin-top: 0; }

  .form-row-split { grid-template-columns: 1fr; }

  .about-inner { flex-direction: column; align-items: flex-start; }

  .footer-inner { grid-template-columns: 1fr; }

  .menu-custom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 400px) {
  .header-inner { padding: 0 10px; gap: 6px; }
  .header-actions { gap: 6px; }
  .wordmark-kicker { font-size: 0.5rem; letter-spacing: 0.18em; }
  .wordmark-name { font-size: 0.84rem; }
  .btn-compact { padding: 8px 9px; font-size: 0.74rem; }
  .menu-toggle { padding: 8px 9px; }
  .hero h1 { font-size: clamp(1.8rem, 8.6vw, 2.4rem); }
}
