@font-face {
  font-family: "Manrope";
  src: url(../fonts/Manrope-VariableFont_wght.ttf);
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url(../fonts/PlayfairDisplay-VariableFont_wght.ttf);
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%
}
body {
  margin: 0;
  font-family: 'Manrope', system-ui, sans-serif;
  background: #f6f3ec;
  color: #0b1d2a;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block
}
a {
  color: inherit;
  text-decoration: none
}
button {
  font: inherit;
  cursor: pointer
}

:root {
  --ink: #0b1d2a;
  /* near-black teal */
  --ink-2: #13283a;
  --ink-3: #1d3a52;
  --ivory: #f6f3ec;
  --ivory-2: #ece6d8;
  --paper: #fffdf8;
  --gold: #c9a14a;
  --gold-soft: #e7cf94;
  --line: rgba(11, 29, 42, .12);
  --line-light: rgba(255, 255, 255, .14);
  --shadow: 0 30px 60px -30px rgba(11, 29, 42, .35);
  --radius: 14px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px
}

/* =========== Typography =========== */
h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1.08;
  margin: 0;
  color: var(--ink);
}
h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.4rem)
}
h2 {
  font-size: clamp(2rem, 4vw, 3.2rem)
}
h3 {
  font-size: 1.35rem;
  font-weight: 600
}
h1 em,
h2 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 600
}

p {
  margin: 0
}
.lede {
  font-size: 1.05rem;
  color: rgba(11, 29, 42, .72);
  max-width: 55ch
}

.eyebrow {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  margin-bottom: 18px;
}
.eyebrow--gold {
  color: var(--gold);
  border-color: rgba(201, 161, 74, .35);
  background: transparent
}

/* =========== Buttons =========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  border: 1px solid transparent;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--ink);
  color: var(--ivory);
  box-shadow: 0 10px 24px -12px rgba(11, 29, 42, .6)
}
.btn--primary:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-2px)
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line)
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--ivory)
}
.btn--lg {
  padding: 17px 28px;
  font-size: 1rem
}
.btn--sm {
  padding: 10px 18px;
  font-size: .85rem
}
.btn--block {
  width: 100%
}

/* =========== Announce bar =========== */
.announce {
  background: var(--ink);
  color: var(--ivory-2);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, .06)
}
.announce__track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  padding: 10px 0;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  animation: marquee 35s linear infinite;
}
.announce__track span {
  flex: none;
  color: var(--gold-soft)
}
@keyframes marquee {
  from {
    transform: translateX(0)
  }
  to {
    transform: translateX(-50%)
  }
}

/* =========== Nav =========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 243, 236, .85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  font-size: .85rem
}
.brand__mark {
  color: var(--gold);
  font-size: 1.1rem
}
.brand__name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: 0;
  font-size: 1rem
}
.nav__links {
  display: flex;
  gap: 30px
}
.nav__links a {
  font-size: .92rem;
  color: var(--ink-2);
  position: relative;
  padding: 6px 0
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--gold);
  transition: width .3s
}
.nav__links a:hover::after {
  width: 100%
}
.nav__toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  align-items: center
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform .25s
}
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 18px 24px 24px;
  border-top: 1px solid var(--line)
}
.nav__mobile a {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 500
}
.nav__mobile .btn {
  margin-top: 10px
}

/* =========== Hero =========== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--ivory);
  padding: 80px 0 100px
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11, 29, 42, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 29, 42, .05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 70% 40%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 40%, black 30%, transparent 75%);
}
.hero__glow {
  position: absolute;
  right: -200px;
  top: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201, 161, 74, .25), transparent 65%);
  filter: blur(20px);
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center
}
.hero__copy h1 {
  margin-bottom: 22px
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 24px
}
.hero__trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: .85rem;
  color: var(--ink-3)
}

/* Vault visual */
.hero__visual {
  display: flex;
  justify-content: center
}
.vault {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 1/1.05;
  background: linear-gradient(160deg, #1d3a52, #0b1d2a 70%);
  border-radius: 24px;
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, .04);
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.vault__door {
  position: relative;
  flex: 1;
  border-radius: 18px;
  background: radial-gradient(circle at 50% 35%, #23435e, #0b1d2a 75%);
  border: 1px solid rgba(255, 255, 255, .06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  overflow: hidden;
}
.vault__ring {
  position: absolute;
  border: 1px solid rgba(201, 161, 74, .25);
  border-radius: 50%;
  width: 90%;
  aspect-ratio: 1;
  animation: spin 30s linear infinite
}
.vault__ring--2 {
  width: 70%;
  border-color: rgba(201, 161, 74, .18);
  animation-duration: 45s;
  animation-direction: reverse
}
.vault__ring--3 {
  width: 50%;
  border-color: rgba(201, 161, 74, .12);
  animation-duration: 60s
}
@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}
.vault__pad {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 54%;
}
.vault__pad span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .04);
  color: var(--gold-soft);
  font-weight: 600;
  font-size: .85rem;
  border: 1px solid rgba(255, 255, 255, .05);
}
.vault__bio {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(201, 161, 74, .12);
  border: 1px solid rgba(201, 161, 74, .4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.vault__finger {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: repeating-radial-gradient(circle at center, var(--gold) 0 2px, transparent 2px 5px);
  opacity: .85;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: .4;
    transform: scale(.92)
  }
  50% {
    opacity: 1;
    transform: scale(1.05)
  }
}
.vault__plate {
  margin-top: 18px;
  text-align: center;
  font-family: 'Manrope', sans-serif;
  font-size: .7rem;
  letter-spacing: .4em;
  color: rgba(231, 207, 148, .7);
}

/* =========== Strip =========== */
.strip {
  background: var(--ink);
  color: var(--ivory)
}
.strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 36px 24px;
  text-align: center
}
.strip__item strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold)
}
.strip__item span {
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(246, 243, 236, .6)
}

