/* ============================================================
   Ken Kelleher Sculpture — Anchorball
   Site Stylesheet
   ============================================================ */

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

:root {
    --ink: #000000;
/*  pure black for text — 21:1 on white ✓ AAA  */
--mid: #3D5166;
/*  8.18:1 on white ✓ AAA  */
--white: #FFFFFF;
    --cream: #F5F0E8;
/*  warm tan — allowed background  */
--ice: #F0F5FA;
    --mist: #E2EDF5;
    --ocean: #006FA8;
/*  5.47:1 — AA, AAA for large text. Links + accents only.  */
--ocean-lt: #0092D4;
    --teal: #007B8A;
/*  5.00:1 — AA, AAA for large text  */
--teal-pale: #D6EFF2;
    --green: #1D8A5E;
/*  4.33:1 — decorative accents only, not body text  */
--rule: #D8E4EE;
    --font-d: 'Montserrat', sans-serif;
    --font-b: 'Poppins', sans-serif;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-b);
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    /* Prevent GSAP slide-in animations (xPercent on .pair, .story, etc.)
       from extending the document past the viewport on mobile. `clip` is
       used instead of `hidden` so that `position: sticky` keeps working
       inside child elements (e.g. .lang-toggle, nav). */
    overflow-x: clip;
}

/*  ─── SHARED ───  */
.eyebrow {
    font-family: var(--font-d);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: 14px;
    display: block;
}

.h-display {
    font-family: var(--font-d);
    font-weight: 900;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    line-height: 0.88;
    color: var(--ink);
}

.body-text {
    font-family: var(--font-b);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.8;
    color: #000;
}

.link {
    font-family: var(--font-d);
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.25s ease, color 0.2s;
}
.link:hover {
    gap: 18px;
    color: var(--ink);
}

.link-wh {
    color: #fff;
    text-decoration-color: rgba(255,255,255,0.5);
}

.link-wh:hover {
    color: #fff;
}

.btn {
    display: inline-block;
    font-family: var(--font-d);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 2px;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-ink {
    color: #fff;
    background: var(--ink);
}

.btn-ink:hover {
    background: var(--ocean);
}

.btn-ocean {
    color: #fff;
    background: var(--ocean);
}

.btn-ocean:hover {
    background: var(--ocean-lt);
}

.btn-wh {
    color: var(--ink);
    background: #fff;
}

.btn-wh:hover {
    background: var(--mist);
}

.btn-ol {
    color: var(--ink);
    background: transparent;
    border: 1.5px solid var(--ink);
}

.btn-ol:hover {
    background: var(--ink);
    color: #fff;
}

/*  Images — NO CROPPING. Width scales, height is always auto. Object-fit: cover only in hero full-bleeds.  */
img {
    display: block;
    width: 100%;
    height: auto;
}

/*  ─── HERO ───  */
.hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
}

/*  Hero uses object-fit:cover — full-bleed panoramic, acceptable exception to no-crop rule  */
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.90;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.68) 0%, rgba(0,0,0,0.04) 52%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 80px 80px;
    max-width: 920px;
}

.hero-title {
    font-family: var(--font-d);
    font-size: clamp(48px, 7vw, 108px);
    font-weight: 900;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    line-height: 0.87;
    color: #fff;
    margin-bottom: 28px;
}

.hero-body {
    font-family: var(--font-b);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.75;
    color: #fff;
    max-width: 540px;
    margin-bottom: 36px;
}

.hero-dots {
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s;
}

.hero-dot.active {
    background: #fff;
}

/*  ─── MARQUEE TICKER ───  */
.ticker {
    background: var(--ocean);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-track {
    display: inline-block;
    animation: ticker 28s linear infinite;
}

.ticker-track:hover {
    animation-play-state: paused;
}

@keyframes ticker {
    from {
    transform: translateX(0);
}

to {
    transform: translateX(-50%);
}

}

.ticker-item {
    display: inline-block;
    font-family: var(--font-d);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    padding: 0 32px;
}

.ticker-dot {
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    vertical-align: middle;
    margin: 0 8px;
}

/*  ─── AT SCALE ───  */
.at-scale {
    padding: 100px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    background: var(--white);
}

.as-text {
}

.as-label {
    font-family: var(--font-d);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ocean);
    margin-bottom: 10px;
}

