/* ─── Hero ─────────────────────────────────────────────────────────────── */

.hero {
  position: relative; height: calc(100vh + 48px); height: calc(100dvh + 48px);
  display: flex; align-items: center; background: var(--wab-dark-water); color: #fff;
}
.hero-text {
  position: relative; z-index: 5;
  max-width: 1280px; margin: 0 auto; width: 100%;
  padding: 110px 32px 140px; display: flex; flex-direction: column;
}
.hero-text > * { max-width: 540px; }
.hero-text .hero-cta-row, .hero-text .hero-tags { max-width: none; }
@media (max-width: 1080px) { .hero-text { padding: 100px 24px 140px; } .hero-text > * { max-width: none; } }
.hero .scroll-cue { bottom: 80px; }

/* .hero-tags / .hero-tag / .hero-tags-break moved to components.css — shared
   with the reservation page's .booking-hero (any hero-type section may use
   the tag pills, not just the homepage). */

.hero-title {
  font-size: clamp(40px, 4.6vw, 72px); font-weight: 900; line-height: 1;
  letter-spacing: -0.025em; color: #fff; margin: 0 0 22px; text-wrap: balance;
}
.hero-title em { font-style: normal; position: relative; display: inline-block; color: inherit; }
.hero-title em::after {
  content: ""; position: absolute; left: -2px; right: -2px; bottom: 0.06em; height: 0.18em;
  background: var(--accent); z-index: -1; opacity: .9; transform: skewX(-6deg);
}
.hero-sub { font-size: clamp(16px, 1.1vw, 18px); color: rgba(255,255,255,.85); max-width: 44ch; margin: 0 0 28px; line-height: 1.5; }

/* Photo pane — right half, masked with organic wave edge */
.hero-image {
  position: absolute; top: 0; right: 0; bottom: 0; width: 58%; z-index: 1; overflow: hidden;
  --wave-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'><path d='M 100,0 L 100,100 C 88,90 78,100 66,94 C 54,88 46,96 34,90 C 22,84 16,92 16,74 C 16,46 22,15 42,0 Z' fill='black'/></svg>");
  -webkit-mask-image: var(--wave-mask); mask-image: var(--wave-mask);
  -webkit-mask-size: 100% 100%; mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
}
.hero-image img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  animation: heroDrift 14s ease-in-out infinite alternate;
}
.hero-image::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(170deg, rgba(2,78,114,.35) 0%, transparent 35%, rgba(3,8,35,.35) 100%);
  pointer-events: none;
}
@keyframes heroDrift { from { transform: scale(1.06) translateX(-6px); } to { transform: scale(1.06) translateX(6px); } }

@media (max-width: 1080px) {
  .hero-image { width: 100%; -webkit-mask-image: none; mask-image: none; }
  .hero-image::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(125deg, rgba(2,78,114,.94) 0%, rgba(2,78,114,.78) 55%, rgba(3,8,35,.7) 100%);
    z-index: 2; display: block;
  }
  .hero-image::after { display: none; }
}

/* Scroll cue — moved to components.css (used across all hero types) */


/* ─── Features ─────────────────────────────────────────────────────────── */

.features { display: grid; grid-template-columns: repeat(12, 1fr); gap: 8px; margin-top: 64px; }
.feature              { grid-column: span 3; }
.feature.span-third   { grid-column: span 4; }
.feature.span-half    { grid-column: span 6; }
.feature.span-full    { grid-column: span 12; }
@media (max-width: 1080px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .feature, .feature.span-third, .feature.span-half, .feature.span-full { grid-column: span 1; }
}
@media (max-width: 600px) { .features { grid-template-columns: 1fr; } }

.feature {
  background: #fff; padding: 40px 32px; border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s, border-color .25s;
  position: relative; overflow: hidden;
}
.feature::before {
  content: ""; position: absolute; inset: auto 0 0 0; height: 3px;
  background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-3); }
.feature:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 52px; height: 52px; display: flex; align-items: center; justify-content: center;
  color: var(--accent); background: rgba(237,92,47,.1); border-radius: var(--radius-md); margin-bottom: 24px;
}
.feature-icon svg, .feature-icon img { width: 26px; height: 26px; }
.feature h3 { font-size: 22px; font-weight: 800; margin: 0 0 12px; color: var(--fg2); }
.feature p  { font-size: 15px; color: var(--fg3); margin: 0; line-height: 1.55; }


/* ─── Steps ────────────────────────────────────────────────────────────── */