/* =========== Sections =========== */
.section {
  padding: 110px 0;
  position: relative
}
.section--soft {
  background: var(--ivory-2)
}
.section--dark {
  background: var(--ink);
  color: var(--ivory)
}
.section--dark h2,
.section--dark h3 {
  color: var(--ivory)
}
.section--dark .lede {
  color: rgba(246, 243, 236, .7)
}
.section--dark .eyebrow {
  background: transparent;
  color: var(--gold-soft);
  border-color: rgba(255, 255, 255, .18)
}

.section__head {
  max-width: 780px;
  margin: 0 auto 64px;
  text-align: center
}
.section__head--left {
  margin: 0 0 48px;
  text-align: left
}
.section__head--light .eyebrow {
  background: transparent;
  border-color: rgba(255, 255, 255, .2)
}
.section__head h2 {
  margin-bottom: 18px
}
.section__head p {
  color: rgba(11, 29, 42, .68);
  max-width: 55ch;
  margin: 0 auto
}
.section--dark .section__head p {
  color: rgba(246, 243, 236, .7)
}

/* =========== Grids =========== */
.grid {
  display: grid;
  gap: 24px
}
.grid--features {
  grid-template-columns: repeat(3, 1fr)
}
.grid--cases {
  grid-template-columns: repeat(3, 1fr)
}
.grid--reviews {
  grid-template-columns: repeat(3, 1fr)
}

.feat {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.feat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(201, 161, 74, .35)
}
.feat__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.feat h3 {
  margin-bottom: 8px
}
.feat p {
  color: rgba(11, 29, 42, .7);
  font-size: .95rem
}

/* Split engineering */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}
.split__copy h2 {
  margin-bottom: 22px
}
.specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 36px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .1)
}
.specs div {
  display: flex;
  flex-direction: column;
  gap: 4px
}
.specs dt {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-soft)
}
.specs dd {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--ivory)
}

