/* 2ndhandcars.co.uk — demonstration landing page */

:root {
  /* Theme tokens (--accent, --navy, --card-aspect, fonts…) are emitted per site
     by build.js from config.theme. Everything below is portfolio-wide. */
  --ink:        #10151c;
  --ink-soft:   #3d4757;
  --ink-faint:  #6b7688;
  --paper:      #ffffff;
  --line:       #e3e0da;

  --radius:     14px;
  --radius-lg:  22px;
  --shadow-sm:  0 1px 2px rgba(16,21,28,.06), 0 4px 12px rgba(16,21,28,.05);
  --shadow-md:  0 2px 6px rgba(16,21,28,.07), 0 18px 40px rgba(16,21,28,.10);
  --wrap:       1180px;
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.025em;
  margin: 0;
}

h1 { font-size: clamp(2.6rem, 6.2vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.12rem; font-weight: 700; letter-spacing: -.01em; }

p { margin: 0 0 1rem; }

svg { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }

.eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin: 0 0 .7rem;
}
.eyebrow--light { color: var(--accent); }

/* ---------- for-sale banner ---------- */

.sale-banner {
  position: relative;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .85rem;
  flex-wrap: wrap;
  padding: .72rem 1.25rem;
  background: linear-gradient(100deg, var(--sale), #a8281c);
  color: #fff;
  text-decoration: none;
  font-size: .95rem;
  text-align: center;
}
.sale-banner:hover { background: linear-gradient(100deg, #e04432, #b62d20); }
.sale-banner__tag {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .22rem .55rem;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.32);
}
.sale-banner__text strong { font-weight: 700; }
.sale-banner__cta {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.sale-banner__cta svg { width: 1em; height: 1em; transition: transform .18s ease; }
.sale-banner:hover .sale-banner__cta svg { transform: translateX(3px); }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  min-height: 72px;
}
.logo { display: flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--ink); }
.logo__mark { width: 38px; height: 26px; color: var(--accent-deep); stroke-width: 2.2; flex: none; }
.logo__text { font-family: var(--font-display); font-weight: 800; font-size: 1.24rem; letter-spacing: -.03em; }
.logo__tld { color: var(--ink-faint); font-weight: 600; }

.site-nav { display: flex; gap: 1.7rem; margin-left: auto; }
.site-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 500;
  font-size: .95rem;
  padding: .4rem 0;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover { color: var(--ink); border-bottom-color: var(--accent); }

.site-header__phone { margin-left: 0; }
.site-header__phone svg { width: 1em; height: 1em; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .78rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn svg { width: 1.05em; height: 1.05em; }
.btn--primary { background: var(--navy); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: #223046; box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink-faint); background: var(--paper-warm); }
.btn--accent { background: var(--accent); color: #17202c; }
.btn--accent:hover { background: #f3b747; }
.btn--lg { padding: 1rem 1.9rem; font-size: 1.05rem; }
.linkbtn {
  background: none; border: 0; padding: 0; font: inherit;
  color: var(--accent-deep); font-weight: 600; text-decoration: underline; cursor: pointer;
}

/* ---------- hero ---------- */

.hero { position: relative; isolation: isolate; color: #fff; }
.hero__media { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(10,14,20,.90) 0%, rgba(10,14,20,.72) 45%, rgba(10,14,20,.35) 100%),
    linear-gradient(to bottom, rgba(10,14,20,.55), rgba(10,14,20,.30) 40%, rgba(10,14,20,.80));
}
.hero__inner { padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(3rem, 6vw, 5rem); }
.hero .eyebrow { color: var(--accent); }
.hero__lede {
  max-width: 34rem;
  margin-top: 1.25rem;
  font-size: 1.12rem;
  color: rgba(255,255,255,.82);
}

.search-card {
  margin-top: 2.2rem;
  background: rgba(255,255,255,.97);
  border-radius: var(--radius-lg);
  padding: 1.1rem;
  box-shadow: var(--shadow-md);
  max-width: 62rem;
}
.search-card__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: .7rem;
  align-items: end;
}
.field { display: flex; flex-direction: column; gap: .35rem; min-width: 0; }
.field__label {
  font-size: .72rem; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; color: var(--ink-faint);
}
.field select {
  appearance: none;
  width: 100%;
  padding: .72rem 2.1rem .72rem .85rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7688' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right .7rem center / 1.05rem;
  font: inherit;
  font-size: .95rem;
  color: var(--ink);
  cursor: pointer;
}
.field select:focus-visible { outline: 2px solid var(--accent); outline-offset: 1px; }
.search-card__submit { height: 46px; }

.hero__badges {
  display: flex; flex-wrap: wrap; gap: 1.4rem;
  list-style: none; margin: 1.9rem 0 0; padding: 0;
  font-size: .93rem; color: rgba(255,255,255,.86);
}
.hero__badges li { display: flex; align-items: center; gap: .45rem; }
.hero__badges svg { width: 1.05em; height: 1.05em; color: var(--accent); stroke-width: 2.6; }

/* ---------- sections ---------- */

.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2.2rem;
}
.section__count { margin: 0; color: var(--ink-faint); font-size: .95rem; }

/* ---------- stock grid ---------- */

.stock-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 1.6rem;
}
.card {
  display: flex; flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.card__media { position: relative; aspect-ratio: var(--card-aspect); overflow: hidden; background: var(--paper-warm); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card__media img { transform: scale(1.045); }
.card__flag {
  position: absolute; top: .8rem; left: .8rem;
  padding: .28rem .65rem;
  border-radius: 999px;
  background: var(--accent);
  color: #17202c;
  font-size: .7rem; font-weight: 800;
  letter-spacing: .09em; text-transform: uppercase;
}
.card__body { padding: 1.15rem 1.25rem 1.35rem; display: flex; flex-direction: column; flex: 1; }
.card__title { margin-bottom: .15rem; }
.card__trim { color: var(--ink-faint); font-size: .9rem; margin: 0 0 .9rem; }
.card__specs {
  display: flex; flex-wrap: wrap; gap: .4rem;
  list-style: none; margin: 0 0 1.15rem; padding: 0;
}
.card__specs li {
  font-size: .78rem;
  padding: .26rem .6rem;
  border-radius: 7px;
  background: var(--paper-warm);
  color: var(--ink-soft);
  border: 1px solid var(--line);
}
.card__foot {
  margin-top: auto;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem;
  padding-top: 1rem; border-top: 1px solid var(--line);
}
.card__price { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; letter-spacing: -.03em; }
.card__monthly { font-size: .82rem; color: var(--ink-faint); margin: .1rem 0 0; }
.card__cta {
  font-size: .88rem; font-weight: 600; color: var(--ink);
  text-decoration: none; display: inline-flex; align-items: center; gap: .3rem;
  border-bottom: 2px solid var(--accent); padding-bottom: 2px;
}
.card__cta svg { width: .95em; height: .95em; transition: transform .16s ease; }
.card:hover .card__cta svg { transform: translateX(3px); }

.stock-empty { margin-top: 2rem; color: var(--ink-soft); }

/* ---------- promise ---------- */

.promise {
  background: var(--navy);
  color: #fff;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}
.promise h2 { margin-bottom: 2.6rem; }
.promise__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.promise__item { background: var(--navy); padding: 1.9rem 1.6rem; }
.promise__num {
  font-family: var(--font-display);
  font-weight: 800; font-size: .9rem;
  color: var(--accent);
  display: block; margin-bottom: 1.1rem;
}
.promise__item h3 { margin-bottom: .6rem; }
.promise__item p { color: rgba(255,255,255,.68); font-size: .94rem; margin: 0; }

/* ---------- finance ---------- */

.finance { background: var(--paper-warm); }
.finance__inner {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 420px);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.finance__copy p { color: var(--ink-soft); max-width: 34rem; }
.finance__copy h2 { margin-bottom: 1.1rem; }
.ticklist { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: .6rem; }
.ticklist li { display: flex; align-items: center; gap: .6rem; font-size: .95rem; color: var(--ink-soft); }
.ticklist li::before {
  content: ""; flex: none;
  width: 1.15rem; height: 1.15rem; border-radius: 50%;
  background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2317202c' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m20 6-11 11-5-5'/%3E%3C/svg%3E") no-repeat center / .72rem;
}

.calc {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.7rem;
  box-shadow: var(--shadow-sm);
}
.calc__row {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: .5rem;
}
.calc__row label { font-size: .82rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-faint); }
.calc__row output { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.calc input[type="range"] {
  appearance: none; width: 100%; height: 5px;
  border-radius: 999px; background: var(--line);
  margin: 0 0 1.5rem; cursor: pointer;
}
.calc input[type="range"]::-webkit-slider-thumb {
  appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--navy); border: 4px solid #fff;
  box-shadow: 0 1px 6px rgba(16,21,28,.3);
}
.calc input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--navy); border: 4px solid #fff;
  box-shadow: 0 1px 6px rgba(16,21,28,.3);
}
.calc input[type="range"]:focus-visible { outline: 2px solid var(--accent); outline-offset: 6px; }
.calc__result {
  background: var(--navy); color: #fff;
  border-radius: var(--radius); padding: 1.25rem 1.4rem;
  text-align: center;
}
.calc__result-label { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.6); margin: 0 0 .3rem; }
.calc__result-value { font-family: var(--font-display); font-weight: 800; font-size: 2.7rem; letter-spacing: -.035em; margin: 0; color: var(--accent); }
.calc__result-meta { font-size: .84rem; color: rgba(255,255,255,.62); margin: .35rem 0 0; }
.calc__small { font-size: .76rem; color: var(--ink-faint); margin: .9rem 0 0; text-align: center; }

/* ---------- handover ---------- */

.handover {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: stretch;
  background: var(--navy);
  color: #fff;
}
.handover__media { min-height: 340px; }
.handover__media img { width: 100%; height: 100%; object-fit: cover; }
.handover__quote {
  display: flex; flex-direction: column; justify-content: center;
  gap: 1.6rem;
  padding: clamp(2.5rem, 5vw, 4.5rem);
}
.handover blockquote { margin: 0; }
.handover blockquote p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.3rem, 2.3vw, 1.75rem);
  line-height: 1.32;
  letter-spacing: -.02em;
  margin: 0 0 1rem;
}
.handover blockquote footer { color: rgba(255,255,255,.6); font-size: .92rem; }
.stars { display: flex; align-items: center; gap: .6rem; font-size: .92rem; color: rgba(255,255,255,.72); }
.stars svg { width: 1.35rem; height: 1.35rem; fill: var(--accent); stroke: none; }
.stars strong { color: #fff; }

/* ---------- visit ---------- */

.visit__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.visit__address { font-size: 1.1rem; color: var(--ink-soft); margin-top: 1.2rem; }
.hours { margin: 1.6rem 0 2rem; display: grid; gap: .55rem; max-width: 22rem; }
.hours > div { display: flex; justify-content: space-between; border-bottom: 1px dashed var(--line); padding-bottom: .55rem; }
.hours dt { color: var(--ink-soft); }
.hours dd { margin: 0; font-weight: 600; }
.visit__actions { display: flex; gap: .8rem; flex-wrap: wrap; }

.map {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, #eef1ee, #e2e7e1);
  border: 1px solid var(--line);
  overflow: hidden;
}
.map__grid {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 58px, rgba(18,26,38,.09) 58px 60px),
    repeating-linear-gradient(0deg,  transparent 0 58px, rgba(18,26,38,.09) 58px 60px),
    linear-gradient(38deg, transparent 48.4%, rgba(224,163,37,.55) 48.4% 51.6%, transparent 51.6%),
    linear-gradient(122deg, transparent 63.2%, rgba(18,26,38,.14) 63.2% 64.8%, transparent 64.8%);
}
.map__pin {
  position: absolute; top: 46%; left: 50%;
  width: 20px; height: 20px; margin: -10px 0 0 -10px;
  border-radius: 50%; background: var(--sale);
  box-shadow: 0 0 0 6px rgba(209,58,43,.22);
}
.map__pin span {
  position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid var(--sale); opacity: .55;
  animation: ping 2.4s cubic-bezier(0,0,.2,1) infinite;
}
@keyframes ping { to { transform: scale(2.6); opacity: 0; } }
.map__label {
  position: absolute; left: 1rem; bottom: 1rem; margin: 0;
  background: rgba(255,255,255,.92);
  border-radius: 999px; padding: .4rem .9rem;
  font-size: .82rem; font-weight: 600; color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}

