:root {
  --blue: #1c88bf;
  --blue-dark: #163f5a;
  --blue-deep: #0b2f43;
  --blue-soft: #e8f5fb;
  --blue-pale: #f4fbff;
  --ink: #12232e;
  --muted: #60727d;
  --cream: #fbf7f0;
  --sand: #eadfce;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(15, 63, 89, 0.18);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Poppins', Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(28, 136, 191, 0.15);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}
.brand-image img {
  display: block;
  width: clamp(180px, 18vw, 280px);
  height: auto;
}
.footer-brand.brand-image img {
  width: clamp(180px, 16vw, 260px);
}

.site-nav { display: flex; align-items: center; gap: 26px; font-weight: 700; }
.site-nav a { color: var(--blue-dark); }
.site-nav a:hover { color: var(--blue); }
.nav-cta {
  padding: 10px 16px;
  color: var(--white) !important;
  background: var(--blue);
  border-radius: 999px;
}
.nav-toggle { display: none; }

.hero {
  min-height: 840px;
  position: relative;
  display: grid;
  align-items: end;
  padding: 150px clamp(20px, 6vw, 92px) 92px;
  overflow: hidden;
}
.hero-media,
.hero-overlay { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 47, 67, 0.86) 0%, rgba(22, 63, 90, 0.52) 40%, rgba(22, 63, 90, 0.08) 78%),
    linear-gradient(0deg, rgba(18, 35, 46, 0.56), rgba(18, 35, 46, 0.02) 48%);
}
.hero-content {
  position: relative;
  max-width: 760px;
  color: var(--white);
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero .eyebrow { color: #b6e6f8; }
h1, h2, h3 { line-height: 1.04; margin: 0; }
h1 { font-size: clamp(3rem, 6.7vw, 6.5rem); letter-spacing: -0.075em; }
h2 { font-size: clamp(2rem, 4vw, 3.7rem); letter-spacing: -0.055em; color: var(--blue-dark); }
h3 { font-size: 1.35rem; letter-spacing: -0.03em; color: var(--blue-dark); }
.hero-copy { max-width: 640px; margin: 24px 0 0; font-size: clamp(1.1rem, 2vw, 1.35rem); color: rgba(255,255,255,0.9); }
.hero-archers-logo {
  display: inline-flex;
  margin: 26px 0 0;
  padding: 10px 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 18px;
  backdrop-filter: blur(6px);
}
.hero-archers-logo img {
  display: block;
  width: min(320px, 62vw);
  height: auto;
  border-radius: 8px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--blue); color: var(--white); box-shadow: 0 14px 28px rgba(28, 136, 191, 0.32); }
.button-secondary { background: rgba(255,255,255,0.92); color: var(--blue-dark); }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 1180px;
  margin: -54px auto 0;
  position: relative;
  z-index: 2;
  padding: 0 clamp(16px, 3vw, 32px);
}
.trust-strip div {
  background: var(--white);
  padding: 28px;
  box-shadow: var(--shadow);
}
.trust-strip div:first-child { border-radius: 22px 0 0 22px; }
.trust-strip div:last-child { border-radius: 0 22px 22px 0; }
.trust-strip strong { display: block; color: var(--blue-dark); font-size: 1.05rem; }
.trust-strip span { color: var(--muted); font-size: 0.92rem; }

.section { padding: 100px clamp(20px, 6vw, 92px); }
.intro-section,
.split-section,
.exclusive-section { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.section-text p:not(.eyebrow), .section-heading p { color: var(--muted); font-size: 1.05rem; }
.section-text.wide { max-width: 960px; margin: 0 auto; }
.section-heading { max-width: 820px; margin: 0 auto 42px; text-align: center; }

.feature-card,
.product-card,
.scale-item,
.contact-form,
.diagram-panel {
  background: var(--white);
  border: 1px solid rgba(28, 136, 191, 0.13);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}
.feature-card { padding: 28px; }
.feature-card.image-card { display: grid; grid-template-columns: 0.9fr 1fr; gap: 22px; align-items: center; }
.feature-card img { border-radius: 22px; background: var(--blue-pale); }
.feature-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  color: var(--white);
  background: var(--blue);
  border-radius: 18px;
  font-size: 1.7rem;
}