.steps-headline { max-width: 720px; margin-bottom: 80px; }
.steps { display: grid; grid-template-columns: repeat(var(--steps-count, 4), 1fr); gap: 32px 0; position: relative; }
@media (max-width: 1080px) { .steps { grid-template-columns: 1fr 1fr; gap: 48px 24px; } }
@media (max-width: 600px)  { .steps { grid-template-columns: 1fr; } }

.steps-wave-line { position: absolute; top: 18px; left: 7%; right: 7%; height: 32px; pointer-events: none; z-index: 0; }
.steps-wave-line svg { width: 100%; height: 100%; display: block; }
@media (max-width: 1080px) { .steps-wave-line { display: none; } }

.step { position: relative; padding: 0 16px; z-index: 1; }
.step-num {
  width: 60px; height: 60px; background: var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 900; color: #fff; margin-bottom: 28px;
  position: relative; z-index: 2; box-shadow: 0 8px 24px rgba(237,92,47,.4);
}
.step h3 { font-size: 22px; font-weight: 800; color: #fff; margin: 0 0 8px; }
.step p  { font-size: 15px; color: rgba(255,255,255,.7); margin: 0; }


/* ─── Fleet ────────────────────────────────────────────────────────────── */

.fleet-intro { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: end; margin-bottom: 64px; }
@media (max-width: 880px) { .fleet-intro { grid-template-columns: 1fr; gap: 32px; } }

.fleet-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.boat-card.span-full { grid-column: span 2; }
@media (max-width: 880px) { .fleet-grid { grid-template-columns: 1fr; } .boat-card.span-full { grid-column: span 1; } }

.boat-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); display: flex; flex-direction: column;
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s;
}
.boat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-3); }

.boat-img { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.boat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.22,1,.36,1); }
.boat-card:hover .boat-img img { transform: scale(1.06); }
.boat-img-tag {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
  border-radius: var(--radius-pill); padding: 6px 14px;
  font-size: 11px; font-weight: 700; letter-spacing: var(--tracking-claim); text-transform: uppercase; color: var(--fg2);
}
.boat-meta { padding: 32px; display: flex; flex-direction: column; flex: 1; }
.boat-meta > p { margin-bottom: 0; }

.boat-name { display: flex; align-items: baseline; gap: 12px; margin-bottom: 12px; }
@media (max-width: 720px) { .boat-name { flex-direction: column; align-items: flex-start; gap: 4px; } }
.boat-name h3   { font-size: 36px; font-weight: 900; margin: 0; color: var(--fg2); }
.boat-name span { font-size: 13px; font-weight: 600; color: var(--fg3); letter-spacing: var(--tracking-claim); text-transform: uppercase; }
.boat-meta-text { margin-top: 4px; color: var(--fg3); font-size: 15px; }

.boat-stats { display: flex; gap: 24px; flex-wrap: wrap; margin-top: auto; padding-top: 24px; font-size: 14px; }
.boat-stats div { display: flex; align-items: center; gap: 8px; color: var(--fg3); }
.boat-stats strong { color: var(--fg2); font-weight: 700; }
.boat-stats svg, .boat-stats img { width: 16px; height: 16px; color: var(--accent); }
@media (max-width: 720px) { .boat-stats { flex-wrap: nowrap; gap: 14px; justify-content: space-between; font-size: 12px; } .boat-stats div { gap: 4px; flex-shrink: 1; min-width: 0; white-space: nowrap; } .boat-stats svg { width: 14px; height: 14px; } }


/* ─── Social media ─────────────────────────────────────────────────────── */

.socials-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 64px; }
@media (max-width: 980px) { .socials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px) { .socials-grid { grid-template-columns: repeat(2, 1fr); } }