/* ---------- domain CTA ---------- */

.domain-cta {
  background:
    radial-gradient(900px 380px at 15% 0%, rgba(224,163,37,.20), transparent 65%),
    var(--navy-soft);
  color: #fff;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  text-align: center;
}
.domain-cta__inner { max-width: 44rem; margin-inline: auto; }
.domain-cta h2 { margin-bottom: 1rem; }
.domain-cta p { color: rgba(255,255,255,.75); margin-bottom: 2rem; }
.domain-cta strong { color: #fff; }

/* ---------- footer ---------- */

.site-footer { background: var(--navy); color: rgba(255,255,255,.6); padding: 2.2rem 0; border-top: 1px solid rgba(255,255,255,.1); }
.site-footer__inner { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 2rem; font-size: .88rem; }
.site-footer__brand { font-family: var(--font-display); font-weight: 800; color: #fff; font-size: 1.05rem; margin: 0; letter-spacing: -.03em; }
.site-footer__brand span { color: rgba(255,255,255,.5); }
.site-footer__note { margin: 0; }
.site-footer a { margin-left: auto; color: var(--accent); font-weight: 600; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }

/* ---------- responsive ---------- */

@media (max-width: 960px) {
  .site-nav { display: none; }
  .site-header__phone { margin-left: auto; }
  .search-card__grid { grid-template-columns: 1fr 1fr; }
  .search-card__submit { grid-column: 1 / -1; }
  .finance__inner, .visit__inner, .handover { grid-template-columns: 1fr; }
  .handover__media { min-height: 300px; }
  .hero__media::after { background: linear-gradient(to bottom, rgba(10,14,20,.72), rgba(10,14,20,.55) 40%, rgba(10,14,20,.88)); }
}

@media (max-width: 560px) {
  .search-card__grid { grid-template-columns: 1fr; }
  .site-header__phone-number { display: none; }
  .site-header__phone { padding: .78rem .95rem; }
  .site-footer a { margin-left: 0; }
}

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

/* ---------- outline button on dark ---------- */

.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }

.domain-cta__actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

/* ---------- the sale modal ---------- */

.sale-modal {
  width: min(100% - 2rem, 42rem);
  max-height: min(90dvh, 46rem);
  padding: 0;
  border: 0;
  border-radius: var(--radius-lg);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(8,12,18,.45);
  overflow: hidden;
}
.sale-modal::backdrop {
  background: rgba(9,13,19,.62);
  backdrop-filter: blur(3px);
}
.sale-modal[open] { animation: modal-in .28s cubic-bezier(.2,.8,.3,1); }
.sale-modal[open]::backdrop { animation: backdrop-in .28s ease; }
@keyframes modal-in { from { opacity: 0; transform: translateY(14px) scale(.98); } }
@keyframes backdrop-in { from { opacity: 0; } }

.sale-modal__inner {
  position: relative;
  padding: clamp(1.6rem, 4vw, 2.6rem);
  max-height: inherit;
  overflow-y: auto;
}
.sale-modal h2 { font-size: clamp(1.5rem, 3.6vw, 2.05rem); margin-bottom: .8rem; }
.sale-modal__intro { color: var(--ink-soft); margin-bottom: 1.6rem; }

.sale-modal__close {
  position: absolute; top: 1rem; right: 1rem;
  width: 2.2rem; height: 2.2rem;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink-faint);
  cursor: pointer;
}
.sale-modal__close:hover { color: var(--ink); border-color: var(--ink-faint); }
.sale-modal__close svg { width: 1rem; height: 1rem; }