.exploded {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.exploded__layer {
  position: absolute;
  border-radius: 24px;
  border: 1px solid rgba(201, 161, 74, .2);
  background: linear-gradient(160deg, rgba(255, 255, 255, .04), transparent);
}
.exploded__layer--1 {
  inset: 0;
  background: linear-gradient(160deg, #1d3a52, #0b1d2a)
}
.exploded__layer--2 {
  inset: 14%;
  background: linear-gradient(160deg, #23435e, #13283a);
  transform: rotate(-3deg)
}
.exploded__layer--3 {
  inset: 28%;
  background: radial-gradient(circle, #2a526f, #13283a);
  transform: rotate(4deg)
}
.exploded__core {
  position: relative;
  z-index: 2;
  font-size: 3rem;
  color: var(--gold);
  text-shadow: 0 0 30px rgba(201, 161, 74, .6);
  animation: pulse 3s ease-in-out infinite;
}

/* Steps */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step
}
.steps li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  position: relative;
}
.steps__num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 2.2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.steps li h3 {
  margin-bottom: 8px
}
.steps li p {
  color: rgba(11, 29, 42, .68);
  font-size: .95rem
}

/* Compare table */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  border: 1px solid var(--line)
}
.compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px
}
.compare th,
.compare td {
  padding: 18px 22px;
  text-align: left;
  font-size: .92rem;
  border-bottom: 1px solid var(--line)
}
.compare thead th {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  background: var(--ivory)
}
.compare tbody tr:last-child td {
  border-bottom: 0
}
.compare__pri {
  background: rgba(201, 161, 74, .08);
  color: var(--ink);
  font-weight: 600;
  position: relative
}
thead .compare__pri {
  background: var(--ink);
  color: var(--gold)
}

/* Cases */
.case {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.case:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow)
}
.case__tag {
  display: inline-block;
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}
.case h3 {
  font-size: 1.4rem;
  margin-bottom: 10px
}
.case p {
  color: rgba(11, 29, 42, .7);
  font-size: .95rem
}

/* Reviews */
.review {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  padding: 32px 28px;
  margin: 0;
}
.review__stars {
  color: var(--gold);
  letter-spacing: .15em;
  margin-bottom: 14px
}
.review blockquote {
  margin: 0 0 22px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--ivory)
}
.review figcaption {
  font-size: .85rem
}
.review figcaption strong {
  display: block;
  color: var(--ivory);
  margin-bottom: 2px
}
.review figcaption span {
  color: rgba(246, 243, 236, .55);
  font-size: .78rem
}

/* FAQ */
.faq__wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: start
}
.faq {
  display: flex;
  flex-direction: column;
  gap: 14px
}
.faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0;
  transition: border-color .25s;
}
.faq details[open] {
  border-color: var(--gold)
}
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 26px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
}
.faq summary::-webkit-details-marker {
  display: none
}
.faq__plus {
  font-family: 'Manrope', sans-serif;
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform .25s ease;
  line-height: 1;
}
.faq details[open] .faq__plus {
  transform: rotate(45deg)
}
.faq details>p {
  padding: 0 26px 24px;
  color: rgba(11, 29, 42, .7);
  font-size: .95rem;
  margin: 0
}

/* Buy */
.section--buy {
  background: linear-gradient(180deg, var(--ivory) 0%, var(--ivory-2) 100%)
}
.buy {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center
}
.buy__card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 48px 44px;
  box-shadow: var(--shadow);
}
.buy__card h2 {
  margin: 6px 0 6px;
  font-size: 2.2rem
}
.buy__sub {
  color: rgba(11, 29, 42, .65);
  font-size: .95rem;
  margin-bottom: 22px
}
.buy__price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 18px 0 26px
}
.buy__now {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--ink)
}
.buy__was {
  text-decoration: line-through;
  color: rgba(11, 29, 42, .45)
}
.buy__save {
  background: var(--gold);
  color: var(--ink);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 6px
}
.buy__list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 10px;
  font-size: .95rem;
  color: var(--ink-2)
}
.buy__meta {
  margin-top: 16px;
  margin-bottom: 60px;
  text-align: center;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(11, 29, 42, .55)
}
.buy__aside h3 {
  font-size: 2rem;
  margin-bottom: 14px
}
.buy__aside p {
  color: rgba(11, 29, 42, .7);
  margin-bottom: 24px
}
.badge {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 22px;
  background: var(--ink);
  color: var(--ivory);
  border-radius: 12px
}
.badge strong {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem
}
.badge span {
  font-size: .78rem;
  letter-spacing: .12em;
  color: rgba(246, 243, 236, .7)
}