.social-card {
  display: flex; flex-direction: column; gap: 12px; padding: 32px 28px;
  background: #fff; border: 1px solid rgba(255,255,255,.22); border-radius: var(--radius-lg);
  color: var(--wab-dark-water); text-decoration: none; min-height: 220px;
  transition: transform .35s cubic-bezier(.22,1,.36,1), background .25s, color .25s, border-color .25s;
  position: relative; overflow: hidden;
}
.social-card::after {
  content: ""; position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M7 17L17 7M7 7h10v10'/></svg>") center / 16px 16px no-repeat;
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.social-card:hover { background: var(--wab-dark-water); color: #fff; border-color: var(--wab-dark-water); transform: translateY(-4px); }
.social-card:hover::after { transform: translate(2px, -2px) rotate(-12deg); }

.social-card .ic {
  width: 52px; height: 52px; display: flex; align-items: center; justify-content: center;
  background: rgba(2,78,114,.08); color: var(--accent); border-radius: 50%; margin-bottom: 8px;
  transition: background .25s, color .25s;
}
.social-card:hover .ic { background: var(--accent); color: #fff; }
.social-card .ic svg, .social-card .ic img { width: 24px; height: 24px; }
.social-card .platform { font-size: 22px; font-weight: 900; letter-spacing: -.01em; margin-top: auto; }
.social-card .handle   { font-size: 13px; font-weight: 700; opacity: .65; letter-spacing: .02em; }


/* ─── Pricing ───────────────────────────────────────────────────────────── */

.pricing-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; margin-top: 72px; align-items: stretch; }
.pricing-card.span-half { grid-column: span 3; }
.pricing-card.span-full { grid-column: span 6; }
@media (max-width: 980px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 18px; }
  .pricing-card, .pricing-card.span-half, .pricing-card.span-full { grid-column: span 1; }
}

.pricing-card {
  grid-column: span 2;
  background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--border);
  padding: 32px 24px; position: relative; display: flex; flex-direction: column;
  align-self: stretch; justify-self: center; width: 92%; margin: 16px 0;
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s;
}
.pricing-card.reveal:hover, .pricing-card.is-featured.reveal:hover { transform: translateY(-10px); box-shadow: var(--shadow-3); }
.pricing-card.is-featured {
  background: var(--wab-dark-water); color: #fff; box-shadow: var(--shadow-3);
  border-color: var(--wab-dark-water); padding: 44px 32px; width: 100%; margin: 0;
}
@media (max-width: 980px) { .pricing-card, .pricing-card.is-featured { width: 100%; padding: 40px 28px; } }

.pricing-card .ribbon {
  position: absolute; top: -12px; right: 24px; background: var(--accent); color: #fff;
  padding: 6px 14px; border-radius: var(--radius-pill); font-size: 11px; font-weight: 800; letter-spacing: var(--tracking-claim); text-transform: uppercase;
}
.pricing-card h3 { font-size: 42px; font-weight: 900; margin: 0 0 24px; color: var(--fg2); }
.pricing-card.is-featured h3 { color: #fff; }

.pricing-duration { font-size: 14px; font-weight: 600; color: var(--fg3); letter-spacing: var(--tracking-claim); text-transform: uppercase; margin-bottom: 8px; }
.pricing-card.is-featured .pricing-duration { color: rgba(255,255,255,.7); }

.pricing-price-block { min-height: 84px; display: flex; flex-direction: column; }
.pricing-amount { font-size: 56px; font-weight: 900; line-height: 1; color: var(--fg2); margin-bottom: 4px; letter-spacing: -0.02em; display: flex; align-items: baseline; gap: 8px; }
.pricing-card.is-featured .pricing-amount { color: #fff; }
.pricing-amount .currency { font-size: 22px; font-weight: 700; color: var(--accent); }

.pricing-extra-note { font-size: 13px; font-weight: 700; color: var(--accent); margin-top: 4px; }
.pricing-card.is-featured .pricing-extra-note { color: var(--wab-light-blue); }

.pricing-note { font-size: 13px; color: var(--fg3); margin-top: 12px; padding-top: 16px; border-top: 1px solid var(--divider); }
.pricing-card.is-featured .pricing-note { color: rgba(255,255,255,.7); border-top-color: rgba(255,255,255,.15); }

.pricing-list { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; flex: 1; }
.pricing-list li { display: flex; gap: 10px; color: var(--fg3); }
.pricing-card.is-featured .pricing-list li { color: rgba(255,255,255,.85); }
.pricing-list svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--accent); margin-top: 2px; }
.pricing-card.is-featured .pricing-list svg { color: var(--wab-light-blue); }

.pricing-card .cta { margin-top: 24px; }
.pricing-after-note { margin-top: 56px; text-align: center; font-size: 16px; color: var(--fg3); font-style: italic; }
.pricing-after-note strong { color: var(--accent); font-style: normal; font-weight: 800; }


/* ─── Occasions bento ───────────────────────────────────────────────────── */

/* Occasions bento — specific grid-template-areas per count for a true bento look.
   Tile letters a–h map to tiles 1–8 via nth-child rules at the bottom of this block.
   Row unit: minmax(100px, auto). */
.reasons-bento { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 64px; }