.sale-modal__steps {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 1.05rem;
}
.sale-modal__step { display: flex; gap: .95rem; align-items: flex-start; }
.sale-modal__step-num {
  flex: none;
  width: 1.85rem; height: 1.85rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #17202c;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .9rem;
}
.sale-modal__step h3 { margin-bottom: .18rem; }
.sale-modal__step p { margin: 0; color: var(--ink-soft); font-size: .94rem; }

.sale-modal__footnote {
  font-size: .88rem;
  color: var(--ink-soft);
  background: var(--paper-warm);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: .8rem 1rem;
  margin-bottom: 1.6rem;
}
.sale-modal__actions { display: flex; gap: .7rem; flex-wrap: wrap; }
.sale-modal__actions .btn--accent { flex: 1 1 16rem; }

@media (max-width: 560px) {
  .sale-modal__actions .btn { width: 100%; }
}

/* Inline icons inside plain links have no .btn sizing to inherit. */
.site-footer a { display: inline-flex; align-items: center; gap: .35rem; }
.site-footer a svg { width: 1em; height: 1em; flex: none; }

/* Direct seller contact, under the enquiry actions */
.sale-modal__direct {
  margin: 1.1rem 0 0;
  font-size: .88rem;
  color: var(--ink-faint);
  text-align: center;
}
.sale-modal__direct a { color: var(--accent-deep); font-weight: 600; text-decoration: none; }
.sale-modal__direct a:hover { text-decoration: underline; }

