@font-face {
  font-family: "Outfit";
  src: url("assets/fonts/outfit-latin-ext.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("assets/fonts/outfit-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("assets/fonts/playfair-latin-ext.woff2") format("woff2");
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("assets/fonts/playfair-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
}

:root {
  --bg: #181817;
  --bg-soft: #1d1d1c;
  --panel: rgba(31, 30, 29, 0.9);
  --panel-strong: rgba(37, 35, 34, 0.96);
  --text: #f4eee5;
  --muted: #c9c0b5;
  --muted-strong: #e4dbcf;
  --gold: #ffd11a;
  --gold-soft: #ffe47a;
  --section-label-color: var(--gold-soft);
  --section-label-size: 0.74rem;
  --section-label-spacing: 0.18em;
  --pink: #e42b7a;
  --orange: #ff7a1a;
  --line: rgba(255, 255, 255, 0.11);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1280px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(228, 43, 122, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(255, 209, 26, 0.12), transparent 25%),
    linear-gradient(180deg, #080808 0%, #0f0e0c 45%, #090909 100%);
  color: var(--text);
  font-family: "Outfit", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}

p,
h1,
h2,
h3,
ul {
  margin-top: 0;
}

.container {
  width: min(var(--container), calc(100% - 2.5rem));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 0.8rem;
  left: 0.8rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  color: #120b02;
  background: var(--gold);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--pink), var(--orange), var(--gold));
  box-shadow: 0 0 18px rgba(255, 209, 26, 0.7);
  transform: scaleX(0);
  transform-origin: left center;
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle, rgba(255, 209, 26, 0.08), transparent 68%);
  transform: translate(-50%, -50%);
}

.page-glow {
  position: fixed;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
}

.page-glow-left {
  top: 4rem;
  left: -10rem;
  background: rgba(228, 43, 122, 0.28);
}

.page-glow-right {
  top: 8rem;
  right: -8rem;
  background: rgba(255, 209, 26, 0.24);
}

.flying-bird {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8;
  width: clamp(4.2rem, 6vw, 6.2rem);
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
  filter: drop-shadow(0 0.7rem 1rem rgba(0, 0, 0, 0.3));
}

.flying-bird-rig {
  position: relative;
  width: 100%;
  transform-origin: 55% 54%;
  will-change: transform;
}

.flying-bird-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
}

.flying-bird-wing {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.48;
  pointer-events: none;
  mix-blend-mode: screen;
  filter: blur(0.35px) saturate(1.08);
  transform-origin: 55% 42%;
  will-change: transform;
}

.flying-bird-wing-upper {
  clip-path: polygon(48% 44%, 57% 5%, 72% 2%, 67% 46%);
}

.flying-bird-wing-side {
  clip-path: polygon(50% 42%, 63% 16%, 98% 7%, 91% 43%, 64% 55%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(20, 20, 19, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: min(12.5rem, 36vw);
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(255, 209, 26, 0.09));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.site-nav a {
  position: relative;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, var(--pink), var(--gold));
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 1rem;
  height: 1px;
  background: currentColor;
  transition: transform 220ms ease;
}

.menu-toggle span:first-child {
  transform: translateY(-3px);
}

.menu-toggle span:last-child {
  transform: translateY(3px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.anchor-target {
  display: block;
  position: relative;
  top: -7rem;
  visibility: hidden;
}

.eyebrow,
.section-heading > .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--section-label-color);
  text-transform: uppercase;
  letter-spacing: var(--section-label-spacing);
  font-size: var(--section-label-size);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 1.1rem;
}

.eyebrow::before {
  content: "";
  width: 2.8rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.hero,
.about-section,
.offer-section,
.testimonials-section,
.contact-section {
  position: relative;
  padding: 3rem 0 5.25rem;
}

.hero {
  padding-top: 4.5rem;
  min-height: calc(90svh - 5rem);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-copy {
  max-width: 72rem;
  margin: 0 auto;
  text-align: center;
  will-change: transform;
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 209, 26, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 20px var(--gold);
}

.hero-orbit-one {
  top: 12%;
  right: -12rem;
  width: 28rem;
  height: 28rem;
}

.hero-orbit-two {
  bottom: -12rem;
  left: 34%;
  width: 19rem;
  height: 19rem;
  border-color: rgba(228, 43, 122, 0.11);
}

.hero h1,
.section-heading h2,
.contact-copy h2,
.legal-card h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.hero h1 {
  max-width: 13ch;
  margin-inline: auto;
  margin-bottom: 1rem;
  font-size: clamp(2.9rem, 5.4vw, 5.1rem);
  line-height: 1.02;
}

.title-line {
  display: block;
  overflow: hidden;
}

.title-line + .title-line {
  margin-top: 0.1em;
}

.hero-text,
.section-heading p,
.contact-copy p {
  max-width: 68ch;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.6rem 0 0;
}

.hero-actions {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.8rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.98rem;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #120b02;
  background: linear-gradient(135deg, var(--gold) 0%, #fff0a6 100%);
  box-shadow: 0 15px 40px rgba(255, 209, 26, 0.22);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.offer-grid {
  display: grid;
}

.offer-card,
.legal-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow);
}

.contact-label {
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  font-weight: 600;
}

.about-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

.about-lead {
  margin-bottom: 0;
  max-width: 48ch;
  color: var(--muted-strong);
  font-size: clamp(1.12rem, 1.75vw, 1.3rem);
  line-height: 1.8;
}

.section-heading {
  max-width: 56rem;
  margin-bottom: 2.1rem;
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.contact-copy h2 {
  max-width: 14ch;
  font-size: clamp(2.1rem, 3.6vw, 3.25rem);
  margin-bottom: 0.85rem;
  line-height: 1.04;
}

.section-heading .eyebrow {
  justify-content: center;
}

.about-section::before,
.offer-section::before,
.testimonials-section::before,
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-section::before {
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 209, 26, 0.06), transparent 22%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025), transparent 28%, transparent 72%, rgba(255, 255, 255, 0.025));
  opacity: 0.95;
}

.offer-section::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 88% 18%, rgba(228, 43, 122, 0.08), transparent 20%);
}

.testimonials-section::before {
  background:
    radial-gradient(circle at 18% 28%, rgba(255, 209, 26, 0.08), transparent 18%),
    radial-gradient(circle at 86% 76%, rgba(228, 43, 122, 0.1), transparent 22%);
}

.contact-section::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at 82% 26%, rgba(255, 209, 26, 0.09), transparent 18%);
}

.about-copy {
  display: grid;
  gap: 1.35rem;
  justify-items: center;
  text-align: center;
}

.about-text {
  display: grid;
  gap: 1.5rem;
}

.offer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.offer-card {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  transition:
    border-color 280ms ease,
    box-shadow 280ms ease,
    transform 280ms ease;
}

.offer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(
    28rem circle at var(--pointer-x, 50%) var(--pointer-y, 50%),
    rgba(255, 209, 26, 0.09),
    transparent 42%
  );
  transition: opacity 280ms ease;
}

.offer-card:hover {
  transform: translateY(-0.3rem);
  border-color: rgba(255, 209, 26, 0.22);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.42);
}

.offer-card:hover::before {
  opacity: 1;
}

.offer-card > * {
  position: relative;
  z-index: 1;
}

.offer-card-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  margin-bottom: 0.9rem;
}

.offer-card-head h3 {
  margin-bottom: 0.28rem;
  font-size: 1.3rem;
  line-height: 1.2;
}

.offer-card-head p,
.offer-note,
.contact-footnote {
  color: var(--muted);
}

.offer-card-head p {
  margin-bottom: 0;
  font-size: 1rem;
}

.offer-note {
  margin-bottom: 1rem;
  color: var(--muted-strong);
  font-size: 1rem;
  line-height: 1.62;
}

.offer-card-body {
  display: grid;
  gap: 0.9rem;
}

.offer-detail {
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.offer-detail h4 {
  margin: 0 0 0.35rem;
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-detail p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.offer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 999px;
  color: #140d01;
  background: linear-gradient(135deg, var(--gold), #ffef96);
  font-weight: 700;
}

.offer-card-body ul {
  margin: 0;
  padding-left: 1.05rem;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.6;
}

.offer-card-body li + li {
  margin-top: 0.55rem;
}

.contact-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.6rem;
}

.about-visual {
  position: relative;
  display: grid;
  justify-items: center;
  align-self: end;
  gap: 0;
}

.about-portrait-shell {
  position: relative;
  width: min(48rem, 126%);
  max-width: none;
  padding: 0;
  overflow: visible;
}

.about-portrait {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 26px 42px rgba(0, 0, 0, 0.34));
}

.contact-copy {
  position: static;
}

