:root {
  --kirby-red: #dc2626;
  --kirby-red-dark: #9f1717;
  --kirby-red-soft: #fff0ef;
  --ink: #0f0f0f;
  --muted: #615f5c;
  --paper: #fbfaf8;
  --mist: #f3f4f6;
  --line: rgba(15, 15, 15, 0.12);
  --white: #ffffff;
  --radius-xl: 2rem;
  --radius-lg: 1.25rem;
  --shadow-soft: 0 24px 60px rgba(27, 18, 14, 0.1);
  --shadow-card: 0 14px 30px rgba(28, 16, 12, 0.08);
  --container: min(1140px, calc(100vw - 40px));
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; background: var(--paper); color: var(--ink); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  transform: translateY(-180%);
  padding: 0.8rem 1rem;
  border-radius: 0.65rem;
  background: var(--ink);
  color: var(--white);
  transition: transform 180ms ease;
}
.skip-link:focus { transform: translateY(0); }

.site-shell { overflow: hidden; }
.container { width: var(--container); margin-inline: auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1rem;
  color: var(--kirby-red);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
}
.eyebrow::before { width: 2.5rem; height: 2px; background: currentColor; content: ""; }
.display {
  max-width: 13ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 6.2rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.94;
}
.page-title {
  max-width: 11ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.4rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.94;
}
.section-title {
  max-width: 15ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 4.2vw, 4.25rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}
.lede {
  max-width: 38rem;
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.17rem);
  line-height: 1.7;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--kirby-red);
  font-size: 0.92rem;
  font-weight: 800;
}
.text-link::after { content: "→"; font-size: 1.15rem; transition: transform 180ms ease; }
.text-link:hover::after { transform: translateX(0.25rem); }

.button-row { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2.1rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.89rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button--red { background: var(--kirby-red); color: var(--white); box-shadow: 0 12px 24px rgba(220, 38, 38, 0.22); }
.button--red:hover { background: var(--kirby-red-dark); }
.button--ink { background: var(--ink); color: var(--white); }
.button--ink:hover { background: #2a2928; }
.button--outline { border-color: rgba(255, 255, 255, 0.5); color: var(--white); }
.button--outline:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.13); }
.button--soft { border-color: var(--line); background: var(--white); color: var(--ink); }
.button--soft:hover { border-color: var(--kirby-red); color: var(--kirby-red); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid transparent;
  background: rgba(251, 250, 248, 0.84);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 24px rgba(15, 15, 15, 0.05); }
.header-inner {
  display: flex;
  min-height: 5.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; }