.reasons-bento[data-count="1"] {
  grid-template-columns: 1fr;
  grid-template-areas: "a" "a" "a";
  grid-template-rows: repeat(3, minmax(100px, auto));
}
.reasons-bento[data-count="2"] {
  grid-template-areas: "a b" "a b";
  grid-template-rows: repeat(2, minmax(150px, auto));
}
.reasons-bento[data-count="3"] {
  grid-template-areas: "a b" "a b" "a c" "a c";
  grid-template-rows: repeat(4, minmax(100px, auto));
}
.reasons-bento[data-count="4"] {
  grid-template-areas: "a b" "a b" "a d" "c d" "c d";
  grid-template-rows: repeat(5, minmax(100px, auto));
}
.reasons-bento[data-count="5"] {
  grid-template-areas: "a b" "a b" "a d" "c d" "c d" "c d" "e e";
  grid-template-rows: repeat(6, minmax(100px, auto)) auto;
}
.reasons-bento[data-count="6"] {
  grid-template-areas: "a b" "a b" "a d" "c d" "c d" "e f" "e f";
  grid-template-rows: repeat(7, minmax(100px, auto));
}
.reasons-bento[data-count="7"] {
  grid-template-areas: "a b" "a b" "a d" "c d" "c d" "e f" "e f" "g g";
  grid-template-rows: repeat(7, minmax(100px, auto)) auto;
}
.reasons-bento[data-count="8"] {
  grid-template-areas: "a b" "a b" "a d" "c d" "c d" "e f" "e f" "e h" "g h" "g h";
  grid-template-rows: repeat(10, minmax(100px, auto));
}

/* Tile → area assignments */
.reasons-bento .reason-tile:nth-child(1) { grid-area: a; }
.reasons-bento .reason-tile:nth-child(2) { grid-area: b; }
.reasons-bento .reason-tile:nth-child(3) { grid-area: c; }
.reasons-bento .reason-tile:nth-child(4) { grid-area: d; }
.reasons-bento .reason-tile:nth-child(5) { grid-area: e; }
.reasons-bento .reason-tile:nth-child(6) { grid-area: f; }
.reasons-bento .reason-tile:nth-child(7) { grid-area: g; }
.reasons-bento .reason-tile:nth-child(8) { grid-area: h; }

/* Wide tiles — extra content width */
.reasons-bento[data-count="5"] .reason-tile:nth-child(5) .reason-tile-content,
.reasons-bento[data-count="7"] .reason-tile:nth-child(7) .reason-tile-content { max-width: 640px; }

.reason-tile {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  display: flex; isolation: isolate; min-height: 0;
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s; text-decoration: none;
}
.reason-tile:hover       { transform: translateY(-6px); box-shadow: var(--shadow-3); }
.reason-tile.reveal:hover { transform: translateY(-6px); }

.reason-tile-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .8s cubic-bezier(.22,1,.36,1); }
.reason-tile:hover .reason-tile-img { transform: scale(1.06); }

.reason-tile-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(3,8,35,.15) 0%, rgba(3,8,35,.45) 55%, rgba(3,8,35,.88) 100%); z-index: 1; }

.reason-tile-content { position: relative; z-index: 2; margin-top: auto; padding: 36px 36px 32px; color: #fff; }
.reason-tile-content h3 { font-size: clamp(24px, 2.4vw, 32px); font-weight: 900; line-height: 1.1; letter-spacing: -0.01em; margin: 0 0 10px; color: #fff; text-wrap: balance; }
.reason-tile-content p  { font-size: 16px; line-height: 1.55; color: rgba(255,255,255,.92); margin: 0 0 20px; max-width: 42ch; }

.reason-tile--wide { min-height: 360px; }
.reason-tile--wide .reason-tile-content { max-width: 640px; }

@media (max-width: 880px) {
  .reasons-bento { grid-template-columns: 1fr !important; grid-template-areas: none !important; grid-template-rows: auto !important; grid-auto-rows: auto !important; }
  .reasons-bento .reason-tile { grid-area: unset !important; min-height: 320px; }
  .reason-tile-content { padding: 28px 24px 24px; }
}

.reason-link {
  display: inline-flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 800;
  letter-spacing: var(--tracking-claim); text-transform: uppercase; color: #fff;
  border: none; padding-bottom: 6px; border-bottom: 2px solid rgba(255,255,255,.45); text-decoration: none;
  transition: gap .25s, color .25s, border-color .25s;
}
.reason-link:hover { gap: 18px; color: var(--accent); border-bottom-color: var(--accent); }
.reason-link svg { width: 18px; height: 18px; }


/* ─── FAQ accordion ────────────────────────────────────────────────────── */

.faq-list { margin-top: 56px; border-top: 1px solid var(--border); }
.faq { border-bottom: 1px solid var(--border); }

.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; width: 100%;
  padding: 22px 0; font-size: clamp(20px, 2.2vw, 28px); font-weight: 800; color: var(--fg2);
  text-align: left; letter-spacing: -0.01em; transition: color .2s;
}
.faq-q:hover { color: var(--accent); }

.faq-toggle {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--border-strong); display: flex; align-items: center; justify-content: center;
  transition: background .25s, border-color .25s, transform .35s cubic-bezier(.22,1,.36,1);
}
.faq-toggle svg { width: 18px; height: 18px; color: var(--fg2); transition: transform .35s cubic-bezier(.22,1,.36,1); }
.faq[data-open="true"] .faq-q          { padding-bottom: 6px; }
.faq[data-open="true"] .faq-toggle     { background: var(--accent); border-color: var(--accent); }
.faq[data-open="true"] .faq-toggle svg { color: #fff; transform: rotate(45deg); }

.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s cubic-bezier(.22,1,.36,1); }
.faq[data-open="true"] .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p { padding: 0 0 22px; font-size: 17px; line-height: 1.6; color: var(--fg3); max-width: 70ch; margin: 0; }