.domain-cta__direct {
  margin: 1.4rem 0 0;
  font-size: .92rem;
  color: rgba(255,255,255,.62);
}
.domain-cta__direct a { color: var(--accent); font-weight: 600; text-decoration: none; }
.domain-cta__direct a:hover { text-decoration: underline; }

/* Modal: the steps scroll, the enquiry action never does */
.sale-modal__inner { display: flex; flex-direction: column; padding: 0; overflow: hidden; }
.sale-modal__body { overflow-y: auto; padding: clamp(1.6rem, 4vw, 2.6rem) clamp(1.6rem, 4vw, 2.6rem) 0; }
.sale-modal__foot {
  flex: none;
  padding: 1.1rem clamp(1.6rem, 4vw, 2.6rem) clamp(1.3rem, 3vw, 1.7rem);
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.sale-modal__footnote { margin-bottom: 1.2rem; }

/* ---------- ticket tiers (event sites) ---------- */

.tickets { background: var(--paper-warm); }
.tickets h2 { margin-bottom: 2.2rem; }
.tickets__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
  align-items: start;
}
.ticket {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem 1.5rem;
}
.ticket--featured { border-color: var(--accent); box-shadow: var(--shadow-md); }
.ticket__flag {
  position: absolute; top: -.7rem; left: 1.5rem;
  background: var(--accent); color: #17202c;
  font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: .25rem .6rem; border-radius: 999px;
}
.ticket__price {
  font-family: var(--font-display); font-weight: 800;
  font-size: 2.3rem; letter-spacing: -.03em; margin: 0;
}
.ticket__detail { color: var(--ink-faint); font-size: .92rem; margin: 0 0 .3rem; }
.ticket__includes { list-style: none; margin: 0 0 1.1rem; padding: 0; display: grid; gap: .45rem; }
.ticket__includes li { display: flex; gap: .5rem; align-items: flex-start; font-size: .92rem; color: var(--ink-soft); }
.ticket__includes svg { width: 1em; height: 1em; flex: none; margin-top: .3rem; color: var(--accent-deep); stroke-width: 2.6; }
.ticket .btn { margin-top: auto; }
.tickets__note { margin: 1.6rem 0 0; font-size: .88rem; color: var(--ink-faint); max-width: 46rem; }