.contact-details {
  position: relative;
  padding: 1.55rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(18, 17, 16, 0.84);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.contact-details::before {
  content: "";
  position: absolute;
  inset: auto auto -6rem -4rem;
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228, 43, 122, 0.14), transparent 70%);
  pointer-events: none;
}

.contact-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.contact-item {
  min-height: 100%;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
}

.contact-item a {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: clamp(1.08rem, 1.55vw, 1.3rem);
  font-weight: 500;
  word-break: break-word;
}

.contact-item address {
  margin-top: 0.35rem;
  font-size: 1.04rem;
  line-height: 1.7;
  font-style: normal;
}

.contact-plain {
  margin: 0.45rem 0 0;
  max-width: none;
  color: var(--muted-strong);
  font-size: 1rem;
  line-height: 1.7;
}

.contact-company-name {
  margin: 0.45rem 0 0;
  color: var(--text);
  font-family: inherit;
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.5;
}

.contact-actions {
  margin: 1.35rem 0 1rem;
}

.contact-footnote {
  margin-bottom: 0;
  max-width: 68ch;
  color: var(--muted-strong);
  font-size: 0.98rem;
  line-height: 1.7;
}

.site-footer {
  padding: 0 0 2rem;
}

.footer-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem 1.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-identity {
  display: grid;
  gap: 0.35rem;
}

.footer-company-name {
  color: var(--text);
  font-family: inherit;
  font-size: 1.15rem;
  letter-spacing: 0;
}

.footer-wrap p {
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.4rem;
}

.footer-links a:hover {
  color: var(--text);
}

.reveal {
  opacity: 1;
}

/* Cleaner editorial layout: compact sections and information-first offer rows. */
body {
  background:
    radial-gradient(circle at 12% 0%, rgba(228, 43, 122, 0.045), transparent 25rem),
    radial-gradient(circle at 88% 8%, rgba(255, 209, 26, 0.045), transparent 24rem),
    var(--bg);
  line-height: 1.6;
}

.page-glow,
.cursor-glow {
  display: none;
}

.nav-wrap {
  padding: 0.72rem 0;
}

.brand-logo {
  width: min(9.5rem, 32vw);
}

.hero,
.about-section,
.offer-section,
.testimonials-section,
.contact-section {
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
}

.hero {
  min-height: auto;
  padding-top: clamp(4.5rem, 8vw, 7rem);
  padding-bottom: clamp(4.5rem, 8vw, 7rem);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  max-width: 64rem;
}

.hero h1 {
  max-width: 18ch;
  margin-bottom: 1.1rem;
  font-size: clamp(2.65rem, 5vw, 4.7rem);
  line-height: 1.04;
}

.title-line + .title-line {
  color: var(--gold-soft);
}

.hero-text {
  max-width: 62ch;
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
  line-height: 1.7;
}

.hero-actions {
  margin-top: 1.45rem;
}

.button {
  min-height: 3rem;
  padding: 0.68rem 1.3rem;
  font-size: 0.93rem;
}

.about-section::before,
.offer-section::before,
.testimonials-section::before,
.contact-section::before {
  display: none;
}

.about-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(27rem, 1.1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
}

.about-copy {
  justify-items: start;
  text-align: left;
}

.about-lead {
  max-width: 42ch;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.65;
}

.section-heading {
  max-width: 58rem;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.section-heading h2,
.contact-copy h2 {
  max-width: 17ch;
  margin-right: auto;
  margin-bottom: 0.9rem;
  margin-left: auto;
  color: var(--text);
  font-size: clamp(2.35rem, 4vw, 3.7rem);
  line-height: 1.04;
}

.section-heading p,
.contact-copy p {
  max-width: 70ch;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
  line-height: 1.7;
}

.offer-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
}

.testimonials-section {
  border-bottom: 1px solid var(--line);
}

.reviews-toolbar,
.reviews-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.reviews-toolbar {
  margin-bottom: 1.1rem;
}

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.google-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  font-size: 1.15rem;
  font-weight: 700;
}

.reviews-summary strong,
.reviews-summary-note {
  display: block;
}

.reviews-summary strong {
  font-size: 0.98rem;
  line-height: 1.3;
}

.reviews-summary-note {
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.reviews-controls {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.review-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  font: inherit;
  font-size: 1.15rem;
  cursor: pointer;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.review-arrow:hover,
.review-arrow:focus-visible {
  color: #120b02;
  border-color: var(--gold);
  background: var(--gold);
  transform: translateY(-1px);
}

.review-arrow:disabled {
  opacity: 0.34;
  cursor: not-allowed;
  transform: none;
}

.review-counter {
  min-width: 3.8rem;
  color: var(--muted);
  text-align: center;
  font-size: 0.82rem;
  font-variant-numeric: tabular-nums;
}

.reviews-viewport {
  overflow-x: hidden;
  overscroll-behavior-x: auto;
  scroll-snap-type: none;
  scrollbar-width: none;
  -webkit-overflow-scrolling: auto;
  touch-action: pan-y;
}

.reviews-viewport::-webkit-scrollbar {
  display: none;
}

.reviews-viewport:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 7px;
  border-radius: 1.5rem;
}

.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 2rem) / 3);
  gap: 1rem;
  align-items: stretch;
}

.review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 25rem;
  padding: clamp(1.25rem, 2vw, 1.65rem);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 100% 100%, rgba(228, 43, 122, 0.08), transparent 40%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(17, 16, 15, 0.96);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.24);
  scroll-snap-align: none;
  scroll-snap-stop: normal;
}

.review-card::before {
  content: "\201C";
  position: absolute;
  top: 0.8rem;
  right: 1.2rem;
  color: rgba(255, 209, 26, 0.13);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  pointer-events: none;
}

.review-rating {
  position: relative;
  z-index: 1;
  margin-bottom: 1.15rem;
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
}

.review-copy {
  position: relative;
  z-index: 1;
  flex: 1;
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.95rem;
  line-height: 1.68;
}

.review-author {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.3rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.review-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #150d01;
  background: linear-gradient(135deg, var(--gold), #fff0a6);
  font-size: 0.85rem;
  font-weight: 700;
}

.review-author strong,
.review-author small {
  display: block;
}

.review-author strong {
  font-size: 0.9rem;
  line-height: 1.3;
}

.review-author small {
  margin-top: 0.16rem;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.35;
}

.reviews-footer {
  margin-top: 1.15rem;
  color: var(--muted);
  font-size: 0.83rem;
}

.reviews-footer p {
  margin: 0;
}

.review-google-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--gold-soft);
  font-weight: 600;
}

.review-google-link:hover,
.review-google-link:focus-visible {
  color: var(--text);
}