/* ─── Location ──────────────────────────────────────────────────────────── */

.address-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 64px; align-items: stretch; }
@media (max-width: 980px) { .address-grid { grid-template-columns: 1fr; } }

.address-block {
  background: #fff; border-radius: var(--radius-lg); padding: 32px; border: 1px solid var(--border);
  display: flex; flex-direction: column;
}
.address-block h3 { font-size: 22px; font-weight: 800; margin: 0 0 16px; display: flex; align-items: center; gap: 12px; color: var(--fg2); }
.address-block h3 svg { width: 22px; height: 22px; color: var(--accent); }
.address-block p { font-size: 16px; color: var(--fg3); line-height: 1.55; margin: 0 0 12px; }
.address-block p:last-child { margin-bottom: 0; }

.address-list { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 8px; }
.address-list li {
  display: flex; align-items: center; gap: 14px; padding: 10px 14px;
  background: var(--bg); border-radius: var(--radius-md); font-size: 14px; color: var(--fg2);
}
.address-list li svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--accent); }
.address-list li strong { font-weight: 700; min-width: 84px; flex-shrink: 0; color: var(--fg2); }
.address-list li span.detail { color: var(--fg3); font-weight: 500; }

.map-frame { position: relative; height: 100%; min-height: 280px; border-radius: var(--radius-lg); overflow: hidden; background: #fff; border: 3px solid #fff; box-shadow: var(--shadow-2); }
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: saturate(.9) contrast(1.02); display: block; }

/* Contact reveal buttons — bot-safe click-to-reveal pattern */
.contact-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 480px) { .contact-row { grid-template-columns: 1fr; } }

.contact-btn {
  display: flex; align-items: center; gap: 14px; padding: 14px 18px;
  background: var(--bg); border-radius: var(--radius-md); text-align: left; text-decoration: none;
  color: var(--fg2); border: 1px solid var(--border); transition: all .2s; min-width: 0;
}
.contact-btn > span:not(.icon-wrap) { min-width: 0; flex: 1; }
.contact-btn .label { font-size: 11px; font-weight: 700; letter-spacing: var(--tracking-claim); text-transform: uppercase; color: var(--fg3); display: block; margin-bottom: 2px; }
.contact-btn .value { font-size: 16px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }
.contact-btn .value.is-hidden { letter-spacing: .04em; font-weight: 800; color: var(--accent); font-size: 12px; text-transform: uppercase; }
.contact-btn .icon-wrap { width: 40px; height: 40px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
.contact-btn .icon-wrap svg { width: 18px; height: 18px; }
.contact-btn:hover { border-color: var(--accent); background: #fff; color: var(--fg2); }


/* ─── End CTA ───────────────────────────────────────────────────────────── */

.end-cta { padding: 120px 0; text-align: center; position: relative; }
.end-cta h2 { font-size: clamp(56px, 9vw, 144px); font-weight: 900; letter-spacing: -0.03em; line-height: .95; margin: 0 0 40px; color: #fff; }
.end-cta .sub { font-size: 18px; font-weight: 700; letter-spacing: var(--tracking-claim); text-transform: uppercase; color: rgba(255,255,255,.8); margin-bottom: 40px; }