.as-title {
    font-size: clamp(40px, 5vw, 72px);
    margin-bottom: 28px;
}

/*  Images in grid sections: always natural proportions  */
.as-image img {
    transition: transform 0.5s ease;
}

.as-image:hover img {
    transform: scale(1.02);
}

/*  ─── STATS — oversized numbers ───  */
.stats {
    background: var(--cream);
    padding: 64px 80px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
}

.stat {
    text-align: center;
    padding: 0 16px;
    border-right: 1px solid rgba(0,0,0,0.08);
}

.stat:last-child {
    border-right: none;
}

.stat-n {
    font-family: var(--font-d);
    font-size: clamp(52px, 7vw, 96px);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1;
    color: var(--ink);
    margin-bottom: 4px;
}

.stat-bar {
    display: block;
    width: 28px;
    height: 3px;
    margin: 0 auto 10px;
}

.stat-lbl {
    font-family: var(--font-b);
    font-size: 13px;
    font-weight: 400;
    color: #000;
    line-height: 1.4;
}

/*  ─── FEATURED SPLIT (Tommy, Willy) — fill with cover in split context ───  */
.feat-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.feat-img {
    overflow: hidden;
    position: relative;
}

.feat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*  cover acceptable in equal-height split  */
.feat-copy {
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feat-tag {
    font-family: var(--font-d);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.feat-h {
    font-family: var(--font-d);
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 900;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    line-height: 0.9;
    margin-bottom: 18px;
}

.feat-rule {
    width: 36px;
    height: 2px;
    margin-bottom: 20px;
}

.feat-p {
    font-family: var(--font-b);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 28px;
}

.feat-p strong {
    font-weight: 400;
}

/*  Tommy — ocean bg  */
.feat-ocean .feat-copy {
    background: var(--ocean);
}

.feat-ocean .feat-tag {
    color: #fff;
}

.feat-ocean .feat-h {
    color: #fff;
}

.feat-ocean .feat-rule {
    background: rgba(255,255,255,0.4);
}

.feat-ocean .feat-p {
    color: #fff;
}

.feat-ocean .feat-p strong {
    color: #fff;
}

/*  Willy — white bg, teal-pale wrap  */
.feat-light-wrap {
    background: var(--teal-pale);
}

.feat-light .feat-copy {
    background: var(--white);
    direction: ltr;
}

.feat-light .feat-split {
    direction: rtl;
}

.feat-light .feat-img {
    direction: ltr;
}

.feat-light .feat-tag {
    color: var(--mid);
}

.feat-light .feat-h {
    color: var(--ink);
}

.feat-light .feat-rule {
    background: var(--teal);
}

.feat-light .feat-p {
    color: var(--mid);
}

.feat-light .feat-p strong {
    color: var(--ink);
    font-weight: 600;
}

/*  ─── GHOST MAWSE — teal panel ───  */
.gm-split {
    display: grid;
    grid-template-columns: 3fr 2fr;
    min-height: 520px;
}

.gm-photo {
    overflow: hidden;
}

.gm-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gm-split:hover .gm-photo img {
    transform: scale(1.03);
}

.gm-copy {
    background-color: var(--teal);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/*  ─── EDITIONS ───  */
.editions {
    padding: 100px 80px;
    background: var(--white);
}

.editions-hd {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 16px;
}

.ed-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px;
}

.ed-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.ed-bar {
    height: 3px;
    margin-bottom: 14px;
}

.ed-img {
    margin-bottom: 14px;
    background: var(--ice);
    overflow: hidden;
}

.ed-img img {
    transition: transform 0.5s;
}

.ed-card:hover .ed-img img {
    transform: scale(1.04);
}

.ed-name {
    font-family: var(--font-d);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 4px;
}

.ed-price {
    font-family: var(--font-b);
    font-size: 15px;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 6px;
}

.ed-desc {
    font-family: var(--font-b);
    font-size: 13px;
    font-weight: 300;
    color: #000;
    line-height: 1.5;
}

/*  ─── MONUMENTAL GALLERY — masonry, NO cropping ───  */
.mon-section {
    padding: 100px 80px;
    background: var(--ice);
}

.mon-hd {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.mon-hd-left {
    flex: 1;
    min-width: 260px;
}

.mon-hd-right {
    max-width: 380px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    padding-top: 8px;
}

/*  masonry: columns CSS, images at natural proportions — the rule  */
.mon-masonry {
    columns: 4;
    column-gap: 6px;
    margin-bottom: 48px;
}

.mm-item {
    break-inside: avoid;
    margin-bottom: 6px;
    overflow: hidden;
    cursor: zoom-in;
}

.mm-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

/*  height: auto = NO CROP  */
.mm-item:hover img {
    transform: scale(1.03);
}

.mon-count {
    font-family: var(--font-d);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: 6px;
}

.mon-footer {
    text-align: center;
    padding-top: 8px;
}

/*  ─── PULL QUOTE / STATEMENT ───  */
.statement {
    background: var(--white);
    padding: 80px;
    display: flex;
    align-items: center;
    gap: 48px;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    overflow: hidden;
    position: relative;
}

.st-quote {
    font-family: var(--font-d);
    font-size: clamp(36px, 7vw, 96px);
    font-weight: 900;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    line-height: 0.88;
    color: var(--ink);
    flex: 1;
}

.st-accent {
    width: 6px;
    background: var(--ocean);
    align-self: stretch;
    flex-shrink: 0;
    border-radius: 2px;
}

.st-body {
    max-width: 360px;
    flex-shrink: 0;
}

/*  ─── TWO FORCES — editorial, no overlays ───  */
/*  ─── TWO FORCES ───  */
.two-forces {
    background: var(--white);
    padding: 100px 80px;
}

/*  Header row: big heading left, copy + CTA right  */
.tf-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 48px;
}

.tf-heading {
    font-size: clamp(36px, 5.5vw, 80px);
    margin-top: 12px;
}

.tf-header-copy {
    flex: 1 1 520px;
    max-width: 720px;
    padding-bottom: 6px;
}

/*  Two equal-height image panels with name overlay  */
.tf-panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 40px;
}

/*  Cover crop explicitly requested for equal-height panels  */
.tf-panel {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    cursor: pointer;
}

.tf-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.tf-panel:hover img {
    transform: scale(1.03);
}

.tf-panel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 55%);
    pointer-events: none;
}