.product-section { background: var(--blue-soft); }
.cards { display: grid; gap: 24px; }
.three-col { grid-template-columns: repeat(3, 1fr); }
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 22px;
  overflow: hidden;
}
.product-card:before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--blue), #aee4f5);
}
.product-image { margin: 0 0 20px; background: var(--blue-pale); border-radius: 22px; overflow: hidden; }
.product-image img { width: 100%; aspect-ratio: 1 / 0.78; object-fit: cover; }
.product-badge {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.product-badge.soft { background: #eef8fc; color: #1c88bf; }
.product-badge.medium { background: #e8f5fb; color: #163f5a; }
.product-badge.firm { background: #edf0f2; color: #2f3a40; }
.product-card p, .product-card li { color: var(--muted); }
.product-card ul { padding-left: 18px; }
.text-link { color: var(--blue); font-weight: 900; }

.product-shop-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  min-height: 46px;
  margin-top: auto;
  padding: 12px 26px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(28, 136, 191, 0.26);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.product-shop-button:hover {
  transform: translateY(-2px);
  background: var(--blue-dark);
  box-shadow: 0 16px 30px rgba(22, 63, 90, 0.28);
}

.split-section { background: var(--white); }
.image-panel { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.image-panel img { aspect-ratio: 1.15 / 1; object-fit: cover; width: 100%; }
.mini-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 30px; }
.mini-grid div { padding: 20px; background: var(--blue-soft); border-radius: 20px; }
.mini-grid strong { display: block; color: var(--blue-dark); }
.mini-grid span { display: block; margin-top: 6px; color: var(--muted); font-size: 0.92rem; }

.inside-section { background: linear-gradient(180deg, var(--cream), var(--white)); }
.diagram-tabs { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin: 0 0 28px; }
.tab-button {
  border: 1px solid rgba(28, 136, 191, .22);
  background: var(--white);
  color: var(--blue-dark);
  padding: 12px 18px;
  border-radius: 999px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}
.tab-button.active { background: var(--blue); color: var(--white); }
.diagram-panels { max-width: 1180px; margin: 0 auto; }
.diagram-panel { display: none; grid-template-columns: 1.1fr .9fr; gap: 34px; align-items: center; padding: 28px; }
.diagram-panel.active { display: grid; }
.diagram-panel img { border-radius: 22px; background: var(--blue-pale); width: 100%; }
.tick-list { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 10px; }
.tick-list li { color: var(--muted); }
.tick-list li:before { content: '✓'; color: var(--blue); font-weight: 900; margin-right: 9px; }

.comfort-section { background: var(--cream); }
.comfort-scale { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1040px; margin: 0 auto; }
.scale-item { padding: 30px; }
.scale-item span { display: block; color: var(--blue-dark); font-size: 1.5rem; font-weight: 900; }
.scale-item p { color: var(--muted); }
.scale-item.active { background: var(--blue); color: var(--white); transform: translateY(-8px); }
.scale-item.active span,
.scale-item.active p { color: var(--white); }

.gallery-section { background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-grid img { width: 100%; aspect-ratio: 1 / 1.05; object-fit: cover; border-radius: 24px; box-shadow: var(--shadow); }

.seo-section { background: var(--white); }
.exclusive-section { background: var(--blue-deep); color: var(--white); border-radius: var(--radius); margin: 0 clamp(20px, 6vw, 92px) 80px; padding: 56px; }
.exclusive-section h2, .exclusive-section p { color: var(--white) !important; }
.exclusive-section .eyebrow { color: #b6e6f8; }

.enquiry-section { padding-top: 0; }
.contact-form { max-width: 860px; margin: 0 auto; padding: 34px; display: grid; gap: 18px; }
.contact-form label { display: grid; gap: 8px; color: var(--blue-dark); font-weight: 700; }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(28, 136, 191, 0.22);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
  background: #fbfdfe;
}
textarea { resize: vertical; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 48px clamp(20px, 6vw, 92px);
  color: rgba(255,255,255,0.74);
  background: #0b2f43;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; align-items: start; }
.footer-links a { color: var(--white); font-weight: 800; }
.footer-brand-block { max-width: 420px; }
.footer-stockist { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.footer-stockist-label { color: rgba(255,255,255,0.8); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.footer-stockist-logo { display: inline-flex; padding: 10px 12px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16); border-radius: 18px; }
.footer-stockist-logo img { display: block; width: 220px; max-width: 100%; height: auto; border-radius: 8px; }

@media (max-width: 1060px) {
  .three-col, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card.image-card { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
  .site-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    background: var(--white);
  }
  .site-nav.open { display: flex; }
  .nav-toggle { display: inline-flex; border: 0; border-radius: 999px; padding: 10px 14px; background: var(--blue-soft); color: var(--blue-dark); font-weight: 900; }
  .hero { min-height: 720px; }
  .trust-strip, .comfort-scale, .intro-section, .split-section, .exclusive-section, .diagram-panel { grid-template-columns: 1fr; }
  .trust-strip div, .trust-strip div:first-child, .trust-strip div:last-child { border-radius: 22px; }
  .mini-grid { grid-template-columns: 1fr; }
  .exclusive-section { margin-left: 20px; margin-right: 20px; }
  .site-footer { flex-direction: column; }
}

@media (max-width: 620px) {
  .hero { min-height: 650px; padding-bottom: 54px; }
  .hero-overlay { background: linear-gradient(0deg, rgba(11,47,67,.94), rgba(11,47,67,.35)); }
  .hero-actions, .button { width: 100%; }
  .trust-strip { margin-top: 0; padding-top: 18px; }
  .section { padding: 68px 20px; }
  .exclusive-section { padding: 34px 24px; }
  .three-col, .gallery-grid { grid-template-columns: 1fr; }
  h1 { font-size: clamp(2.6rem, 16vw, 4rem); }
}


.shared-features-section {
  background: var(--white);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.feature-grid article {
  padding: 24px;
  background: var(--blue-pale);
  border: 1px solid rgba(28, 136, 191, 0.14);
  border-radius: 22px;
  box-shadow: 0 16px 38px rgba(15, 63, 89, 0.08);
}

.feature-grid strong {
  display: block;
  color: var(--blue-dark);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.feature-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
}

.product-card ul {
  margin-bottom: 24px;
}

@media (max-width: 980px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.footer-brand-image img {
  background: #ffffff;
  padding: 8px 10px;
  border-radius: 10px;
}

.reviews-hero {
  min-height: 560px;
  display: grid;
  align-items: end;
  padding: 150px clamp(20px, 6vw, 92px) 76px;
  background:
    linear-gradient(90deg, rgba(11, 47, 67, 0.9), rgba(22, 63, 90, 0.48), rgba(22, 63, 90, 0.18)),
    url('assets/gallery-room.jpg') center/cover no-repeat;
  color: var(--white);
}

.reviews-hero-content {
  max-width: 780px;
}

.reviews-hero h1 {
  color: var(--white);
}

.reviews-hero p:not(.eyebrow) {
  max-width: 660px;
  margin: 24px 0 32px;
  color: rgba(255,255,255,0.9);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.reviews-intro {
  background: var(--cream);
  padding-bottom: 40px;
}

.reviews-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 860px;
  margin: 34px auto 0;
}

.reviews-summary div {
  padding: 24px;
  background: var(--white);
  border-radius: 22px;
  text-align: center;
  box-shadow: var(--shadow);
}

.reviews-summary strong {
  display: block;
  color: var(--blue);
  font-size: 2.2rem;
  line-height: 1;
}

.reviews-summary span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.reviews-section {
  padding-top: 60px;
  background: var(--blue-soft);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.review-card {
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(28, 136, 191, 0.13);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.review-stars {
  margin-bottom: 16px;
  color: #16a34a;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}

.review-card p {
  color: var(--ink);
  font-size: 0.98rem;
  margin: 0;
}

.review-card span {
  margin-top: auto;
  padding-top: 20px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

@media (max-width: 1180px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .reviews-grid,
  .reviews-summary {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .reviews-grid,
  .reviews-summary {
    grid-template-columns: 1fr;
  }
  .reviews-hero {
    min-height: 520px;
    padding-bottom: 54px;
  }
}

.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid rgba(28, 136, 191, 0.28);
  border-radius: 999px;
  color: var(--blue-dark) !important;
  font-weight: 900;
  white-space: nowrap;
}

.header-phone:hover {
  color: var(--white) !important;
  background: var(--blue);
}

.review-meta {
  display: grid;
  gap: 3px;
  margin-top: auto;
  padding-top: 20px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.review-meta strong {
  display: block;
  color: var(--blue-dark);
  font-size: 0.9rem;
}

.review-meta em {
  display: block;
  color: var(--muted);
  font-style: normal;
}

.review-card .review-meta {
  margin-top: auto;
  padding-top: 20px;
}

@media (max-width: 980px) {
  .header-phone {
    justify-content: center;
    width: 100%;
  }
}