.offer-legend {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem 1.5rem;
  margin: -0.45rem auto 1.7rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.offer-legend span {
  display: inline-flex;
  gap: 0.38rem;
  align-items: baseline;
}

.offer-legend strong {
  color: var(--text);
}

.offer-grid {
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.offer-card {
  display: grid;
  grid-template-columns: minmax(13rem, 0.72fr) minmax(0, 2.28fr);
  gap: clamp(1.4rem, 3vw, 3rem);
  padding: clamp(1.45rem, 2.4vw, 2.15rem) 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.offer-card:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow: none;
}

.offer-card::before {
  display: none;
}

.offer-card-head {
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  margin: 0;
}

.offer-card-head h3 {
  margin-bottom: 0.35rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  line-height: 1.15;
}

.offer-card-head p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.offer-icon {
  width: 2rem;
  height: 2rem;
  margin-top: 0.05rem;
  border: 1px solid rgba(255, 209, 26, 0.45);
  color: var(--gold-soft);
  background: transparent;
  font-size: 0.72rem;
}

.offer-card-body {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.5vw, 2.2rem);
}

.offer-detail {
  padding: 0 0 0 clamp(1rem, 1.6vw, 1.5rem);
  border-top: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.offer-detail h4 {
  min-height: 1.65rem;
  margin-bottom: 0.48rem;
  color: var(--gold-soft);
  font-size: 0.72rem;
  line-height: 1.35;
  letter-spacing: 0.09em;
}

.offer-detail p,
.offer-card-body ul {
  color: var(--muted-strong);
  font-size: 0.9rem;
  line-height: 1.55;
}

.offer-detail strong {
  color: var(--text);
  font-weight: 600;
}

.offer-card-body ul {
  padding-left: 1rem;
}

.offer-card-body li + li {
  margin-top: 0.28rem;
}

.status {
  display: inline-block;
  margin-right: 0.35rem;
  padding: 0.23rem 0.48rem;
  border: 1px solid rgba(255, 209, 26, 0.3);
  border-radius: 999px;
  color: var(--gold-soft);
  font-size: 0.62rem;
  letter-spacing: 0.07em;
  line-height: 1;
  vertical-align: 0.08rem;
}

.status-required {
  border-color: rgba(255, 122, 26, 0.45);
  color: #ffb270;
}

.status-mixed {
  border-color: rgba(228, 43, 122, 0.4);
  color: #f58bb8;
}

.offer-caveat {
  margin-top: 0.6rem !important;
  color: var(--muted) !important;
  font-size: 0.8rem !important;
}

.offer-disclaimer {
  max-width: 70ch;
  margin: 1.25rem auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.55;
}

.contact-details {
  width: min(70rem, 100%);
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.contact-details::before {
  display: none;
}

.contact-columns {
  grid-template-columns: minmax(0, 1.3fr) minmax(10rem, 0.65fr) minmax(0, 1.05fr);
  gap: 1.3rem 2rem;
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-item {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.contact-item:last-child {
  grid-column: auto;
}

.contact-item a {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.contact-plain,
.contact-item address {
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-actions {
  justify-content: center;
  margin: 1.5rem 0 0.9rem;
}

.contact-footnote {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  font-size: 0.78rem;
}

.legal-main {
  padding: clamp(3rem, 8vw, 7rem) 0;
}

.legal-card {
  max-width: 54rem;
  padding: clamp(1.4rem, 4vw, 3rem);
  border-radius: var(--radius-xl);
}

.legal-card h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.6rem, 7vw, 5rem);
}

.legal-intro {
  color: var(--muted);
  font-size: 1.15rem;
}

.legal-card section {
  padding-top: 1.7rem;
  margin-top: 1.7rem;
  border-top: 1px solid var(--line);
}

.legal-card h2 {
  margin-bottom: 0.65rem;
  font-size: 1.25rem;
}

.legal-card section p {
  margin-bottom: 0;
  color: var(--muted);
}

.legal-card section a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

@media (max-width: 1024px) {
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .reviews-track {
    grid-auto-columns: calc((100% - 1rem) / 2);
  }

  .contact-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-item:last-child {
    grid-column: 1 / -1;
  }

  .hero h1,
  .section-heading h2,
  .contact-copy h2 {
    max-width: none;
  }

  .offer-card {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }
}

@media (max-width: 820px) {
  .nav-wrap {
    position: relative;
    justify-content: space-between;
    padding: 0.55rem 0;
  }

  .brand-logo {
    width: 8.5rem;
  }

  .menu-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.45rem);
    right: 0;
    display: grid;
    width: min(18rem, calc(100vw - 2rem));
    gap: 0;
    padding: 0.6rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(12, 12, 12, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.5rem);
    transition:
      opacity 180ms ease,
      visibility 180ms ease,
      transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.8rem 0.9rem;
    border-radius: 0.8rem;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.05);
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    padding-top: 3.5rem;
    min-height: auto;
  }

  .hero-copy {
    max-width: 44rem;
  }

  .offer-grid {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .contact-copy h2 {
    max-width: none;
  }

  .contact-details {
    padding: 0;
  }

  .offer-card-body {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .offer-detail {
    padding-left: 1rem;
  }

  .offer-legend {
    justify-content: flex-start;
  }

  .about-section .section-heading,
  .about-copy {
    text-align: center;
  }

  .about-section .section-heading .eyebrow {
    justify-content: center;
  }

  .about-section .section-heading p {
    margin-left: auto;
  }

  .about-copy {
    justify-items: center;
  }

  .reviews-track {
    grid-auto-columns: min(88%, 28rem);
  }

  .about-portrait-shell {
    width: min(42rem, 112%);
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 1.5rem));
  }

  .hero h1 {
    font-size: clamp(2.2rem, 11vw, 3rem);
  }

  .legal-card {
    padding: 1.2rem;
  }

  .offer-card {
    padding: 1.35rem 0;
  }

  .offer-card-head {
    gap: 0.7rem;
  }

  .offer-legend {
    display: grid;
    gap: 0.45rem;
  }

  .contact-columns {
    grid-template-columns: 1fr;
  }

  .contact-item:last-child {
    grid-column: auto;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-item a {
    font-size: 1rem;
  }

  .review-card {
    min-height: 23rem;
    padding: 1.15rem;
    border-radius: 1.25rem;
  }

  .reviews-toolbar {
    align-items: flex-end;
  }

  .reviews-summary-note {
    max-width: 13rem;
  }

  .review-counter {
    display: none;
  }

  .reviews-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.55rem;
  }

  .about-portrait-shell {
    width: 104%;
    padding: 0;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .cursor-glow {
    display: none;
  }
}

@media (pointer: coarse) {
  .cursor-glow {
    display: none;
  }
}

/* Friendly, scannable offer accordion. */
.offer-legend {
  margin-bottom: 0.85rem;
}

.offer-grid {
  max-width: 70rem;
  margin: 0 auto;
  gap: 0.8rem;
  border-top: 0;
}

.offer-card {
  display: block;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 1.2rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(28, 27, 26, 0.9);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.offer-card:hover,
.offer-card.is-open {
  transform: none;
  border-color: rgba(255, 209, 26, 0.28);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
}

.offer-card::before {
  display: none;
}

.offer-card-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  width: 100%;
  margin: 0;
  padding: 1.15rem 1.25rem;
  border: 0;
  color: var(--text);
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.offer-card-head:hover {
  background: rgba(255, 255, 255, 0.025);
}

.offer-icon {
  width: 3.2rem;
  height: 3.2rem;
  margin: 0;
  border: 1px solid rgba(255, 209, 26, 0.3);
  color: var(--text);
  background: rgba(255, 209, 26, 0.08);
  font-size: 1.35rem;
  line-height: 1;
}

.offer-card-title {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.offer-card-heading {
  margin: 0;
  font: inherit;
}

.offer-card-name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  font-weight: 700;
  line-height: 1.16;
}

.offer-card-summary {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.offer-toggle-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-chevron {
  width: 0.65rem;
  height: 0.65rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-0.15rem) rotate(45deg);
  transition: transform 180ms ease;
}

.offer-toggle[aria-expanded="true"] .offer-chevron {
  transform: translateY(0.15rem) rotate(225deg);
}

.offer-card-body {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 1.8rem);
  padding: 1.2rem 1.25rem 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.offer-card-body[hidden] {
  display: none !important;
}

.offer-card-body:not(.show-extra) > .offer-detail {
  display: none;
}

.offer-more-toggle {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.2rem 0;
  border: 0;
  color: var(--gold-soft);
  background: transparent;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.offer-more-toggle:hover,
.offer-more-toggle:focus-visible {
  color: var(--text);
}

.offer-more-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 1rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.offer-more-toggle[aria-expanded="true"] .offer-more-icon {
  transform: rotate(45deg);
}

.service-link-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 0.65rem;
  width: min(70rem, 100%);
  margin: 0 auto clamp(1.4rem, 3vw, 2rem);
}

.service-link-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  min-height: 3.35rem;
  padding: 0.72rem 0.9rem;
  border: 1px solid rgba(255, 209, 26, 0.34);
  border-radius: 0.85rem;
  color: var(--gold-soft);
  background: rgba(255, 209, 26, 0.04);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease, transform 180ms ease;
}

.service-link-nav a:hover,
.service-link-nav a:focus-visible {
  border-color: rgba(255, 225, 101, 0.72);
  color: var(--text);
  background: rgba(255, 209, 26, 0.09);
  transform: translateY(-1px);
}

.service-link-nav a > span:last-child {
  flex: 0 0 auto;
  font-size: 1.1em;
}

.offer-card-cta {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 0.82rem 1rem;
  border: 1px solid rgba(255, 209, 26, 0.52);
  border-radius: 0.85rem;
  color: var(--text);
  background: linear-gradient(90deg, rgba(255, 209, 26, 0.11), rgba(255, 209, 26, 0.035));
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.offer-card-cta > span:last-child {
  flex: 0 0 auto;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.offer-card-cta:hover,
.offer-card-cta:focus-visible {
  border-color: var(--gold-soft);
  background: linear-gradient(90deg, rgba(255, 209, 26, 0.18), rgba(255, 209, 26, 0.07));
  transform: translateY(-1px);
}

.offer-variants {
  grid-column: 1 / -1;
  display: grid;
  gap: 0.9rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.offer-variants-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.offer-variants-head > span {
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-variants-head p {
  max-width: 52rem;
  margin: 0;
  color: var(--muted);
  text-align: right;
  font-size: 0.84rem;
  line-height: 1.5;
}

.variant-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.variant-card {
  min-height: 100%;
  padding: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.025);
}

.variant-card h4 {
  margin: 0.45rem 0 0.35rem;
  color: var(--text);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.04rem;
  line-height: 1.2;
}

.variant-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.variant-type {
  display: inline-flex;
  align-items: center;
  min-height: 1.35rem;
  padding: 0.18rem 0.42rem;
  border: 1px solid rgba(255, 209, 26, 0.24);
  border-radius: 999px;
  color: var(--gold-soft);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
}

.variant-required {
  border-color: rgba(255, 122, 26, 0.38);
  color: #ffb270;
}

.offer-guide,
.insurance-glossary {
  max-width: 70rem;
  margin-right: auto;
  margin-left: auto;
}

.offer-guide {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.offer-guide-heading,
.glossary-heading {
  max-width: 52rem;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.guide-kicker {
  margin: 0 0 0.45rem;
  color: var(--gold-soft);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.offer-guide-heading h3,
.glossary-heading h3 {
  margin: 0 0 0.65rem;
  color: var(--text);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.12;
}

.offer-guide-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.offer-guide-content {
  padding: 0.3rem 1rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.offer-guide-intro {
  max-width: 52rem;
  margin: 0.9rem auto 1rem;
  color: var(--muted);
  text-align: center;
  font-size: 0.88rem;
  line-height: 1.6;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.guide-card {
  min-height: 100%;
  padding: 1rem;
  border-top: 1px solid rgba(255, 209, 26, 0.2);
  background: rgba(255, 255, 255, 0.018);
}

.guide-number {
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.guide-card h4 {
  margin: 0.4rem 0 0.35rem;
  color: var(--text);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.12rem;
  line-height: 1.2;
}

.guide-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.insurance-glossary {
  margin-top: 1rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.glossary-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  cursor: pointer;
  list-style: none;
}

.glossary-summary::-webkit-details-marker {
  display: none;
}

.glossary-summary .guide-kicker {
  display: block;
  margin-bottom: 0.15rem;
}

.glossary-summary-title {
  display: block;
  color: var(--text);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.25;
}

.glossary-summary-action {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex: 0 0 auto;
  color: var(--gold-soft);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.glossary-summary-action > span:first-child {
  display: none;
}

.glossary-summary-action::before {
  content: "Rozwiń";
}

.insurance-glossary[open] .glossary-summary-action::before,
.offer-guide[open] .glossary-summary-action::before {
  content: "Zwiń";
}

.insurance-glossary[open] .glossary-summary .offer-chevron,
.offer-guide[open] .glossary-summary .offer-chevron {
  transform: translateY(0.15rem) rotate(225deg);
}

.glossary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0.3rem 1rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.glossary-grid > div {
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.glossary-grid dt {
  margin-bottom: 0.3rem;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.glossary-grid dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.offer-detail {
  padding: 0 0 0 1rem;
  border-top: 0;
  border-left: 1px solid rgba(255, 209, 26, 0.16);
}

/* Contact form and direct contact details. */
.contact-content {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  gap: 1rem;
  width: min(70rem, 100%);
  margin: 0 auto;
  align-items: stretch;
}

.contact-form,
.contact-content .contact-details {
  padding: clamp(1.25rem, 2.5vw, 1.8rem);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 1.35rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(28, 27, 26, 0.9);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.contact-form-heading {
  margin-bottom: 1.25rem;
}

.contact-form-heading .contact-label {
  margin: 0 0 0.35rem;
}

.contact-form-heading h3 {
  margin: 0 0 0.45rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  line-height: 1.15;
}

.contact-form-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.form-field {
  display: grid;
  gap: 0.4rem;
}

.form-field > span {
  color: var(--muted-strong);
  font-size: 0.8rem;
  font-weight: 600;
}

.form-field small {
  color: var(--muted);
  font-weight: 400;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.72rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.75rem;
  color: var(--text);
  background: rgba(10, 10, 10, 0.34);
  font: inherit;
  font-size: 0.92rem;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.form-field textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-field select {
  color-scheme: dark;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(255, 209, 26, 0.7);
  background: rgba(10, 10, 10, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 209, 26, 0.1);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(207, 196, 180, 0.62);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 1rem 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.form-consent input {
  width: 1rem;
  height: 1rem;
  margin: 0.14rem 0 0;
  flex: 0 0 auto;
  accent-color: var(--gold);
}

.form-consent a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.form-submit {
  width: 100%;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-note,
.form-status {
  margin: 0.65rem 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.74rem;
  line-height: 1.45;
}

.form-status {
  min-height: 1.1rem;
  color: var(--gold-soft);
}

.form-status.is-success {
  color: #a9deb9;
}

.form-status.is-error {
  color: #f2aaa4;
}

.contact-content .contact-details {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
}

.contact-content .contact-columns {
  grid-template-columns: 1fr;
  gap: 1.15rem;
  padding: 0 0 1.2rem;
  border-top: 0;
}

.contact-content .contact-item:last-child {
  grid-column: auto;
}

.contact-map {
  position: relative;
  flex: 1 1 auto;
  min-height: clamp(16rem, 24vw, 19rem);
  margin-top: 0.4rem;
  overflow: hidden;
  border: 1px solid rgba(255, 209, 26, 0.18);
  border-radius: 1rem;
  background:
    radial-gradient(circle at center, rgba(255, 209, 26, 0.07), transparent 65%),
    #171716;
  box-shadow:
    0 1rem 2.8rem rgba(0, 0, 0, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  isolation: isolate;
}

.contact-map::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.045);
  pointer-events: none;
}

.contact-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #ece8df;
  pointer-events: none;
}

.contact-map-label {
  position: absolute;
  z-index: 2;
  top: 0.8rem;
  left: 0.8rem;
  display: grid;
  gap: 0.14rem;
  max-width: calc(100% - 1.6rem);
  padding: 0.72rem 0.9rem 0.68rem 2.5rem;
  border: 1px solid rgba(255, 209, 26, 0.28);
  border-radius: 0.75rem;
  color: var(--color-cream);
  background: rgba(24, 23, 22, 0.94);
  box-shadow: 0 0.6rem 1.4rem rgba(0, 0, 0, 0.25);
  text-decoration: none;
}

.contact-map-label::before {
  content: "";
  position: absolute;
  top: 0.82rem;
  left: 0.94rem;
  width: 0.7rem;
  height: 0.7rem;
  border: 0.18rem solid var(--color-yellow);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.contact-map-label strong {
  font-size: 0.88rem;
  line-height: 1.2;
}

.contact-map-label span {
  color: rgba(255, 250, 239, 0.72);
  font-size: 0.76rem;
  line-height: 1.3;
}

.contact-content .contact-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  margin: 1.1rem 0 0.8rem;
}

.contact-content .contact-footnote {
  padding: 1rem 1.15rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.contact-copy {
  max-width: 58rem;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.contact-copy .eyebrow {
  justify-content: center;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 70ch;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr;
  }

  .contact-content .contact-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-content .contact-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .variant-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guide-grid,
  .glossary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .offer-card-head {
    gap: 0.75rem;
    padding: 1rem;
  }

  .offer-icon {
    width: 2.8rem;
    height: 2.8rem;
    font-size: 1.15rem;
  }

  .offer-toggle-meta > span:first-child {
    display: none;
  }

  .offer-card-body {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .offer-variants-head {
    display: grid;
    gap: 0.35rem;
  }

  .offer-variants-head p {
    text-align: left;
  }

  .form-grid,
  .contact-content .contact-columns,
  .contact-content .contact-actions {
    grid-template-columns: 1fr;
  }

  .contact-content .contact-item:last-child {
    grid-column: auto;
  }

  .guide-grid,
  .glossary-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .offer-card-summary {
    font-size: 0.82rem;
  }

  .contact-form,
  .contact-content .contact-details {
    padding: 1.05rem;
    border-radius: 1rem;
  }

  .variant-grid {
    grid-template-columns: 1fr;
  }
}

/* Offer readability pass. */
.offer-section .section-heading h2 {
  font-size: clamp(2.45rem, 4vw, 3.6rem);
}

.offer-section .section-heading > p:last-child {
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  line-height: 1.75;
}

.offer-section .offer-legend {
  font-size: 0.95rem;
  line-height: 1.55;
}

.offer-section .offer-card-head {
  padding: 1.3rem 1.4rem;
}

.offer-section .offer-icon {
  width: 3.5rem;
  height: 3.5rem;
  font-size: 1.5rem;
}

.offer-section .offer-card-name {
  font-size: clamp(1.4rem, 2vw, 1.75rem);
}

.offer-section .offer-card-summary {
  font-size: 1rem;
  line-height: 1.55;
}

.offer-section .offer-toggle-meta {
  font-size: 0.84rem;
}

.offer-section .offer-card-body {
  padding: 1.35rem 1.4rem 1.5rem;
}

.offer-section .offer-more-toggle {
  font-size: 0.9rem;
}

.offer-section .offer-variants-head > span {
  font-size: 0.8rem;
}

.offer-section .offer-variants-head p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.offer-section .variant-card {
  padding: 1.08rem;
}

.offer-section .variant-card h4 {
  font-size: 1.16rem;
  line-height: 1.25;
}

.offer-section .variant-card p {
  font-size: 0.94rem;
  line-height: 1.6;
}

.offer-section .variant-type {
  min-height: 1.5rem;
  padding: 0.22rem 0.48rem;
  font-size: 0.66rem;
}

.offer-section .offer-detail h4 {
  font-size: 0.82rem;
}

.offer-section .offer-detail p,
.offer-section .offer-card-body ul {
  font-size: 1rem;
  line-height: 1.65;
}

.offer-section .offer-caveat {
  font-size: 0.9rem !important;
  line-height: 1.6 !important;
}

.offer-section .offer-disclaimer {
  font-size: 0.9rem;
  line-height: 1.65;
}

.offer-section .guide-kicker {
  font-size: 0.78rem;
}

.offer-section .offer-guide-heading h3,
.offer-section .glossary-heading h3 {
  font-size: clamp(1.8rem, 3.2vw, 2.65rem);
}

.offer-section .offer-guide-heading > p:last-child {
  font-size: 1.03rem;
  line-height: 1.7;
}

.offer-section .offer-guide-intro {
  font-size: 0.98rem;
  line-height: 1.7;
}

.offer-section .guide-number {
  font-size: 0.74rem;
}

.offer-section .guide-card h4 {
  font-size: 1.24rem;
  line-height: 1.25;
}

.offer-section .guide-card p {
  font-size: 0.95rem;
  line-height: 1.65;
}

.offer-section .glossary-summary-title {
  font-size: clamp(1.25rem, 2.2vw, 1.52rem);
}

.offer-section .glossary-summary-action {
  font-size: 0.8rem;
}

.offer-section .glossary-summary-action::before {
  content: "Rozwi\0144";
}

.offer-section .insurance-glossary[open] .glossary-summary-action::before,
.offer-section .offer-guide[open] .glossary-summary-action::before {
  content: "Zwi\0144";
}

.offer-section .glossary-grid dt {
  font-size: 0.88rem;
}

.offer-section .glossary-grid dd {
  font-size: 0.95rem;
  line-height: 1.65;
}

@media (max-width: 760px) {
  .offer-section .offer-card-head {
    padding: 1.08rem;
  }

  .offer-section .offer-card-body {
    padding: 1.1rem;
  }
}

@media (max-width: 480px) {
  .offer-section .offer-card-summary {
    font-size: 0.93rem;
  }
}

/* Refined Google reviews presentation. */
.testimonials-section {
  overflow: hidden;
  isolation: isolate;
  contain: paint;
  background:
    radial-gradient(circle at 12% 24%, rgba(66, 133, 244, 0.055), transparent 24rem),
    radial-gradient(circle at 88% 72%, rgba(234, 67, 53, 0.045), transparent 24rem),
    rgba(255, 255, 255, 0.008);
}

.testimonials-section::before {
  display: block;
  z-index: 0;
  background:
    radial-gradient(circle at 48% 38%, rgba(255, 209, 26, 0.055), transparent 25rem),
    linear-gradient(115deg, transparent 24%, rgba(255, 255, 255, 0.018) 50%, transparent 76%);
  opacity: 1;
}

.testimonials-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 14%;
  left: 50%;
  width: min(78rem, 94vw);
  height: 23rem;
  border: 1px solid rgba(255, 209, 26, 0.05);
  border-radius: 50%;
  pointer-events: none;
  transform: translateX(-50%) rotate(-4deg);
}

.testimonials-section > .container {
  position: relative;
  z-index: 1;
}

.testimonials-section .section-heading {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.reviews-toolbar {
  margin-bottom: 1.35rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 1rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(18, 18, 17, 0.72);
  box-shadow: 0 1rem 2.8rem rgba(0, 0, 0, 0.16);
  backdrop-filter: none;
}

.google-mark {
  width: 3rem;
  height: 3rem;
  border: 0;
  color: #fff;
  background: conic-gradient(
    from -35deg,
    #4285f4 0 25%,
    #34a853 25% 48%,
    #fbbc05 48% 72%,
    #ea4335 72% 88%,
    #4285f4 88% 100%
  );
  box-shadow:
    inset 0 0 0 0.34rem #191918,
    0 0.55rem 1.4rem rgba(0, 0, 0, 0.28);
  font-size: 1.12rem;
}

.reviews-summary strong {
  font-size: 1.04rem;
}

.reviews-summary-note {
  font-size: 0.84rem;
}

.review-arrow {
  width: 2.9rem;
  height: 2.9rem;
  border-color: rgba(255, 209, 26, 0.18);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.018);
}

.review-arrow:hover,
.review-arrow:focus-visible {
  box-shadow: 0 0.65rem 1.5rem rgba(255, 209, 26, 0.15);
}

.reviews-viewport {
  overflow: hidden;
  overscroll-behavior: auto;
  scroll-snap-type: none;
  padding: 0.15rem 0 1.25rem;
  touch-action: pan-y;
  contain: paint;
}

.reviews-track {
  gap: 1.15rem;
}

.review-card {
  min-height: 24.5rem;
  border-color: rgba(255, 255, 255, 0.105);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.07), transparent 44%),
    radial-gradient(circle at 100% 100%, rgba(228, 43, 122, 0.08), transparent 42%),
    rgba(18, 18, 17, 0.9);
  box-shadow:
    0 0.75rem 1.8rem rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
  scroll-snap-align: none;
  scroll-snap-stop: normal;
  backdrop-filter: none;
  content-visibility: auto;
  contain-intrinsic-size: auto 24.5rem;
  transition: border-color 180ms ease;
}

.review-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 1.35rem;
  left: 1.35rem;
  height: 2px;
  border-radius: 999px;
  opacity: 0.72;
  background: linear-gradient(90deg, #4285f4, #ea4335 34%, #fbbc05 67%, #34a853);
}

.review-card:hover {
  border-color: rgba(255, 209, 26, 0.2);
}

.review-card::before {
  top: 0.65rem;
  right: 1.15rem;
  color: rgba(255, 209, 26, 0.16);
  font-size: 5.5rem;
}

.review-rating {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  text-shadow: 0 0 1rem rgba(255, 209, 26, 0.2);
}

.review-copy {
  color: #e8dfd3;
  font-size: 1rem;
  line-height: 1.74;
}

.review-author {
  margin-top: 1.45rem;
  padding-top: 1.1rem;
  border-top-color: rgba(255, 255, 255, 0.095);
}

.review-avatar {
  width: 2.65rem;
  height: 2.65rem;
  box-shadow:
    0 0.45rem 1.1rem rgba(0, 0, 0, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.36);
}

.review-card:nth-child(4n + 2) .review-avatar {
  background: linear-gradient(135deg, #7db2ff, #4285f4);
}

.review-card:nth-child(4n + 3) .review-avatar {
  background: linear-gradient(135deg, #ffe98a, #fbbc05);
}

.review-card:nth-child(4n + 4) .review-avatar {
  background: linear-gradient(135deg, #ff8d83, #ea4335);
}

.review-card:nth-child(4n + 1) .review-avatar {
  background: linear-gradient(135deg, #7edc96, #34a853);
}

.review-author strong {
  font-size: 0.95rem;
}

.review-author small {
  font-size: 0.77rem;
}

.reviews-footer {
  margin-top: 0.35rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.065);
}

@media (max-width: 760px) {
  .testimonials-section::after {
    display: none;
  }

  .reviews-toolbar {
    padding: 0.7rem;
  }

  .review-card {
    min-height: 24rem;
  }
}

@media (pointer: coarse) {
  .review-card:hover {
    border-color: rgba(255, 255, 255, 0.105);
  }
}

/* Ambient background shared by the full page. */
body {
  isolation: isolate;
}

.ambient-background {
  position: fixed;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.ambient-grid {
  position: absolute;
  inset: -12%;
  opacity: 0.22;
  background-image:
    radial-gradient(circle, rgba(255, 209, 26, 0.12) 0 1px, transparent 1.3px),
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-position: 0 0, 0 0, 0 0;
  background-size: 7rem 7rem, 7rem 7rem, 7rem 7rem;
  -webkit-mask-image: radial-gradient(ellipse at center, black 8%, transparent 74%);
  mask-image: radial-gradient(ellipse at center, black 8%, transparent 74%);
}

.ambient-orbit {
  position: absolute;
  left: 50%;
  width: min(88rem, 112vw);
  height: min(31rem, 42vw);
  border: 1px solid rgba(255, 209, 26, 0.075);
  border-radius: 50%;
  transform-origin: center;
  will-change: transform;
}

.ambient-orbit-one {
  top: 13%;
  transform: translateX(-50%) rotate(-11deg);
  box-shadow: 0 0 5rem rgba(255, 209, 26, 0.025);
}

.ambient-orbit-two {
  bottom: 6%;
  border-color: rgba(228, 43, 122, 0.065);
  transform: translateX(-50%) rotate(13deg);
  box-shadow: 0 0 5rem rgba(228, 43, 122, 0.025);
}

.page-glow {
  display: block;
  width: clamp(27rem, 42vw, 46rem);
  height: clamp(27rem, 42vw, 46rem);
  opacity: 1;
  filter: none;
  mix-blend-mode: normal;
  will-change: transform;
}

.page-glow-left {
  top: 16vh;
  left: -18rem;
  background: radial-gradient(circle, rgba(228, 43, 122, 0.13), transparent 68%);
}

.page-glow-right {
  top: 50vh;
  right: -18rem;
  background: radial-gradient(circle, rgba(255, 209, 26, 0.1), transparent 68%);
}

.page-glow-center {
  top: 32vh;
  left: 42%;
  width: clamp(19rem, 28vw, 31rem);
  height: clamp(19rem, 28vw, 31rem);
  opacity: 1;
  background: radial-gradient(circle, rgba(255, 122, 26, 0.055), transparent 68%);
}

@media (max-width: 760px) {
  .ambient-grid {
    opacity: 0.13;
    background-size: 5rem 5rem, 5rem 5rem, 5rem 5rem;
  }

  .ambient-orbit {
    display: none;
  }

  .page-glow {
    width: 25rem;
    height: 25rem;
    opacity: 0.8;
    filter: none;
  }

  .page-glow-center {
    display: none;
  }
}

/* Editorial hero: one composition, no decorative cards or loose chips. */
.hero {
  --emblem-scale: 1;
  --emblem-y: 0px;
  min-height: calc(100svh - 7.25rem);
  padding: 0;
  display: block;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 76% 36%, rgba(255, 209, 26, 0.105), transparent 25rem),
    radial-gradient(circle at 92% 72%, rgba(228, 43, 122, 0.1), transparent 27rem),
    linear-gradient(115deg, rgba(24, 23, 22, 0.96) 0%, rgba(25, 25, 24, 0.95) 52%, rgba(19, 19, 19, 0.97) 100%);
}

.hero-protection-mark {
  position: absolute;
  z-index: 1;
  top: 43%;
  right: 6%;
  width: clamp(25rem, 31vw, 31rem);
  aspect-ratio: 1;
  pointer-events: none;
  transform: translateY(calc(-50% + var(--emblem-y))) scale(var(--emblem-scale));
  transform-origin: center;
}

.hero-protection-mark::after {
  content: "";
  position: absolute;
  z-index: 4;
  top: 29%;
  left: 43.5%;
  width: 22%;
  height: 20%;
  opacity: 0;
  pointer-events: none;
  background: #171716;
  -webkit-mask: url("hummingbird-flying-optimized.png") center / 100% 100% no-repeat;
  mask: url("hummingbird-flying-optimized.png") center / 100% 100% no-repeat;
  transition: opacity 180ms ease;
}

.hero-protection-mark.bird-is-flying::after {
  opacity: 0.98;
}

.hero-background-logo {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: block;
  width: 52%;
  max-width: none;
  height: auto;
  opacity: 0.84;
  filter:
    drop-shadow(0 0 0.75rem rgba(255, 209, 26, 0.32))
    drop-shadow(0 1.25rem 2.8rem rgba(0, 0, 0, 0.5));
  transform: translate(-50%, -50%);
}

.hero-protection {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 0 1.2rem rgba(255, 209, 26, 0.08));
  transform-origin: center;
}

.hero-protection-shield,
.hero-protection-flow {
  fill: rgba(255, 209, 26, 0.015);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-protection-shield {
  stroke: rgba(255, 209, 26, 0.27);
  stroke-width: 1.85;
}

.hero-protection-flow {
  fill: none;
  stroke: var(--gold);
  stroke-width: 3;
  stroke-dasharray: 52 930;
  stroke-dashoffset: 0;
  filter: drop-shadow(0 0 0.45rem rgba(255, 209, 26, 0.82));
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(18rem, 0.72fr);
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.5rem);
  min-height: calc(100svh - 7.25rem);
  padding-top: clamp(1.25rem, 3vh, 2.25rem);
  padding-bottom: clamp(1.75rem, 4vh, 3rem);
}

.hero-copy {
  align-self: center;
  max-width: 39rem;
  margin: 0;
  padding-bottom: 0;
  text-align: left;
  transform: translateY(clamp(-3rem, -4vh, -1.75rem));
}

.hero .eyebrow {
  justify-content: flex-start;
}

.hero h1 {
  max-width: 15ch;
  margin-right: 0;
  margin-bottom: clamp(1.2rem, 2vw, 1.6rem);
  margin-left: 0;
  font-size: clamp(3rem, 4.6vw, 4.75rem);
  line-height: 1;
}

.hero-text {
  max-width: 52ch;
  margin-right: 0;
  margin-left: 0;
  font-size: clamp(0.98rem, 1.15vw, 1.06rem);
  line-height: 1.65;
}

.hero-actions {
  justify-content: flex-start;
  margin-top: 1.25rem;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-self: stretch;
  min-width: 0;
  min-height: clamp(16rem, 36vw, 26rem);
}

.hero-visual::before {
  content: "";
  position: absolute;
  right: 10%;
  bottom: 12%;
  width: 70%;
  height: 40%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 209, 26, 0.13), rgba(228, 43, 122, 0.05) 48%, transparent 72%);
  filter: none;
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-atmosphere::before {
  content: "";
  position: absolute;
  inset: -20%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 4.5rem 4.5rem;
  opacity: 0.42;
  mask-image: radial-gradient(circle at 72% 46%, black, transparent 64%);
}

.hero-aura {
  position: absolute;
  border-radius: 50%;
  filter: none;
  opacity: 1;
}

.hero-aura-gold {
  top: 5%;
  right: 10%;
  width: 29rem;
  height: 29rem;
  background: radial-gradient(circle, rgba(255, 209, 26, 0.075), transparent 70%);
}

.hero-aura-pink {
  right: -8rem;
  bottom: -8rem;
  width: 32rem;
  height: 32rem;
  background: radial-gradient(circle, rgba(228, 43, 122, 0.075), transparent 70%);
}

.about-section {
  overflow: hidden;
  color: var(--text);
  border-top: 1px solid rgba(255, 209, 26, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at 8% 72%, rgba(228, 43, 122, 0.11), transparent 27rem),
    radial-gradient(circle at 91% 18%, rgba(255, 209, 26, 0.07), transparent 24rem),
    linear-gradient(125deg, rgba(24, 23, 22, 0.96) 0%, rgba(27, 25, 24, 0.95) 54%, rgba(21, 21, 21, 0.97) 100%);
}

.about-section::before {
  display: block;
  background: radial-gradient(circle at 52% 50%, transparent 0 48%, rgba(255, 255, 255, 0.018) 75%, transparent);
  opacity: 1;
}

.about-editorial {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(24rem, 0.92fr);
  grid-template-areas: "portrait content";
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6.5rem);
}

.about-content {
  grid-area: content;
  min-width: 0;
}

.about-section .section-heading {
  max-width: 36rem;
  margin: 0;
  text-align: left;
}

.about-section .section-heading .eyebrow {
  justify-content: flex-start;
}

.about-section .section-heading h2 {
  max-width: 11.5ch;
  margin-bottom: 1.25rem;
  color: var(--text);
  font-size: clamp(2.65rem, 4.1vw, 4.3rem);
  line-height: 1;
}

.about-section .section-heading .about-intro {
  max-width: 54ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.75;
}

.about-section .section-heading .about-followup {
  max-width: 54ch;
  margin: 1rem 0 0;
  color: rgba(255, 248, 239, 0.84);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.75;
}

.about-portrait {
  position: relative;
  grid-area: portrait;
  aspect-ratio: 1 / 1;
  height: auto;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 209, 26, 0.18);
  border-radius: 1.25rem 7rem 1.25rem 1.25rem;
  background: #211d1a;
  filter: none;
  box-shadow:
    0 2rem 5rem rgba(0, 0, 0, 0.42),
    -1rem 1rem 0 rgba(228, 43, 122, 0.055),
    0.9rem -0.9rem 0 rgba(255, 209, 26, 0.055);
  isolation: isolate;
}

.about-portrait::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 45% 0 0;
  background: linear-gradient(180deg, transparent, rgba(24, 18, 15, 0.68));
  pointer-events: none;
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 88% center;
  filter: saturate(0.94) contrast(1.02);
  transform: scale(1);
}

.about-portrait figcaption {
  position: absolute;
  z-index: 2;
  right: 1.4rem;
  bottom: 1.35rem;
  left: 1.4rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  color: #fff8ef;
}

.about-portrait figcaption strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 600;
}

.about-portrait figcaption span {
  max-width: 19ch;
  color: rgba(255, 248, 239, 0.78);
  font-size: 0.78rem;
  line-height: 1.45;
  text-align: right;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: clamp(2.25rem, 7vw, 3.5rem);
    padding-bottom: clamp(3rem, 8vw, 4.5rem);
  }

  .hero-copy {
    max-width: 46rem;
    margin: 0 auto;
    padding-bottom: 0;
    text-align: center;
    transform: none;
  }

  .hero .eyebrow,
  .hero-actions {
    justify-content: center;
  }

  .hero h1 {
    max-width: 15ch;
    margin-right: auto;
    margin-bottom: 1.5rem;
    margin-left: auto;
    font-size: clamp(2.65rem, 9vw, 4.25rem);
  }

  .hero-text {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-visual {
    min-height: 0;
    margin-top: 0;
  }

  .hero-protection-mark {
    top: 38%;
    right: -2rem;
    width: min(24rem, 82vw);
    opacity: 0.55;
  }

  .about-editorial {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "portrait";
    gap: clamp(2.2rem, 7vw, 3.5rem);
  }

  .about-content {
    display: contents;
  }

  .about-section .section-heading {
    grid-area: heading;
  }

  .about-section .section-heading {
    max-width: 42rem;
    margin-right: auto;
    margin-left: auto;
  }

  .about-section .section-heading,
  .about-section .section-heading p {
    text-align: center;
  }

  .about-section .section-heading .eyebrow {
    justify-content: center;
  }

  .about-section .section-heading h2 {
    max-width: 12ch;
    margin-right: auto;
    margin-left: auto;
  }

  .about-portrait {
    width: min(100%, 44rem);
    aspect-ratio: 4 / 3;
    height: auto;
    margin: 0 auto;
    border-radius: 1rem 5rem 1rem 1rem;
  }
}

@media (max-width: 560px) {
  .about-section .section-heading .eyebrow {
    flex-wrap: wrap;
  }

  .about-section .section-heading h2 {
    font-size: clamp(2.35rem, 12vw, 3.25rem);
  }

  .about-portrait {
    aspect-ratio: 4 / 3;
    height: auto;
    border-radius: 0.9rem 3.5rem 0.9rem 0.9rem;
    box-shadow:
      0 1.5rem 3.5rem rgba(0, 0, 0, 0.38),
      -0.5rem 0.5rem 0 rgba(228, 43, 122, 0.055),
      0.5rem -0.5rem 0 rgba(255, 209, 26, 0.055);
  }

  .about-portrait img {
    object-position: 88% center;
  }

  .about-portrait figcaption {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
  }

  .about-portrait figcaption span {
    max-width: none;
    text-align: left;
  }
}

@media (min-width: 901px) and (max-height: 820px) {
  .hero-protection-mark {
    top: 39%;
    right: 6%;
    width: 21rem;
  }

  .hero-layout {
    min-height: calc(100svh - 7.25rem);
    padding-top: 1rem;
    padding-bottom: 1.5rem;
  }

  .hero-copy {
    transform: translateY(-3.6rem);
  }

  .hero h1 {
    margin-bottom: 1.05rem;
    font-size: clamp(2.9rem, 4.35vw, 4.3rem);
  }
}

@media (max-width: 560px) {
  .hero-layout {
    padding-top: 2.25rem;
  }

  .hero-visual {
    min-height: 0;
  }

  .hero-protection-mark {
    display: none;
  }

  .flying-bird {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .flying-bird {
    display: none;
  }
}

/* Lightweight atmosphere shared by the page and its sections. */
body {
  background:
    radial-gradient(circle at 14% 10%, rgba(228, 43, 122, 0.2), transparent 0 24rem),
    radial-gradient(circle at 88% 18%, rgba(255, 209, 26, 0.16), transparent 0 26rem),
    radial-gradient(circle at 78% 72%, rgba(255, 122, 26, 0.11), transparent 0 24rem),
    radial-gradient(circle at 24% 82%, rgba(255, 255, 255, 0.045), transparent 0 18rem),
    linear-gradient(135deg, #080808 0%, #11100e 38%, #191611 68%, #0b0b0a 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

body::before {
  opacity: 0.55;
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: clamp(3.8rem, 6vw, 5.6rem) clamp(3.8rem, 6vw, 5.6rem);
  mask-image: radial-gradient(circle at center, black 34%, transparent 92%);
}

body::after {
  z-index: -1;
  background:
    linear-gradient(115deg, transparent 0 44%, rgba(255, 255, 255, 0.032) 44.2%, transparent 44.4%),
    linear-gradient(295deg, transparent 0 58%, rgba(255, 209, 26, 0.038) 58.2%, transparent 58.4%);
  opacity: 0.6;
}

.ambient-background::before,
.ambient-background::after {
  content: "";
  position: absolute;
  inset: 0;
}

.ambient-background::before {
  background:
    radial-gradient(circle at 12% 18%, rgba(228, 43, 122, 0.18), transparent 0 22rem),
    radial-gradient(circle at 88% 22%, rgba(255, 209, 26, 0.14), transparent 0 24rem),
    radial-gradient(circle at 48% 108%, rgba(255, 122, 26, 0.08), transparent 0 22rem);
}

.ambient-background::after {
  opacity: 0.78;
  background-image:
    linear-gradient(
      118deg,
      transparent 0 28%,
      rgba(255, 255, 255, 0.032) 28.08%,
      transparent 28.18%
    ),
    linear-gradient(
      62deg,
      transparent 0 72%,
      rgba(255, 209, 26, 0.034) 72.08%,
      transparent 72.18%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.018) 0%,
      transparent 18%,
      transparent 82%,
      rgba(255, 255, 255, 0.018) 100%
    );
  -webkit-mask-image: linear-gradient(180deg, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(180deg, transparent, black 8%, black 92%, transparent);
}

.ambient-grid {
  opacity: 0.44;
}

.ambient-orbit {
  border-color: rgba(255, 209, 26, 0.16);
  box-shadow: 0 0 0 1px rgba(255, 209, 26, 0.03), inset 0 0 2.5rem rgba(255, 209, 26, 0.018);
}

.ambient-orbit-two {
  border-color: rgba(228, 43, 122, 0.13);
}

.hero-atmosphere::after {
  content: "";
  position: absolute;
  top: -45%;
  left: 8%;
  width: 18rem;
  height: 190%;
  opacity: 0.72;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.025), transparent);
  transform: rotate(17deg);
}

.about-section::before {
  display: block;
  background:
    radial-gradient(
      ellipse at 3% 112%,
      transparent 0 18rem,
      rgba(228, 43, 122, 0.055) 18.08rem 18.14rem,
      transparent 18.22rem
    ),
    radial-gradient(circle at 88% 14%, rgba(255, 209, 26, 0.075), transparent 24rem);
  opacity: 1;
}

.offer-section,
.contact-section {
  overflow: hidden;
  isolation: isolate;
}

.offer-section::before,
.contact-section::before {
  display: block;
  z-index: 0;
}

.offer-section::before {
  background:
    radial-gradient(
      ellipse at 96% 8%,
      transparent 0 18rem,
      rgba(255, 209, 26, 0.055) 18.08rem 18.15rem,
      transparent 18.23rem
    ),
    radial-gradient(
      ellipse at 96% 8%,
      transparent 0 29rem,
      rgba(255, 209, 26, 0.034) 29.08rem 29.14rem,
      transparent 29.22rem
    ),
    radial-gradient(circle at 12% 62%, rgba(228, 43, 122, 0.065), transparent 27rem);
}

.contact-section::before {
  background:
    radial-gradient(
      ellipse at 4% 104%,
      transparent 0 19rem,
      rgba(228, 43, 122, 0.058) 19.08rem 19.15rem,
      transparent 19.23rem
    ),
    radial-gradient(
      ellipse at 4% 104%,
      transparent 0 31rem,
      rgba(228, 43, 122, 0.036) 31.08rem 31.14rem,
      transparent 31.22rem
    ),
    radial-gradient(circle at 88% 18%, rgba(255, 209, 26, 0.075), transparent 25rem);
}

.offer-section::after,
.contact-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: min(72rem, 112vw);
  height: clamp(16rem, 27vw, 24rem);
  border: 1px solid rgba(255, 209, 26, 0.09);
  border-radius: 50%;
  pointer-events: none;
}

.offer-section::after {
  top: 8rem;
  right: -24rem;
  transform: rotate(-9deg);
}

.contact-section::after {
  bottom: 4rem;
  left: -25rem;
  border-color: rgba(228, 43, 122, 0.085);
  transform: rotate(10deg);
}

.offer-section > .container,
.contact-section > .container {
  position: relative;
  z-index: 1;
}

@media (max-width: 760px) {
  .ambient-background::after {
    opacity: 0.48;
  }

  .ambient-grid {
    opacity: 0.24;
  }

  .hero-atmosphere::after {
    left: 48%;
    opacity: 0.45;
  }

  .offer-section::after,
  .contact-section::after {
    opacity: 0.65;
  }
}

/* Header logo: large enough for the full wordmark to stay readable. */
.site-header {
  background: rgba(12, 12, 11, 0.96);
  border-bottom-color: rgba(255, 209, 26, 0.14);
  backdrop-filter: none;
}

.brand {
  display: inline-grid;
  width: clamp(9.7rem, 12vw, 10.7rem);
  align-items: start;
  justify-items: stretch;
}

.nav-wrap {
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}

.brand-logo {
  position: absolute;
  top: 0;
  left: -34.4%;
  width: 162%;
  max-width: none;
  height: auto;
  transform: translateY(-7%);
  filter:
    drop-shadow(0 0 0.45rem rgba(255, 209, 26, 0.2))
    drop-shadow(0 0.65rem 1.6rem rgba(0, 0, 0, 0.5));
}

.brand-mark {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 494 / 312;
  overflow: hidden;
}

.brand-insurance {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: -0.05rem;
  padding: 0.18rem 0.08rem 0.25rem;
  border-bottom: 2px solid #ffe000;
  color: #fffdf7;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(0.68rem, 0.78vw, 0.76rem);
  font-weight: 700;
  line-height: 1;
  text-shadow:
    0 0 0.04rem #fff,
    0 0 0.28rem rgba(255, 255, 255, 0.28);
  text-transform: uppercase;
  white-space: nowrap;
}

/* Direct phone contact and office hours. */
.button-phone {
  gap: 0.42rem;
  border-color: rgba(255, 209, 26, 0.55);
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(255, 209, 26, 0.16), rgba(255, 209, 26, 0.05)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 0.8rem 2rem rgba(255, 209, 26, 0.12);
}

.button-phone strong {
  color: var(--gold-soft);
  font-size: 1.04em;
  letter-spacing: 0.035em;
}

.button-phone:hover,
.button-phone:focus-visible {
  border-color: var(--gold);
  box-shadow: 0 0.9rem 2.4rem rgba(255, 209, 26, 0.2);
}

.contact-availability {
  display: grid;
  grid-template-columns: minmax(17rem, 0.8fr) minmax(0, 1.2fr);
  gap: 1rem;
  width: min(70rem, 100%);
  margin: 0 auto 1rem;
}

.office-location {
  position: relative;
  display: block;
  width: min(70rem, 100%);
  aspect-ratio: 3 / 2;
  margin: 0 auto 1rem;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 209, 26, 0.22);
  border-radius: 1.35rem;
  color: #fffaf0;
  background: #171716;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.24);
  text-decoration: none;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.office-location::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 9, 9, 0.04) 30%, rgba(9, 9, 9, 0.8) 100%),
    linear-gradient(90deg, rgba(9, 9, 9, 0.38), transparent 55%);
  pointer-events: none;
}

.office-location::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
  pointer-events: none;
}

.office-location img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 72%;
  transform: scale(1);
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.office-location-caption {
  position: absolute;
  z-index: 2;
  right: clamp(1.2rem, 3vw, 2.25rem);
  bottom: clamp(1.15rem, 3vw, 2rem);
  left: clamp(1.2rem, 3vw, 2.25rem);
  display: grid;
  gap: 0.2rem;
  width: fit-content;
  max-width: calc(100% - 2.4rem);
  text-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.65);
}

.office-location-caption .contact-label {
  color: var(--gold-soft);
  font-weight: 700;
}

.office-location-caption strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 600;
  line-height: 1.08;
}

.office-location-caption > span:last-child {
  color: rgba(255, 250, 240, 0.82);
  font-size: clamp(0.82rem, 1.3vw, 0.96rem);
}

.office-location-cta {
  position: absolute;
  z-index: 2;
  right: clamp(1.2rem, 3vw, 2.25rem);
  bottom: clamp(1.25rem, 3vw, 2.05rem);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.68rem 0.9rem;
  border: 1px solid rgba(255, 209, 26, 0.42);
  border-radius: 999px;
  color: #15110a;
  background: linear-gradient(135deg, var(--gold), #ffea79);
  box-shadow: 0 0.7rem 1.8rem rgba(0, 0, 0, 0.28);
  font-size: 0.82rem;
  font-weight: 700;
  text-shadow: none;
}

.office-location:hover,
.office-location:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 209, 26, 0.42);
  box-shadow: 0 1.45rem 3.6rem rgba(0, 0, 0, 0.3);
}

.office-location:hover img,
.office-location:focus-visible img {
  transform: scale(1.015);
}

.contact-phone-card,
.opening-hours {
  min-height: 10.5rem;
  border-radius: 1.35rem;
}

.contact-phone-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.35rem;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgba(255, 209, 26, 0.2);
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(255, 209, 26, 0.12), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(22, 21, 20, 0.94);
  box-shadow: 0 1.1rem 3rem rgba(0, 0, 0, 0.22);
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
  overflow: hidden;
}

.contact-phone-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.28rem;
  background: linear-gradient(180deg, var(--gold), rgba(255, 209, 26, 0.18));
}

.contact-phone-card .contact-label {
  color: var(--gold-soft);
  font-weight: 700;
  letter-spacing: 0.14em;
}

.contact-phone-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  width: 100%;
  margin: 0.35rem 0;
}

.contact-phone-list a {
  display: grid;
  gap: 0.12rem;
  padding: 0.72rem 0.8rem;
  border: 1px solid rgba(255, 209, 26, 0.16);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.025);
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.contact-phone-list a:hover,
.contact-phone-list a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 209, 26, 0.4);
  background: rgba(255, 209, 26, 0.07);
}

.contact-phone-list a > span {
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-phone-list strong {
  font-family: "Outfit", "Segoe UI", sans-serif;
  color: var(--text);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.08;
}

.contact-phone-hint {
  max-width: 24ch;
  color: var(--muted-strong);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.55;
}

.opening-hours {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.65rem 1.5rem;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgba(255, 209, 26, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 209, 26, 0.08), transparent 55%),
    rgba(28, 27, 26, 0.92);
  box-shadow: 0 1.1rem 3rem rgba(0, 0, 0, 0.2);
}

.opening-hours-main {
  display: grid;
  gap: 0.24rem;
}

.opening-hours-main strong {
  color: var(--text);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.opening-hours time {
  color: var(--gold-soft);
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.opening-hours p {
  grid-column: 1 / -1;
  margin: 0.45rem 0 0;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--muted-strong);
  font-size: 0.9rem;
  line-height: 1.55;
}

.opening-hours p strong,
.opening-hours p a {
  color: var(--gold-soft);
  font-weight: 700;
}

@media (max-width: 760px) {
  .contact-availability {
    grid-template-columns: 1fr;
  }

  .office-location {
    aspect-ratio: 4 / 3;
    border-radius: 1rem;
  }

  .office-location img {
    object-position: center center;
  }

  .office-location-caption {
    right: 1.1rem;
    bottom: 1.05rem;
    left: 1.1rem;
    max-width: calc(100% - 2.2rem);
  }

  .office-location-caption strong {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  .office-location-cta {
    top: 1rem;
    right: 1rem;
    bottom: auto;
    padding: 0.58rem 0.75rem;
    font-size: 0.76rem;
  }

  .contact-phone-card,
  .opening-hours {
    min-height: auto;
  }

  .contact-phone-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .opening-hours {
    grid-template-columns: 1fr;
  }

  .opening-hours time {
    margin-top: 0.2rem;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 12rem;
  }

  .nav-wrap {
    flex-wrap: wrap;
    gap: 0.65rem;
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
  }

  .brand {
    order: 1;
    width: clamp(9rem, 38vw, 9.8rem);
  }

  .menu-toggle {
    order: 2;
  }

  .site-nav {
    order: 3;
  }
}