/* ---------- programme (event sites) ---------- */

.programme { background: var(--navy); color: #fff; }
.programme h2 { margin-bottom: 2.4rem; }
.programme__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.day { background: var(--navy); padding: 1.5rem 1.4rem; }
.day__label {
  font-size: .95rem; color: var(--accent);
  padding-bottom: .8rem; margin-bottom: .9rem;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.day__sessions { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.day__sessions li { display: grid; gap: .1rem; }
.day__time { font-size: .78rem; font-weight: 700; letter-spacing: .08em; color: rgba(255,255,255,.55); }
.day__title { font-size: .95rem; font-weight: 600; }
.day__where { font-size: .84rem; color: rgba(255,255,255,.55); }

/* ---------- quote funnel ---------- */

.quote { background: var(--paper-warm); }
.quote__inner {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 430px);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.quote__copy p { color: var(--ink-soft); max-width: 34rem; }
.quote__copy h2 { margin-bottom: 1.1rem; }
.quote__panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.7rem;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 1.1rem;
}
.quote__panel .field select { padding-block: .8rem; }
.quote__slider .calc__row { margin-bottom: .4rem; }
.quote__slider input[type="range"] { margin-bottom: 0; }
.quote__panel .calc__result { margin-top: .3rem; }
.quote__panel .calc__small { margin: 0; }

@media (max-width: 960px) {
  .quote__inner { grid-template-columns: 1fr; }
}