.tf-panel-name {
    position: absolute;
    bottom: 24px;
    left: 24px;
    font-family: var(--font-d);
    font-size: clamp(18px, 2.5vw, 32px);
    font-weight: 900;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1;
    pointer-events: none;
}

.tf-footer-link {
    margin-top: 8px;
}

/*  ─── STORE PROMO ───  */
.store-promo {
    padding: 100px 80px;
    background: var(--cream);
}

.store-hd {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 16px;
}

.store-big {
    font-family: var(--font-d);
    font-size: clamp(48px, 8vw, 120px);
    font-weight: 900;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    line-height: 0.85;
    color: var(--ink);
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

/*  No cropping in store grid — images at natural proportions  */
.store-item a {
    display: block;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.store-item img {
    width: 100%;
    height: auto;
    display: block;
    background: var(--white);
    transition: transform 0.4s;
}

.store-item:hover img {
    transform: scale(1.03);
}

.store-name {
    font-family: var(--font-d);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink);
    margin-top: 10px;
}

/*  ─── IP & CHARACTERS PROMO ───  */
.ip-promo {
    padding: 100px 80px;
    background: var(--white);
}

.ip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-top: 48px;
    margin-bottom: 48px;
}

/*  No cropping — natural proportions  */
.ip-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.ip-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.ip-item:hover img {
    transform: scale(1.04);
}

