:root {
  --navy: #071b29;
  --navy-soft: #0e2a3b;
  --navy-muted: #18394a;
  --ink: #132934;
  --ink-soft: #5d6b70;
  --warm: #f5f0e7;
  --warm-deep: #ebe2d4;
  --card: #fffcf7;
  --white: #fffaf2;
  --amber: #c99132;
  --amber-light: #edcd8b;
  --line: rgba(19, 41, 52, 0.14);
  --shadow: 0 24px 60px rgba(7, 27, 41, 0.13);
  --radius: 18px;
  --shell: 1220px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--warm);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
}

img {
  max-width: 100%;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(201, 145, 50, 0.7);
  outline-offset: 4px;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--navy);
  background: var(--amber-light);
  font-size: 13px;
  font-weight: 800;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  color: var(--white);
  background: rgba(7, 27, 41, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.brand span {
  color: var(--amber-light);
}

.main-nav {
  display: flex;
  gap: clamp(26px, 4vw, 52px);
  align-items: center;
}

.main-nav a {
  position: relative;
  padding-block: 6px;
  color: rgba(255, 250, 242, 0.78);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--amber-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover {
  color: var(--white);
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.language-switcher {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  color: rgba(255, 250, 242, 0.48);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.language-switcher button {
  padding: 6px 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
  opacity: 0.58;
  transition: color 180ms ease, opacity 180ms ease;
}

.language-switcher button:hover,
.language-switcher button[aria-pressed="true"] {
  color: var(--amber-light);
  opacity: 1;
}

.language-switcher button:focus-visible {
  border-radius: 2px;
  outline: 1px solid var(--amber-light);
  outline-offset: 3px;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(237, 205, 139, 0.22), transparent 27%),
    var(--warm);
}

.hero::before {
  position: absolute;
  top: 0;
  right: max(24px, calc((100vw - var(--shell)) / 2));
  width: 1px;
  height: 100%;
  content: "";
  background: rgba(19, 41, 52, 0.07);
}

.hero-layout {
  min-height: 350px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
  padding-block: 30px 32px;
}

.hero .eyebrow {
  margin-bottom: 10px;
}

.eyebrow {
  display: flex;
  gap: 11px;
  align-items: center;
  margin: 0 0 23px;
  color: #8b6729;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow > span[aria-hidden="true"] {
  width: 29px;
  height: 1px;
  background: currentColor;
}

.hero h1,
.section-heading h2,
.method-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.052em;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(50px, 4.8vw, 68px);
  line-height: 0.94;
}

.hero-intro {
  max-width: 570px;
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.4;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 18px;
}

.primary-link {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  padding: 11px 18px 11px 20px;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 12px 28px rgba(7, 27, 41, 0.16);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.primary-link span {
  color: var(--amber-light);
  font-size: 16px;
}

.primary-link:hover {
  color: var(--navy);
  background: var(--amber-light);
  transform: translateY(-2px);
}

.primary-link:hover span {
  color: var(--navy);
}

.hero-actions > p {
  display: flex;
  gap: 9px;
  align-items: center;
  margin: 0;
  color: #6b777a;
  font-size: 11px;
  font-weight: 700;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(201, 145, 50, 0.15);
}

.hero-visual {
  position: relative;
  padding: 0 18px 18px 0;
}

.image-frame {
  position: relative;
  height: 270px;
  overflow: hidden;
  border-radius: 24px 24px 6px 24px;
  background: var(--navy-soft);
  box-shadow: 0 28px 70px rgba(7, 27, 41, 0.23);
}

.image-frame > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.image-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 27, 41, 0.04) 35%, rgba(7, 27, 41, 0.7));
}

