:root {
  --forest: #0b4f45;
  --forest-deep: #062e29;
  --forest-mid: #157266;
  --mint: #d7efe6;
  --cream: #f4efe6;
  --paper: #fbf7f0;
  --sand: #e8ddd0;
  --terracotta: #c45c3e;
  --terracotta-dark: #9d442b;
  --gold: #b8945a;
  --ink: #17221f;
  --muted: #5b6864;
  --white: #fffdf8;
  --wrap: 1180px;
  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--forest-mid);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--forest-deep);
}

:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}

.topbar {
  background: var(--forest-deep);
  color: #e7f3ee;
  font-size: 13px;
  line-height: 1.45;
}

.topbar__inner {
  width: min(calc(100% - 40px), var(--wrap));
  margin-inline: auto;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}

.topbar__toggle {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #f3d7b0;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.topbar__toggle svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.topbar.is-open .topbar__toggle svg {
  transform: rotate(180deg);
}

.topbar__text {
  margin: 0;
}

.topbar__text a {
  color: #f3d7b0;
  font-weight: 600;
}

.topbar__text a:hover {
  color: #fff;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--sand);
}

.site-header__inner {
  width: min(calc(100% - 40px), var(--wrap));
  margin-inline: auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}

.brand:hover {
  color: var(--ink);
}

.brand__mark {
  width: 38px;
  height: 38px;
  display: block;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}

.brand__name span {
  color: var(--forest);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--sand);
  border-radius: 12px;
  background: var(--cream);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 14px;
  border-radius: 999px;
}

.site-nav a:hover,
.site-nav a.is-current {
  background: var(--mint);
  color: var(--forest-deep);
}

.hero {
  position: relative;
  min-height: 380px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 30, 28, 0.82) 0%, rgba(6, 30, 28, 0.55) 42%, rgba(6, 30, 28, 0.18) 100%),
    linear-gradient(180deg, rgba(6, 30, 28, 0.12) 0%, rgba(6, 30, 28, 0.55) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--wrap));
  margin-inline: auto;
  padding: 40px 0 44px;
  max-width: 640px;
  margin-left: max(20px, calc((100% - var(--wrap)) / 2));
}

.kicker {
  display: inline-block;
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero .kicker {
  color: #efd7a8;
}

.hero h1 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.55rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: #f4e4c4;
}

.hero__lead {
  margin: 0 0 20px;
  font-size: 1rem;
  line-height: 1.55;
  color: #e8f1ed;
  max-width: 42ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.btn--primary {
  background: var(--terracotta);
  color: #fff;
}

.btn--primary:hover {
  background: var(--terracotta-dark);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.listings {
  padding: 48px 0 64px;
}

.listings .wrap {
  width: min(calc(100% - 40px), var(--wrap));
  margin-inline: auto;
}

.listings__head {
  margin-bottom: 22px;
}

.listings__head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.offer-table__cols {
  display: grid;
  grid-template-columns: 48px 220px 1fr 110px 148px;
  gap: 16px;
  padding: 0 18px 10px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offer {
  display: grid;
  grid-template-columns: 48px 220px 1fr 110px 148px;
  gap: 16px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 18px;
  padding: 16px 18px;
}

.offer__num {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--forest);
  text-align: center;
}

.offer__media {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: var(--cream);
  padding: 14px 12px 36px;
}

.offer__media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.offer__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 6px 8px;
  background: rgba(6, 46, 41, 0.88);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.02em;
}

.offer__info {
  min-width: 0;
}

.offer__price {
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.4;
  color: var(--ink);
}

.offer__pros {
  margin: 0;
  padding: 0;
  list-style: none;
}

.offer__pros li {
  position: relative;
  padding: 3px 0 3px 16px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.offer__pros li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--forest-mid);
}

.offer__score {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-inline: auto;
  color: var(--ink);
}

.offer__score b {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1;
}