.ip-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.70) 0%, transparent 50%);
    pointer-events: none;
}

.ip-name {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-family: var(--font-d);
    font-size: clamp(16px, 2vw, 26px);
    font-weight: 900;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1;
    pointer-events: none;
}

/*  ─── ACTIVATIONS PROMO ───  */
.act-promo {
    background-color: #000000;
    padding: 80px 80px 0;
    overflow: hidden;
}

.act-hd {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 16px;
}

/*  Horizontal scroll — images at fixed height, width auto = natural ratio  */
.act-scroll {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 80px;
    cursor: grab;
}

.act-scroll:active {
    cursor: grabbing;
}

.act-scroll::-webkit-scrollbar {
    height: 4px;
}

.act-scroll::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.25);
    border-radius: 2px;
}

.act-item {
    flex-shrink: 0;
    overflow: hidden;
}

.act-item img {
    height: 340px;
    width: auto;
    display: block;
    transition: transform 0.4s;
    object-fit: contain;
}

/*  height fixed, width auto = no crop  */
.act-item:hover img {
    transform: scale(1.04);
}

/*  ─── MANIFESTO ───  */
.manifesto {
    padding: 100px 80px;
    background: var(--white);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}

.mf-bar {
    width: 32px;
    height: 3px;
    background: var(--ocean);
    margin-top: 20px;
}

.mf-intro {
    font-family: var(--font-b);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--ink);
    margin-bottom: 24px;
}

.mf-intro em {
    font-style: italic;
}

.mf-body {
    font-family: var(--font-b);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.9;
    color: #000;
    margin-bottom: 24px;
}

.mf-close {
    font-family: var(--font-d);
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ink);
}

/*  ─── RESPONSIVE ───  */
@media (max-width: 1100px) {
    .at-scale, .editions, .manifesto, .two-forces, .store-promo, .ip-promo {
    padding: 80px 48px;
}

.stats, .mon-section, .act-promo {
    padding: 64px 48px 0;
}

.mon-masonry {
    columns: 3;
}

.store-grid {
    grid-template-columns: repeat(4, 1fr);
}

.statement {
    padding: 64px 48px;
}

}

@media (max-width: 768px) {
    .hero-content {
    padding: 0 28px 60px;
}

.at-scale, .editions, .manifesto, .two-forces, .store-promo, .ip-promo {
    padding: 64px 24px;
}

.stats {
    padding: 48px 24px;
    grid-template-columns: repeat(2,1fr);
}

.stat:nth-child(2) {
    border-right: none;
}

.stat:nth-child(3) {
    border-top: 1px solid rgba(0,0,0,0.08);
}

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

.feat-split {
    grid-template-columns: 1fr;
    min-height: auto;
}

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

.feat-copy, .gm-copy {
    padding: 48px 28px;
}

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

.editions-hd {
    flex-direction: column;
    gap: 12px;
}

.mon-section {
    padding: 64px 24px;
}

.mon-masonry {
    columns: 2;
}

.mon-hd {
    gap: 32px;
}

.tf-panels {
    grid-template-columns: 1fr;
}

.tf-panel {
    aspect-ratio: 4 / 3;
}

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

.store-grid {
    grid-template-columns: repeat(3,1fr);
}

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

.statement {
    padding: 48px 24px;
    flex-direction: column;
}

.act-promo {
    padding: 64px 24px 0;
}

}

/* ─── LINK STYLE OPTIONS ─── */

/* Shared base for all 5 options */
.lnk-base {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: color 0.2s, background 0.2s, border-color 0.2s, gap 0.2s, transform 0.2s;
}