.image-kicker {
  position: absolute;
  top: 19px;
  right: 19px;
  margin: 0;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  color: #fff;
  background: rgba(7, 27, 41, 0.28);
  backdrop-filter: blur(8px);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.image-caption {
  position: absolute;
  right: 28px;
  bottom: 24px;
  left: 28px;
  color: #fff;
}

.image-caption span {
  color: var(--amber-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.image-caption p {
  max-width: 430px;
  margin: 10px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.35;
}

.curation-note {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(390px, 78%);
  display: block;
  padding: 20px 23px;
  border: 1px solid rgba(19, 41, 52, 0.1);
  border-radius: 13px 2px 13px 13px;
  color: var(--ink);
  background: var(--card);
  box-shadow: 0 16px 36px rgba(7, 27, 41, 0.15);
}

.curation-note p {
  margin: 0;
}

.note-title {
  color: #8b6729;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.note-title {
  margin-bottom: 7px !important;
}

.curation-note div > p:last-child {
  color: var(--ink-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  line-height: 1.45;
}

#deals,
#how-it-works {
  scroll-margin-top: 76px;
}

.deals-section {
  padding-block: 88px 102px;
  background: #f8f4ec;
  border-top: 1px solid rgba(19, 41, 52, 0.08);
}

.section-heading {
  display: flex;
  gap: 40px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.section-heading .eyebrow {
  margin-bottom: 16px;
}

.eyebrow-dark {
  color: #856126;
}

.section-heading h2 {
  font-size: clamp(43px, 5vw, 64px);
  line-height: 1;
}

.section-heading > p {
  max-width: 400px;
  margin: 0 0 4px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.deal-card {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
  animation: deal-in 450ms both;
}

.deal-card:hover {
  border-color: rgba(19, 41, 52, 0.24);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.deal-card.featured {
  border-color: rgba(201, 145, 50, 0.45);
}

.deal-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(135deg, rgba(201, 145, 50, 0.18), transparent),
    var(--warm-deep);
}

.deal-media::after {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  content: "DD";
  color: rgba(7, 27, 41, 0.18);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 700;
  transform: translate(-50%, -50%);
}

.deal-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1), opacity 180ms ease;
}

.deal-image.is-unavailable {
  opacity: 0;
}

.deal-card:hover .deal-image {
  transform: scale(1.04);
}

.deal-badges {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  display: flex;
  gap: 7px;
  align-items: center;
}

.category-badge,
.featured-badge {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 252, 247, 0.91);
  backdrop-filter: blur(8px);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.featured-badge {
  color: var(--navy);
  background: var(--amber-light);
  border-color: var(--amber-light);
}

.deal-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 23px;
}

.deal-dealer {
  margin: 0 0 10px;
  color: #87632a;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.deal-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 2vw, 25px);
  font-weight: 400;
  line-height: 1.17;
  letter-spacing: -0.03em;
}

.deal-price-line {
  display: flex;
  gap: 10px;
  align-items: baseline;
  margin-top: 19px;
}

.current-price {
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.previous-price {
  color: #8c9699;
  font-size: 13px;
  text-decoration: line-through;
}

.advantage {
  margin-left: auto;
  padding: 6px 9px;
  border-radius: 999px;
  color: #73521e;
  background: #f3e2bc;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.deal-reason {
  flex: 1;
  margin: 15px 0 22px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.58;
}

.deal-action {
  width: 100%;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border: 1px solid var(--navy);
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: color 180ms ease, background 180ms ease;
}

.deal-action:hover {
  color: var(--navy);
  background: var(--amber-light);
}

.view-all-wrap {
  display: flex;
  justify-content: center;
  padding-top: 46px;
}

.view-all {
  display: inline-flex;
  gap: 24px;
  align-items: center;
  padding: 16px 20px 16px 25px;
  border: 1px solid var(--navy);
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 10px 25px rgba(7, 27, 41, 0.12);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.view-all:hover {
  color: var(--navy);
  background: var(--amber-light);
  transform: translateY(-2px);
}

.button-arrow {
  color: var(--amber-light);
  font-size: 16px;
  transition: transform 180ms ease;
}

.view-all:hover .button-arrow {
  color: var(--navy);
  transform: translateY(3px);
}

.view-all[hidden] {
  display: none;
}

.deals-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 42px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink-soft);
  background: var(--card);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
}

.method-section {
  padding: 2px 0 4px;
  background: #f8f4ec;
}

.method-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(36px, 5vw, 70px);
  padding: 4px 40px;
  border-radius: 26px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(201, 145, 50, 0.13), transparent 27%),
    var(--navy);
}

.eyebrow-gold {
  color: var(--amber-light);
}

.method-heading .eyebrow {
  margin-bottom: 10px;
}

.method-heading h2 {
  font-size: clamp(34px, 3.7vw, 50px);
  line-height: 1.02;
}

.method-intro {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 250, 242, 0.68);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  line-height: 1.4;
}