.brand img { width: 8.7rem; height: auto; }
.nav { display: flex; align-items: center; gap: 1.5rem; }
.nav a { color: #393735; font-size: 0.86rem; font-weight: 750; transition: color 160ms ease; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--kirby-red); }
.header-actions { display: flex; align-items: center; gap: 0.7rem; }
.header-actions .button { min-height: 2.65rem; padding: 0.62rem 0.95rem; }
.menu-button {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}
.menu-button span, .menu-button::before, .menu-button::after {
  display: block;
  width: 1.05rem;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  content: "";
  transition: transform 160ms ease, opacity 160ms ease;
}
.menu-button::before { transform: translateY(-0.3rem); }
.menu-button::after { transform: translateY(0.3rem); }
.menu-button[aria-expanded="true"] span { opacity: 0; }
.menu-button[aria-expanded="true"]::before { transform: translateY(0.125rem) rotate(45deg); }
.menu-button[aria-expanded="true"]::after { transform: translateY(-0.125rem) rotate(-45deg); }

.hero { position: relative; isolation: isolate; min-height: min(760px, calc(100vh - 5.25rem)); background: #181615; color: var(--white); }
.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(24, 22, 21, 0.99) 0%, rgba(24, 22, 21, 0.94) 34%, rgba(24, 22, 21, 0.44) 70%, rgba(24, 22, 21, 0.28) 100%);
  content: "";
}
.hero::after {
  position: absolute;
  z-index: -1;
  inset: auto -7rem -7rem auto;
  width: min(38vw, 36rem);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(220, 38, 38, 0.08), 0 0 0 8rem rgba(220, 38, 38, 0.045);
  content: "";
}
.hero__image { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 69% center; animation: hero-drift 18s ease-in-out infinite alternate; }
.hero__inner { display: grid; min-height: inherit; align-content: center; padding-block: 8.5rem 6.2rem; }
.hero .eyebrow { color: #ff9d9d; }
.hero .lede { color: rgba(255, 255, 255, 0.76); }
.hero__tag { display: flex; align-items: center; gap: 0.65rem; width: fit-content; margin-top: 3rem; color: rgba(255, 255, 255, 0.58); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.hero__tag::before { width: 0.55rem; height: 0.55rem; border-radius: 50%; background: var(--kirby-red); box-shadow: 0 0 0 0.25rem rgba(220, 38, 38, 0.18); content: ""; animation: pulse 2.2s ease-in-out infinite; }
.hero__rail { position: absolute; right: max(20px, calc((100vw - 1140px) / 2)); bottom: 2.1rem; display: flex; align-items: center; gap: 0.9rem; color: rgba(255, 255, 255, 0.62); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.hero__rail::after { width: 4.75rem; height: 1px; background: rgba(255, 255, 255, 0.48); content: ""; }
.hero-benefits { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.45rem; }
.hero-benefit { display: flex; align-items: center; gap: 0.7rem; min-width: min(100%, 16.5rem); padding: 0.7rem 0.85rem; border: 1px solid rgba(255, 255, 255, 0.24); border-radius: 0.8rem; background: rgba(15, 15, 15, 0.42); color: var(--white); transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease; }
.hero-benefit:hover { border-color: rgba(255, 255, 255, 0.55); background: rgba(220, 38, 38, 0.3); transform: translateY(-2px); }
.hero-benefit svg { flex: 0 0 auto; width: 1.45rem; height: 1.45rem; fill: none; stroke: #ffb1ab; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.hero-benefit strong, .hero-benefit small { display: block; }
.hero-benefit strong { font-size: 0.83rem; }
.hero-benefit small { margin-top: 0.15rem; color: rgba(255, 255, 255, 0.7); font-size: 0.72rem; line-height: 1.35; }

.credibility { position: relative; z-index: 2; margin-top: -3.1rem; }
.credibility__inner { display: grid; grid-template-columns: 1.25fr 1fr 1fr; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: var(--radius-lg); background: rgba(255, 255, 255, 0.96); box-shadow: var(--shadow-soft); }
.credibility__inner--four { grid-template-columns: 1.1fr 1fr 1fr 1.1fr; }
.credibility__item { min-height: 8rem; padding: 1.7rem 1.8rem; border-left: 1px solid var(--line); }
.credibility__item:first-child { border-left: 0; }
.credibility__item strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 1.65rem; font-weight: 500; letter-spacing: -0.045em; }
.credibility__item span { display: block; margin-top: 0.35rem; color: var(--muted); font-size: 0.88rem; line-height: 1.5; }
.credibility__item--red { background: var(--kirby-red); color: var(--white); }
.credibility__item--red span { color: rgba(255, 255, 255, 0.75); }
.credibility__item--rewards { background: var(--kirby-red-soft); }
.credibility__item--rewards a { display: inline-flex; gap: 0.3rem; margin-top: 0.55rem; color: var(--kirby-red-dark); font-size: 0.77rem; font-weight: 850; }
.credibility__item--rewards a:hover { color: var(--kirby-red); }

.section { padding-block: clamp(5rem, 9vw, 9rem); }
.section--mist { background: var(--mist); }
.section--ink { background: var(--ink); color: var(--white); }
.section--tight { padding-block: clamp(3.7rem, 7vw, 6rem); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; }
.section-heading__copy { max-width: 31rem; }
.section-heading .lede { margin-top: 0; }

.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; margin-top: 3.1rem; }
.service-card { position: relative; min-height: 26rem; overflow: hidden; border-radius: var(--radius-lg); background: #2a2623; color: var(--white); box-shadow: var(--shadow-card); }
.service-card__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 500ms cubic-bezier(0.2, 0.65, 0.3, 1); }
.service-card::after { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(9, 8, 8, 0.05) 17%, rgba(9, 8, 8, 0.83) 100%); content: ""; }
.service-card:hover .service-card__image { transform: scale(1.06); }
.service-card__content { position: relative; z-index: 1; display: flex; height: 100%; flex-direction: column; justify-content: flex-end; padding: 1.55rem; }
.service-card__number { margin-bottom: auto; color: rgba(255, 255, 255, 0.8); font-size: 0.71rem; font-weight: 800; letter-spacing: 0.15em; }
.service-card h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 1.9rem; font-weight: 500; letter-spacing: -0.045em; }
.service-card p { margin: 0.75rem 0 0; color: rgba(255, 255, 255, 0.77); font-size: 0.9rem; line-height: 1.55; }
.service-card .text-link { margin-top: 1.15rem; color: var(--white); }