/* Option A — Current baseline: small caps + underline */
.lnk-a {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: #006FA8;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  gap: 6px;
}
.lnk-a:hover { color: #000; }

/* Option B — Sliding underline: no underline at rest, grows on hover */
.lnk-b {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: #000;
  gap: 8px;
  position: relative;
  padding-bottom: 3px;
}
.lnk-b::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: #006FA8;
  transition: width 0.3s ease;
}
.lnk-b:hover::after { width: 100%; }
.lnk-b:hover { color: #006FA8; }

/* Option C — Editorial rule: text + extending line + arrow */
.lnk-c {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #000;
  gap: 12px;
}
.lnk-c .lnk-rule {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: #000;
  transition: width 0.3s ease;
  flex-shrink: 0;
}
.lnk-c:hover .lnk-rule { width: 56px; }
.lnk-c .lnk-arrow { font-size: 14px; font-weight: 400; }

/* Option D — Outlined pill */
.lnk-d {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #000;
  border: 1.5px solid #000;
  border-radius: 32px;
  padding: 9px 20px;
  gap: 8px;
}
.lnk-d:hover { background: #000; color: #fff; }

/* Option E — Bold black, arrow shifts right */
.lnk-e {
  font-size: 15px;
  letter-spacing: 0.02em;
  color: #000;
  gap: 10px;
  font-weight: 900;
}
.lnk-e .lnk-arr {
  display: inline-block;
  transition: transform 0.25s ease;
}
.lnk-e:hover .lnk-arr { transform: translateX(6px); }

/* ─── LINK OPTIONS COMPARISON MODULE ─── */
.lnk-compare {
  background: #fff;
  padding: 80px 80px;
  border-top: 1px solid #E2EDF5;
  border-bottom: 1px solid #E2EDF5;
}
.lnk-compare-hd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.lnk-options {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
}
.lnk-opt {
  background: #FAFAFA;
  border: 1px solid #E8E8E8;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.lnk-opt-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #B0B0B0;
}
.lnk-opt-label {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
  color: #3D5166;
  padding-top: 12px;
  border-top: 1px solid #eee;
}
@media(max-width: 900px) {
  .lnk-options { grid-template-columns: 1fr 1fr; }
  .lnk-compare { padding: 60px 24px; }
}

/* ─── EDITION CARD BUTTON ─── */
.ed-btn {
  display: inline-block;
  margin-top: 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #000;
  border: 1.5px solid #000;
  padding: 9px 18px;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.ed-btn:hover { background: #000; color: #fff; }

/* ─── BIO INTRO ─── */
.bio-intro {
    background: #fff;
    padding: 80px 40px 72px;
    border-bottom: 1px solid #e8e8e8;
}
.bio-inner {
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
}
.bio-text {
    font-family: var(--font-b);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.85;
    color: #000;
    letter-spacing: 0.01em;
}
@media(max-width:768px) {
    .bio-intro { padding: 56px 20px 48px; }
}

/* ─── TOMMY TOUCAN DETAIL IMAGE ─── */
.feat-detail-wrap {
    background: #fff;
    padding: 0 80px 80px;
}
.feat-detail-wrap img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 700px;
    object-fit: cover;
}
@media(max-width:768px) {
    .feat-detail-wrap { padding: 0 24px 48px; }
}

/* ─── TWO FORCES PANEL CONTENT ─── */
.tf-panel-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    pointer-events: none;
}
.tf-panel-content .tf-panel-name {
    position: static;
    bottom: auto;
    left: auto;
}
.tf-panel-sub {
    font-family: var(--font-b);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.4;
}
.tf-panel-tag {
    font-family: var(--font-b);
    font-size: 13px;
    font-weight: 500;
    font-style: italic;
    color: #fff;
    line-height: 1.4;
}
.tf-panel-link {
    font-family: var(--font-d);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    margin-top: 8px;
    pointer-events: all;
    display: inline-block;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    padding-bottom: 2px;
    transition: border-color 0.2s;
}
.tf-panel-link:hover { border-color: #fff; }