/* Footer */
.footer {
  background: var(--ink);
  color: rgba(246, 243, 236, .7);
  padding: 64px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, .06)
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}
.footer__brand p {
  margin-top: 14px;
  max-width: 30ch;
  font-size: .9rem
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px
}
.footer__cols h4 {
  font-family: 'Manrope', sans-serif;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 14px;
  font-weight: 700
}
.footer__cols a {
  display: block;
  padding: 6px 0;
  font-size: .92rem;
  color: rgba(246, 243, 236, .65);
  transition: color .2s
}
.footer__cols a:hover {
  color: var(--gold)
}
.footer__base {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  font-size: .78rem;
  letter-spacing: .1em;
  color: rgba(246, 243, 236, .4)
}

/* =========== Reveal animations =========== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease
}
.reveal.is-visible {
  opacity: 1;
  transform: none
}

/* =========== Responsive =========== */
@media (max-width:980px) {
  .hero {
    padding: 56px 0 72px
  }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px
  }
  .hero__visual {
    order: -1
  }
  .vault {
    max-width: 340px
  }
  .strip__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px
  }
  .grid--features,
  .grid--cases,
  .grid--reviews,
  .steps {
    grid-template-columns: 1fr 1fr
  }
  .split {
    grid-template-columns: 1fr;
    gap: 48px
  }
  .specs {
    grid-template-columns: 1fr 1fr
  }
  .faq__wrap {
    grid-template-columns: 1fr;
    gap: 40px
  }
  .buy {
    grid-template-columns: 1fr;
    gap: 36px
  }
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 40px
  }
  .section {
    padding: 80px 0
  }
}
@media (max-width:640px) {
  .container {
    padding: 0 20px
  }
  .nav__links {
    display: none
  }
  .nav__toggle {
    display: flex
  }
  .nav .btn--primary {
    display: none
  }
  .nav__mobile.is-open {
    display: flex
  }
  .hero {
    padding: 48px 0 64px
  }
  h1 {
    font-size: 2.2rem
  }
  h2 {
    font-size: 1.8rem
  }
  .grid--features,
  .grid--cases,
  .grid--reviews,
  .steps {
    grid-template-columns: 1fr
  }
  .specs {
    grid-template-columns: 1fr
  }
  .buy__card {
    padding: 32px 24px
  }
  .buy__now {
    font-size: 2.1rem
  }
  .footer__cols {
    grid-template-columns: 1fr 1fr
  }
  .strip__item strong {
    font-size: 1.5rem
  }
  .section {
    padding: 64px 0
  }
  .section__head {
    margin-bottom: 40px
  }
}

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

/* =========== Hero image (replaces vault SVG) =========== */
.hero__shot {
  position: relative;
  margin: 0;
  display: flex;
  justify-content: center
}
.hero__shot img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 24px;
  box-shadow: var(--shadow), 0 0 0 1px rgba(11, 29, 42, .06);
  object-fit: cover;
  aspect-ratio: 1/1;
}
.hero__plate {
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--gold-soft);
  font-size: .7rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .08);
  white-space: nowrap;
}

/* =========== Engineering image =========== */
.eng-figure {
  position: relative;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow)
}
.eng-figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block
}
.eng-figure__tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(11, 29, 42, .78);
  backdrop-filter: blur(8px);
  color: var(--gold-soft);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .1);
}

/* =========== Locker collection =========== */
.collection {
  display: grid;
  gap: 36px
}
.collection__media {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line)
}
.collection__media img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover
}
.collection__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}
.locker {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.locker:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(201, 161, 74, .4)
}
.locker--featured {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--gold)
}
.locker--featured h3,
.locker--featured .locker__price {
  color: var(--ivory)
}
.locker--featured p,
.locker--featured .locker__list li {
  color: rgba(246, 243, 236, .78)
}
.locker__head {
  display: flex;
  justify-content: space-between;
  align-items: center
}
.locker__tag {
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  background: rgba(201, 161, 74, .1);
  padding: 5px 10px;
  border-radius: 999px;
}
.locker--featured .locker__tag {
  background: var(--gold);
  color: var(--ink)
}
.locker__price {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--ink);
  font-weight: 700
}
.locker h3 {
  font-size: 1.5rem
}
.locker h3 em {
  color: var(--gold);
  font-style: italic
}
.locker p {
  font-size: .95rem;
  color: rgba(11, 29, 42, .7);
  margin: 0
}
.locker__list {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
  display: grid;
  gap: 6px;
  font-size: .85rem;
  color: var(--ink-3)
}