.offer__stars {
  position: relative;
  display: inline-block;
  font-size: 0.82rem;
  line-height: 1;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.offer__stars-bg {
  color: #d4c8b6;
}

.offer__stars-fill {
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 98%;
  color: #e0b145;
}

.offer__score > span {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.offer__cta {
  display: flex;
  justify-content: center;
}

.btn--visit {
  width: 100%;
  min-height: 46px;
  background: var(--terracotta);
  color: #fff;
}

.btn--visit:hover {
  background: var(--terracotta-dark);
  color: #fff;
}

.content {
  padding: 8px 0 72px;
}

.content .wrap,
.guide {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

.guide__intro {
  margin-bottom: 42px;
}

.guide h1,
.guide h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.18;
}

.page-hero {
  position: relative;
  min-height: 220px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.page-hero .hero__inner {
  padding: 36px 0;
  max-width: 720px;
}

.page-hero h1 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.page-hero p {
  margin: 0;
  color: #e8f1ed;
  max-width: 48ch;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 18px;
  padding: 24px 26px;
  margin-bottom: 16px;
}

.blog-card h3 {
  margin: 0 0 8px;
}

.blog-card time {
  display: block;
  margin-bottom: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 18px;
  padding: 24px;
}

.contact-card h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.contact-card address {
  font-style: normal;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 14px;
}

.form label {
  display: block;
  margin: 0 0 6px;
  font-size: 0.88rem;
  font-weight: 700;
}

.form input,
.form textarea {
  width: 100%;
  margin: 0 0 14px;
  padding: 12px 14px;
  border: 1px solid var(--sand);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.form .btn {
  border: 0;
}

.guide__intro p,
.guide__block p {
  margin: 0 0 14px;
  color: var(--muted);
}

.guide__block {
  margin-bottom: 36px;
}

.guide h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.28rem, 2.2vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.guide h4 {
  margin: 18px 0 10px;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
}

.guide__list,
.guide__checks {
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.guide__list li,
.guide__checks li {
  position: relative;
  padding: 8px 0 8px 22px;
  color: var(--muted);
  border-bottom: 1px solid var(--sand);
}

.guide__list li:last-child,
.guide__checks li:last-child {
  border-bottom: 0;
}

.guide__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
}

.guide__checks {
  counter-reset: check;
}

.guide__checks li {
  padding-left: 28px;
}

.guide__checks li::before {
  counter-increment: check;
  content: counter(check);
  position: absolute;
  left: 0;
  top: 8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq details {
  border: 1px solid var(--sand);
  border-radius: 14px;
  background: var(--white);
  padding: 4px 16px;
  margin-bottom: 10px;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  padding: 12px 0;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details p {
  margin: 0 0 14px;
}

.guide__note {
  margin-top: 22px;
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
  background: var(--cream);
  border-radius: 0 12px 12px 0;
  color: var(--ink);
  font-size: 0.95rem;
}

.site-footer {
  background: #081c19;
  color: #c5d4cf;
  padding: 56px 0 28px;
}

.site-footer .wrap {
  width: min(calc(100% - 40px), var(--wrap));
  margin-inline: auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer .brand {
  color: #fff;
  margin-bottom: 14px;
}

.site-footer .brand__name span {
  color: #d7efe6;
}

.footer-brand p {
  margin: 0;
  font-size: 0.95rem;
  max-width: 38ch;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin: 8px 0;
}

.site-footer a {
  color: #d7e7e2;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer address {
  font-style: normal;
  margin: 0 0 12px;
  line-height: 1.6;
}

.footer-legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
}

.footer-legal-nav a {
  color: #f3d7b0;
}

.footer-disclaimers {
  padding: 22px 0 8px;
}

.footer-disclaimers p {
  margin: 0 0 14px;
  font-size: 0.82rem;
  line-height: 1.65;
  color: #93a8a2;
}

.footer-disclaimers strong {
  color: #d7e7e2;
  font-weight: 700;
}

.footer-copy {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  color: #93a8a2;
}

.footer-copy p {
  margin: 0;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .site-header__inner {
    flex-wrap: wrap;
    min-height: 70px;
    padding: 8px 0;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 8px 0 16px;
    border-top: 1px solid var(--sand);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 14px 12px;
    border-radius: 12px;
  }

  .hero {
    min-height: 320px;
  }

  .hero__inner {
    padding: 32px 0 36px;
    margin-left: auto;
  }

  .topbar__toggle {
    display: flex;
  }

  .topbar__text {
    display: none;
  }

  .topbar.is-open .topbar__text {
    display: block;
  }

  .offer-table__cols {
    display: none;
  }

  .offer {
    grid-template-columns: 36px minmax(0, 1fr) auto;
    grid-template-areas:
      "num media score"
      "info info info"
      "cta cta cta";
  }

  .offer__num {
    grid-area: num;
  }

  .offer__media {
    grid-area: media;
  }

  .offer__info {
    grid-area: info;
  }

  .offer__score {
    grid-area: score;
  }

  .offer__cta {
    grid-area: cta;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 180px;
  }
}

@media (max-width: 680px) {
  .topbar__inner,
  .site-header__inner,
  .hero__inner,
  .listings .wrap,
  .content .wrap,
  .guide,
  .site-footer .wrap {
    width: min(calc(100% - 28px), var(--wrap));
  }

  .hero__inner {
    margin-left: auto;
  }

  .hero {
    min-height: 280px;
  }

  .listings {
    padding: 36px 0 48px;
  }

  .content {
    padding: 0 0 52px;
  }

  .offer {
    grid-template-columns: 32px minmax(0, 1fr) auto;
  }

  .offer__score b {
    width: 64px;
    height: 64px;
    font-size: 1.25rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
