@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,700;9..144,800&family=Inter:wght@400;600;700;800&display=swap");

:root {
  --ink: #18201c;
  --paper: #fbfbf7;
  --porcelain: #ffffff;
  --glass: #dcefed;
  --mint: #9ed7c2;
  --tomato: #e65f3c;
  --steel: #6d7a7b;
  --charcoal: #25302d;
  --line: #d7ded8;
  --shadow: 0 18px 55px rgba(24, 32, 28, 0.12);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(24, 32, 28, 0.12);
  background: rgba(251, 251, 247, 0.92);
  backdrop-filter: blur(12px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 70%, var(--glass) 0 38%, transparent 39%);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.94rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--charcoal);
}

.nav-links a:hover {
  color: var(--tomato);
}

.hero {
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(251,251,247,0.96) 0%, rgba(251,251,247,0.88) 48%, rgba(220,239,237,0.58) 100%),
    url("https://www.noelleeming.co.nz/dw/image/v2/BDMG_PRD/on/demandware.static/-/Sites-nlg-master-catalog/default/dwf8bc5fb8/images/hi-res/9F/82/N250230_01.jpg?sh=765&sw=765") right 5vw center / min(45vw, 560px) no-repeat;
}

.hero-inner,
.section,
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 62px 20px;
}

.hero-copy {
  max-width: 680px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--tomato);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.8rem);
  max-width: 9ch;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  margin: 0 0 10px;
  font-size: 1.45rem;
}

.lede {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--charcoal);
  font-size: 1.17rem;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 17px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: white;
  font-weight: 800;
  text-decoration: none;
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.button:hover {
  transform: translateY(-1px);
}

.disclosure {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #eef7f2;
}

.disclosure .section {
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 0.92rem;
  color: var(--charcoal);
}

.grid {
  display: grid;
  gap: 18px;
}

.table-wrap {
  overflow-x: auto;
}

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

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--porcelain);
  box-shadow: 0 2px 0 rgba(24, 32, 28, 0.04);
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.product-card figure {
  margin: 0;
  padding: 20px;
  min-height: 260px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #ffffff, #edf6f1);
}

.product-card img {
  max-height: 235px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.product-body {
  padding: 20px;
}

.label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--glass);
  color: var(--charcoal);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.spec-list {
  display: grid;
  gap: 7px;
  margin: 16px 0;
  padding: 0;
  list-style: none;
  color: var(--charcoal);
}

.spec-list li::before {
  content: "•";
  color: var(--tomato);
  font-weight: 900;
  margin-right: 8px;
}

.score {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.score div {
  padding: 14px;
  background: white;
}

.score strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
  font-family: "Fraunces", Georgia, serif;
}

.score span {
  display: block;
  margin-top: 5px;
  color: var(--steel);
  font-size: 0.78rem;
  font-weight: 700;
}

.compare {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.compare th,
.compare td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.compare th {
  background: #edf6f1;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.content {
  max-width: 800px;
}

.content p,
.content li {
  color: var(--charcoal);
}

.callout {
  padding: 22px;
  border-left: 6px solid var(--tomato);
  background: #fff7f2;
}

.review-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: center;
  gap: 42px;
}

.review-hero figure {
  margin: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.source-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.source-list a {
  border-bottom: 1px solid currentColor;
  color: var(--steel);
  font-size: 0.9rem;
  text-decoration: none;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--charcoal);
  color: white;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding-top: 34px;
  padding-bottom: 34px;
}

.footer-inner a {
  color: white;
}

@media (max-width: 820px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(251,251,247,0.94), rgba(251,251,247,0.8)),
      url("https://www.noelleeming.co.nz/dw/image/v2/BDMG_PRD/on/demandware.static/-/Sites-nlg-master-catalog/default/dwf8bc5fb8/images/hi-res/9F/82/N250230_01.jpg?sh=765&sw=765") center bottom / 72vw no-repeat;
  }

  .hero-copy {
    min-height: 650px;
    justify-content: flex-start;
    padding-top: 48px;
  }

  .grid.three,
  .grid.two,
  .review-hero,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .compare {
    display: block;
    overflow-x: auto;
  }
}