/* =========== FAQ — heading on top, items in a clean grid =========== */
.faq--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto
}
.faq--grid details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0;
  transition: border-color .25s, box-shadow .25s;
}
.faq--grid details[open] {
  border-color: var(--gold);
  box-shadow: 0 8px 24px -16px rgba(201, 161, 74, .5)
}
.faq--grid summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
}
.faq--grid summary::-webkit-details-marker {
  display: none
}
.faq--grid details>p {
  padding: 0 24px 22px;
  color: rgba(11, 29, 42, .7);
  font-size: .93rem;
  margin: 0
}

/* =========== Buy section — fix empty space =========== */
.buy {
  align-items: stretch
}
.buy__aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0
}
.buy__shot {
  position: relative;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--paper)
}
.buy__shot img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block
}
.buy__shot-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--ink);
  color: var(--gold-soft);
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.buy__promise h3 {
  font-size: 1.6rem;
  margin-bottom: 10px
}
.buy__promise>p {
  color: rgba(11, 29, 42, .7);
  margin-bottom: 18px
}
.buy__perks {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 14px
}
.buy__perks li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px
}
.buy__perks li>span {
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1
}
.buy__perks strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 2px
}
.buy__perks em {
  font-style: normal;
  font-size: .85rem;
  color: rgba(11, 29, 42, .65)
}

/* =========== Responsive overrides =========== */
@media (max-width:980px) {
  .collection__grid {
    grid-template-columns: 1fr
  }
  .faq--grid {
    grid-template-columns: 1fr
  }
  .hero__shot img {
    max-width: 380px
  }
}
@media (max-width:640px) {
  .buy__perks li {
    padding: 12px 14px
  }
  .hero__plate {
    font-size: .62rem;
    padding: 6px 14px
  }
}

/* =========== Legal pages (privacy / terms) =========== */
.legal-hero {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  color: var(--ivory);
  padding: 80px 0 60px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.legal-hero .eyebrow {
  background: transparent;
  border-color: rgba(255, 255, 255, .18);
  color: var(--gold-soft)
}
.legal-hero h1 {
  color: var(--ivory);
  margin: 14px auto 14px;
  max-width: 18ch
}
.legal-hero h1 em {
  color: var(--gold)
}
.legal-hero p {
  color: rgba(246, 243, 236, .7);
  max-width: 55ch;
  margin: 0 auto;
  font-size: 1rem
}
.legal-hero__meta {
  margin-top: 22px;
  display: inline-flex;
  gap: 18px;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(246, 243, 236, .55)
}
.legal-hero__meta span {
  padding: 0 12px;
  border-left: 1px solid rgba(255, 255, 255, .18)
}
.legal-hero__meta span:first-child {
  border-left: 0
}

.legal {
  padding: 80px 0 100px;
  background: var(--ivory)
}
.legal__layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
  align-items: start
}
.legal__toc {
  position: sticky;
  top: 90px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 22px;
  font-size: .88rem;
}
.legal__toc h4 {
  font-family: 'Manrope', sans-serif;
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
  font-weight: 700
}
.legal__toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc;
  display: grid;
  gap: 8px
}
.legal__toc li {
  counter-increment: toc
}
.legal__toc a {
  color: var(--ink-3);
  transition: color .2s;
  display: flex;
  gap: 10px;
  line-height: 1.4
}
.legal__toc a::before {
  content: counter(toc, decimal-leading-zero);
  color: var(--gold);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .05em;
  flex: none
}
.legal__toc a:hover {
  color: var(--ink)
}

.legal__body {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 48px 52px;
  box-shadow: var(--shadow)
}
.legal__body>p {
  color: rgba(11, 29, 42, .78);
  margin: 0 0 16px;
  font-size: 1rem;
  line-height: 1.7
}
.legal__body h2 {
  font-size: 1.55rem;
  margin: 38px 0 14px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  position: relative;
}
.legal__body h2:first-of-type {
  border-top: 0;
  padding-top: 0;
  margin-top: 0
}
.legal__body h3 {
  font-size: 1.1rem;
  margin: 22px 0 8px;
  color: var(--ink-2)
}
.legal__body ul {
  padding-left: 20px;
  margin: 0 0 18px;
  color: rgba(11, 29, 42, .78);
  font-size: .96rem;
  line-height: 1.7
}
.legal__body ul li {
  margin-bottom: 6px
}
.legal__body ul li::marker {
  color: var(--gold)
}
.legal__body strong {
  color: var(--ink)
}
.legal__body a {
  color: var(--gold);
  font-weight: 600;
  border-bottom: 1px solid rgba(201, 161, 74, .35)
}
.legal__body a:hover {
  color: var(--ink)
}