.craft-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 6vw, 7rem); align-items: center; }
.craft-photo { position: relative; }
.craft-photo img { min-height: 33rem; width: 100%; border-radius: var(--radius-xl); object-fit: cover; box-shadow: var(--shadow-soft); }
.craft-photo::before { position: absolute; z-index: -1; top: -1.6rem; left: -1.6rem; width: 9rem; height: 9rem; border: 1px solid rgba(220, 38, 38, 0.42); border-radius: 50%; content: ""; }
.craft-note { position: absolute; right: -1.8rem; bottom: 2.3rem; max-width: 13.5rem; padding: 1.1rem 1.2rem; border-radius: 0.9rem; background: var(--kirby-red); color: var(--white); box-shadow: 0 14px 30px rgba(159, 23, 23, 0.26); }
.craft-note span { display: block; font-size: 0.67rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.craft-note strong { display: block; margin-top: 0.35rem; font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; font-weight: 500; line-height: 1.06; }
.values { display: grid; gap: 1.2rem; margin: 2.2rem 0 0; }
.value { display: grid; grid-template-columns: 3.2rem 1fr; gap: 1rem; padding-top: 1.1rem; border-top: 1px solid var(--line); }
.value__number { color: var(--kirby-red); font-size: 0.72rem; font-weight: 900; letter-spacing: 0.12em; }
.value h3 { margin: 0; font-size: 1rem; }
.value p { margin: 0.4rem 0 0; color: var(--muted); font-size: 0.93rem; line-height: 1.6; }

.process { position: relative; overflow: hidden; }
.process::before { position: absolute; top: -16rem; right: -15rem; width: 36rem; height: 36rem; border: 1px solid rgba(255, 255, 255, 0.11); border-radius: 50%; box-shadow: 0 0 0 5rem rgba(255, 255, 255, 0.025), 0 0 0 10rem rgba(255, 255, 255, 0.017); content: ""; }
.process .eyebrow { color: #ff9d9d; }
.process .lede { color: rgba(255, 255, 255, 0.67); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 3.5rem; background: rgba(255, 255, 255, 0.2); }
.process-step { position: relative; min-height: 17rem; padding: 2.1rem; background: var(--ink); }
.process-step span { display: block; color: #ff9d9d; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.14em; }
.process-step h3 { margin: 3.2rem 0 0; font-family: Georgia, "Times New Roman", serif; font-size: 2.25rem; font-weight: 500; letter-spacing: -0.05em; line-height: 1; }
.process-step p { max-width: 18rem; margin: 1rem 0 0; color: rgba(255, 255, 255, 0.67); font-size: 0.94rem; line-height: 1.65; }

.local-band { position: relative; overflow: hidden; padding-block: clamp(4rem, 7vw, 6.6rem); background: linear-gradient(110deg, #b61919, var(--kirby-red) 48%, #ef4a3d); color: var(--white); }
.local-band::after { position: absolute; right: -8rem; bottom: -12rem; width: 30rem; height: 30rem; border: 1px solid rgba(255, 255, 255, 0.29); border-radius: 50%; box-shadow: 0 0 0 4rem rgba(255, 255, 255, 0.07), 0 0 0 8rem rgba(255, 255, 255, 0.045); content: ""; }
.local-band__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 2rem; }
.local-band .section-title { max-width: 12ch; }
.local-band p { max-width: 35rem; margin: 1.15rem 0 0; color: rgba(255, 255, 255, 0.8); line-height: 1.65; }
.contact-pills { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.5rem; }
.contact-pill { display: inline-flex; min-height: 2.5rem; align-items: center; padding: 0.65rem 0.85rem; border: 1px solid rgba(255, 255, 255, 0.33); border-radius: 999px; color: var(--white); font-size: 0.82rem; font-weight: 750; transition: background-color 160ms ease; }
.contact-pill:hover { background: rgba(255, 255, 255, 0.15); }

.faq-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 6vw, 7rem); align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 1.3rem 2.2rem 1.3rem 0; cursor: pointer; list-style: none; font-size: 1rem; font-weight: 800; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; top: 1.08rem; right: 0.2rem; color: var(--kirby-red); content: "+"; font-size: 1.35rem; font-weight: 400; transition: transform 180ms ease; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list p { max-width: 42rem; margin: -0.1rem 0 1.35rem; color: var(--muted); font-size: 0.94rem; line-height: 1.7; }

.cta-block { position: relative; overflow: hidden; padding: clamp(2.25rem, 5vw, 4rem); border-radius: var(--radius-xl); background: #fff0ef; }
.cta-block::after { position: absolute; top: -12rem; right: -8rem; width: 27rem; height: 27rem; border: 1px solid rgba(220, 38, 38, 0.2); border-radius: 50%; box-shadow: 0 0 0 3rem rgba(220, 38, 38, 0.04); content: ""; }
.cta-block > * { position: relative; z-index: 1; }
.cta-block h2 { max-width: 15ch; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.15rem, 4vw, 3.7rem); font-weight: 500; letter-spacing: -0.055em; line-height: 0.97; }
.cta-block p { max-width: 32rem; margin: 1rem 0 0; color: var(--muted); line-height: 1.6; }

.page-hero { position: relative; overflow: hidden; padding-block: clamp(5rem, 10vw, 9.5rem); background: var(--ink); color: var(--white); }
.page-hero::after { position: absolute; right: -13rem; bottom: -17rem; width: 43rem; height: 43rem; border: 1px solid rgba(255, 255, 255, 0.13); border-radius: 50%; box-shadow: 0 0 0 5rem rgba(220, 38, 38, 0.24), 0 0 0 10rem rgba(220, 38, 38, 0.11); content: ""; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { color: #ff9d9d; }
.page-hero .lede { color: rgba(255, 255, 255, 0.72); }
.crumbs { display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 0 0 2.2rem; color: rgba(255, 255, 255, 0.58); font-size: 0.79rem; font-weight: 700; }
.crumbs a:hover { color: var(--white); }
.crumbs span { color: #ff9d9d; }
.content-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.05rem; margin-top: 3.1rem; }
.content-card { min-height: 14.5rem; padding: 1.6rem; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: 0 8px 16px rgba(15, 15, 15, 0.025); }
.content-card__label { display: block; color: var(--kirby-red); font-size: 0.7rem; font-weight: 900; letter-spacing: 0.13em; text-transform: uppercase; }
.content-card h2 { margin: 2.25rem 0 0; font-family: Georgia, "Times New Roman", serif; font-size: 2rem; font-weight: 500; letter-spacing: -0.05em; line-height: 1; }
.content-card p { margin: 0.8rem 0 0; color: var(--muted); font-size: 0.93rem; line-height: 1.65; }
.notice { margin-top: 2.2rem; padding: 1.1rem 1.2rem; border-left: 3px solid var(--kirby-red); background: var(--kirby-red-soft); color: #4a2c2a; font-size: 0.91rem; line-height: 1.6; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.05rem; margin-top: 2.5rem; }
.price-card { padding: 1.6rem; border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-card); }
.price-card span { color: var(--kirby-red); font-size: 0.7rem; font-weight: 900; letter-spacing: 0.13em; text-transform: uppercase; }
.price-card h2 { margin: 2rem 0 0; font-family: Georgia, "Times New Roman", serif; font-size: 2.25rem; font-weight: 500; letter-spacing: -0.05em; }
.price-card p { margin: 0.7rem 0 0; color: var(--muted); font-size: 0.92rem; line-height: 1.65; }
.price-card a { margin-top: 1.35rem; }
.special-card { display: grid; grid-template-columns: 1fr 1.2fr; overflow: hidden; border-radius: var(--radius-xl); background: var(--ink); color: var(--white); }
.special-card img { width: 100%; height: 100%; min-height: 24rem; object-fit: cover; }
.special-card__content { display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem, 5vw, 4rem); }
.special-card__content .eyebrow { color: #ff9d9d; }
.special-card__content h2 { max-width: 10ch; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.3rem, 4vw, 4rem); font-weight: 500; letter-spacing: -0.055em; line-height: 0.95; }
.special-card__content p { max-width: 30rem; margin: 1.1rem 0 0; color: rgba(255, 255, 255, 0.7); line-height: 1.65; }
.address-card { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border-radius: var(--radius-xl); background: var(--white); box-shadow: var(--shadow-soft); }
.address-card img { width: 100%; min-height: 26rem; height: 100%; object-fit: cover; }
.address-card__content { padding: clamp(2rem, 5vw, 4rem); }
.address-card__content h2 { margin: 1rem 0 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.25rem, 4vw, 3.8rem); font-weight: 500; letter-spacing: -0.055em; line-height: 0.98; }
.contact-stack { display: grid; gap: 0.8rem; margin-top: 1.8rem; }
.contact-stack a, .contact-stack p { display: block; margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.5; }
.contact-stack a:hover { color: var(--kirby-red); }

.site-footer { padding: 4rem 0 1.7rem; background: #11100f; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.05fr 0.7fr 0.7fr 1.1fr; gap: 2rem; padding-bottom: 3.2rem; }
.footer-brand img {
  width: 7.25rem;
  height: 4.65rem;
  object-fit: contain;
  object-position: left center;
  background: var(--white);
  border-radius: 0.45rem;
}
.footer-brand p { max-width: 19rem; margin: 1.15rem 0 0; color: rgba(255, 255, 255, 0.62); font-size: 0.87rem; line-height: 1.65; }
.footer-col h2 { margin: 0 0 0.9rem; color: #ff9d9d; font-size: 0.68rem; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase; }
.footer-col a, .footer-col p { display: block; margin: 0.58rem 0 0; color: rgba(255, 255, 255, 0.73); font-size: 0.86rem; line-height: 1.45; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 1.4rem; border-top: 1px solid rgba(255, 255, 255, 0.12); color: rgba(255, 255, 255, 0.5); font-size: 0.75rem; }

[data-reveal] { opacity: 0; transform: translateY(1.5rem); transition: opacity 700ms cubic-bezier(0.2, 0.65, 0.3, 1), transform 700ms cubic-bezier(0.2, 0.65, 0.3, 1); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal="delay-1"] { transition-delay: 90ms; }
[data-reveal="delay-2"] { transition-delay: 180ms; }
[data-reveal="delay-3"] { transition-delay: 270ms; }

@keyframes hero-drift { from { transform: scale(1.01) translate3d(0, 0, 0); } to { transform: scale(1.06) translate3d(-0.5%, -0.7%, 0); } }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 0.9; } 50% { transform: scale(1.18); opacity: 1; } }

@media (max-width: 980px) {
  .nav { gap: 1rem; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { min-height: 22rem; }
  .content-grid, .price-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  :root { --container: min(calc(100% - 32px), 1140px); }
  .header-inner { min-height: 4.5rem; }
  .brand img { width: 7.2rem; }
  .menu-button { display: grid; place-items: center; }
  .nav {
    position: fixed;
    top: 4.95rem;
    right: 1rem;
    left: 1rem;
    display: grid;
    gap: 0;
    overflow: hidden;
    max-height: 0;
    border: 1px solid transparent;
    border-radius: 1rem;
    background: var(--white);
    box-shadow: 0 18px 45px rgba(15, 15, 15, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.5rem);
    transition: max-height 220ms ease, opacity 180ms ease, transform 180ms ease, border-color 180ms ease;
  }
  .nav.is-open { max-height: 22rem; border-color: var(--line); opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav a { padding: 1rem 1.1rem; border-bottom: 1px solid var(--line); }
  .nav a:last-child { border-bottom: 0; }
  .header-actions .button--soft { display: none; }
  .header-actions .button { min-height: 2.5rem; padding-inline: 0.85rem; font-size: 0.8rem; }
  .hero { min-height: 43rem; }
  .hero::before { background: linear-gradient(90deg, rgba(24, 22, 21, 0.98) 0%, rgba(24, 22, 21, 0.88) 54%, rgba(24, 22, 21, 0.45) 100%); }
  .hero__image { object-position: 71% center; }
  .hero__inner { align-content: center; padding-top: 7rem; padding-bottom: 5.5rem; }
  .hero-benefits { display: grid; grid-template-columns: 1fr; }
  .hero-benefit { width: 100%; min-width: 0; }
  .hero__rail { display: none; }
  .display { font-size: clamp(3.15rem, 13vw, 4.6rem); }
  .credibility { margin-top: 0; }
  .credibility .container { width: 100%; }
  .credibility__inner, .credibility__inner--four { border-radius: 0; grid-template-columns: 1fr; }
  .credibility__item, .credibility__item:first-child {
    min-height: 0;
    padding: 1.25rem 1rem;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
  .credibility__item:first-child { border-top: 0; }
  .section-heading, .craft-grid, .faq-layout, .local-band__inner, .special-card, .address-card { grid-template-columns: 1fr; display: grid; }
  .section-heading { align-items: start; }
  .section-heading .lede { margin-top: 1.25rem; }
  .service-grid, .content-grid, .price-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 22rem; }
  .craft-photo { order: 2; margin-top: 1rem; }
  .craft-photo img { min-height: 23rem; }
  .craft-note { right: 1rem; bottom: 1rem; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { min-height: 13rem; }
  .process-step h3 { margin-top: 1.8rem; }
  .local-band__inner { align-items: start; }
  .local-band .button { width: fit-content; }
  .page-hero { padding-block: 4.5rem 5.4rem; }
  .page-title { font-size: clamp(3.1rem, 14vw, 4.5rem); }
  .address-card img { min-height: 17rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: start; flex-direction: column; }
}

@media (max-width: 420px) {
  .header-actions .button { padding-inline: 0.7rem; }
  .header-actions { gap: 0.4rem; }
  .brand img { width: 6.5rem; }
  .hero { min-height: 40rem; }
  .button-row .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand img { width: 6.5rem; height: 4.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