.method-content ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-content li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.method-content li > span {
  padding-top: 3px;
  color: var(--amber-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.method-content li p {
  margin: 0;
  color: rgba(255, 250, 242, 0.69);
  font-size: 12px;
  line-height: 1.35;
}

.method-content li strong {
  display: block;
  margin-bottom: 0;
  color: var(--white);
  font-size: 13px;
}

.trust-page {
  background: var(--warm);
}

.trust-hero {
  color: var(--white);
  background:
    radial-gradient(circle at 86% 10%, rgba(237, 205, 139, 0.15), transparent 32%),
    var(--navy);
}

.trust-hero-inner {
  padding-block: clamp(64px, 9vw, 108px);
}

.trust-hero h1 {
  max-width: 850px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7vw, 84px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.trust-intro {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 250, 242, 0.72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.5;
}

.trust-updated {
  margin: 28px 0 0;
  color: var(--amber-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-section-nav {
  position: sticky;
  z-index: 10;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(248, 244, 236, 0.96);
  backdrop-filter: blur(12px);
}

.trust-section-nav .shell {
  display: flex;
  gap: 12px 26px;
  align-items: center;
  flex-wrap: wrap;
  min-height: 58px;
  padding-block: 10px;
}

.trust-section-nav a {
  color: #76541d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.trust-section-nav a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.trust-content {
  max-width: 940px;
  padding-block: clamp(64px, 8vw, 100px);
}

.trust-section {
  scroll-margin-top: 76px;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card);
  box-shadow: 0 12px 40px rgba(7, 27, 41, 0.05);
}

.trust-section + .trust-section {
  margin-top: 24px;
}

.trust-section h2 {
  margin: 0 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.trust-section h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 13px;
}

.trust-section p {
  max-width: 760px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

.trust-subsection {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.trust-highlight {
  border-color: rgba(201, 145, 50, 0.45);
  background: #fff8ea;
}

.site-footer {
  padding-block: 34px;
  color: var(--white);
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(240px, 0.7fr);
  gap: 24px;
  align-items: start;
}

.footer-brand {
  font-size: 20px;
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 250, 242, 0.58);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
}

.footer-nav {
  display: flex;
  gap: 10px 20px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 4px;
}

.footer-nav a {
  color: rgba(255, 250, 242, 0.72);
  font-size: 10px;
  font-weight: 700;
}

.footer-nav a:hover {
  color: var(--amber-light);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-meta {
  text-align: right;
}

.footer-note {
  margin-top: 8px !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 9px !important;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@keyframes deal-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero-layout {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    max-width: 760px;
  }

  .deals-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .method-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .header-inner {
    min-height: 68px;
  }

  .brand {
    font-size: 23px;
  }

  .main-nav {
    gap: 18px;
  }

  .main-nav a {
    font-size: 10px;
  }

  #deals,
  #how-it-works {
    scroll-margin-top: 68px;
  }

  .hero-layout {
    gap: 42px;
    padding-block: 50px 62px;
  }

  .hero h1 {
    font-size: clamp(50px, 15vw, 68px);
  }

  .hero-intro {
    font-size: 17px;
  }

  .hero-actions {
    flex-wrap: wrap;
    gap: 20px;
  }

  .hero-visual {
    padding: 0 10px 38px 0;
  }

  .image-frame {
    height: 370px;
  }

  .image-caption {
    right: 22px;
    bottom: 78px;
    left: 22px;
  }

  .image-caption p {
    font-size: 17px;
  }

  .curation-note {
    width: 90%;
    padding: 17px 18px;
  }

  .deals-section {
    padding-block: 64px 74px;
  }

  .section-heading {
    display: block;
    margin-bottom: 30px;
  }

  .section-heading > p {
    margin-top: 18px;
  }

  .deals-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .deal-title {
    font-size: 23px;
  }

  .method-section {
    padding: 12px 0;
  }

  .method-panel {
    width: calc(100% - 24px);
    gap: 42px;
    padding: 42px 25px;
    border-radius: 22px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .footer-meta {
    text-align: left;
  }

  .trust-section-nav {
    position: static;
  }

  .trust-section-nav .shell {
    gap: 10px 18px;
  }

  .trust-section {
    scroll-margin-top: 20px;
    padding: 26px 22px;
  }
}

@media (max-width: 380px) {
  .deal-price-line {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