.legal__contact {
  margin-top: 32px;
  background: var(--ivory-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 28px;
  display: grid;
  gap: 14px;
}
.legal__contact h3 {
  margin: 0 0 4px;
  font-size: 1.2rem
}
.legal__contact-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: .95rem;
  color: var(--ink-2)
}
.legal__contact-row span {
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1.2
}

@media (max-width:980px) {
  .legal__layout {
    grid-template-columns: 1fr;
    gap: 24px
  }
  .legal__toc {
    position: static
  }
  .legal__body {
    padding: 36px 28px
  }
  .legal {
    padding: 56px 0 72px
  }
  .legal-hero {
    padding: 56px 0 40px
  }
}

/* =========== Contact-specific styles =========== */

/* Page Hero */
.contact-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 55%, var(--ink-3) 100%);
  padding: 90px 0 80px;
  text-align: center;
  color: var(--ivory);
}
.contact-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.contact-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 161, 74, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 161, 74, .08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 60%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 60%, black 30%, transparent 80%);
}
.contact-hero__glow {
  position: absolute;
  left: 50%;
  top: -100px;
  transform: translateX(-50%);
  width: 600px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 161, 74, .22), transparent 65%);
  filter: blur(30px);
}
.contact-hero__inner {
  position: relative;
  z-index: 1;
}
.contact-hero h1 {
  color: var(--ivory);
  margin: 16px 0 18px;
}
.contact-hero h1 em {
  color: var(--gold);
}
.contact-hero .lede {
  color: rgba(246, 243, 236, .72);
  margin: 0 auto;
  max-width: 50ch;
}

/* Quick-reach chips */
.contact-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(201, 161, 74, .35);
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(8px);
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold-soft);
  letter-spacing: .04em;
  text-decoration: none;
  transition: background .25s, border-color .25s, transform .2s;
}
.contact-chip svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.contact-chip:hover {
  background: rgba(201, 161, 74, .14);
  border-color: var(--gold);
  transform: translateY(-2px);
  color: var(--gold);
}

/* Main layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
  padding: 80px 0 100px;
}

/* ---- Form card ---- */
.contact-form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 48px 44px;
  box-shadow: var(--shadow);
}
.contact-form-card h2 {
  margin-bottom: 6px;
}
.contact-form-card .lede {
  margin-bottom: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}
.form-group:last-of-type {
  margin-bottom: 28px;
}
.form-label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.form-label span {
  color: var(--gold);
  margin-left: 3px;
}
.form-label .opt {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  font-size: .75rem;
  color: rgba(11, 29, 42, .45);
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: 'Manrope', sans-serif;
  font-size: .93rem;
  color: var(--ink);
  transition: border-color .25s, box-shadow .25s, background .25s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(11, 29, 42, .35);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 161, 74, .14);
  background: var(--paper);
}
.form-select {
  background-image: url("../images/Untitled.svg");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.form-privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
  font-size: .82rem;
  color: rgba(11, 29, 42, .6);
  line-height: 1.5;
}
.form-privacy input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
  cursor: pointer;
}
.form-privacy a {
  color: var(--gold);
  font-weight: 600;
  border-bottom: 1px solid rgba(201, 161, 74, .4);
}

.btn-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: var(--ink);
  color: var(--ivory);
  border: none;
  border-radius: 999px;
  font-family: 'Manrope', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  box-shadow: 0 10px 28px -14px rgba(11, 29, 42, .55);
  transition: background .25s, transform .2s, box-shadow .25s;
}
.btn-submit:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -14px rgba(201, 161, 74, .5);
}
.btn-submit svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---- Sidebar ---- */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 8px 24px -16px rgba(11, 29, 42, .18);
}
.info-card__title {
  font-family: 'Manrope', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 22px;
}
.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.info-icon {
  width: 40px;
  height: 40px;
  background: rgba(201, 161, 74, .1);
  border: 1px solid rgba(201, 161, 74, .25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg {
  width: 15px;
  height: 15px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.info-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(11, 29, 42, .42);
  margin-bottom: 3px;
}
.info-value {
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink-2);
  line-height: 1.45;
}
.info-value a {
  color: var(--ink-2);
  transition: color .2s;
}
.info-value a:hover {
  color: var(--gold);
}

/* Response-time badge */
.response-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-3) 100%);
  border-radius: 14px;
  padding: 20px 22px;
  color: var(--ivory);
}
.response-badge__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, .25);
  flex-shrink: 0;
  animation: pulse-dot 2.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(74, 222, 128, .25);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(74, 222, 128, .1);
  }
}
.response-badge__text {
  font-size: .82rem;
  line-height: 1.4;
}
.response-badge__text strong {
  display: block;
  font-weight: 700;
  margin-bottom: 2px;
  font-size: .88rem;
}
.response-badge__text span {
  color: rgba(246, 243, 236, .62);
  font-size: .78rem;
}

/* Guarantee card */
.guarantee-card {
  background: linear-gradient(135deg, rgba(201, 161, 74, .08) 0%, rgba(201, 161, 74, .02) 100%);
  border: 1px solid rgba(201, 161, 74, .3);
  border-radius: 16px;
  padding: 24px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.guarantee-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(201, 161, 74, .12);
  border: 1px solid rgba(201, 161, 74, .3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.guarantee-card__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.guarantee-card h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--ink);
}
.guarantee-card p {
  font-size: .82rem;
  color: rgba(11, 29, 42, .62);
  line-height: 1.55;
}

/* FAQ teaser */
.faq-teaser {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 24px;
}
.faq-teaser h4 {
  font-size: 1rem;
  margin-bottom: 16px;
}
.faq-teaser-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-teaser-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .875rem;
  color: var(--ink-2);
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: background .2s, border-color .2s, color .2s;
}
.faq-teaser-list li a:hover {
  background: var(--ivory);
  border-color: var(--line);
  color: var(--ink);
}
.faq-teaser-list li a svg {
  width: 13px;
  height: 13px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* Thank-you overlay */
.ty-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11, 29, 42, .72);
  backdrop-filter: blur(6px);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.ty-overlay.is-open {
  display: flex;
}
.ty-box {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 48px 44px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 40px 80px -20px rgba(11, 29, 42, .5);
  animation: ty-enter .4s cubic-bezier(.22, 1, .36, 1) both;
}
@keyframes ty-enter {
  from {
    opacity: 0;
    transform: translateY(24px) scale(.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.ty-checkmark {
  width: 64px;
  height: 64px;
  background: rgba(201, 161, 74, .1);
  border: 1.5px solid rgba(201, 161, 74, .4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}
.ty-checkmark svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ty-box h2 {
  font-size: 1.7rem;
  margin-bottom: 10px;
}
.ty-box p {
  color: rgba(11, 29, 42, .65);
  font-size: .92rem;
  line-height: 1.6;
  margin-bottom: 28px;
}

/* Inline form error */
.form-input.is-error,
.form-select.is-error,
.form-textarea.is-error {
  border-color: #e05c5c;
  box-shadow: 0 0 0 3px rgba(224, 92, 92, .12);
}
.form-error-msg {
  font-size: .75rem;
  color: #c0392b;
  margin-top: -12px;
  margin-bottom: 8px;
  display: none;
}
.form-error-msg.visible {
  display: block;
}

/* ---- Responsive ---- */
@media (max-width: 980px) {
  .contact-layout {
    grid-template-columns: 1fr;
    padding: 56px 0 80px;
    gap: 36px;
  }
  .contact-sidebar {
    order: -1;
  }
  .contact-chips {
    gap: 8px;
  }
}
@media (max-width: 640px) {
  .contact-hero {
    padding: 64px 0 56px;
  }
  .contact-form-card {
    padding: 32px 22px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .ty-box {
    padding: 36px 24px;
  }
  body {
    word-break: break-word;
  }
}

/* About grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.about-block {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  padding: 32px 28px;
}
.about-block h3 {
  color: var(--gold-soft);
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.about-block p {
  color: rgba(246, 243, 236, .72);
  font-size: .93rem;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}