/* Concept 05 "Flagship": premium brand layout — tall centred hero with floating
   product cards, category ticker, alternating range features. */
:root {
  --ink: #12312c;
  --muted: #5c716c;
  --teal: #0f4c46;
  --teal-deep: #092e2a;
  --mist: #eef4f2;
  --gold: #c9a24b;
  --line: #d7e2de;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Keep anchor targets clear of the fixed review bar and sticky header */
[id] {
  scroll-margin-top: 150px;
}

body {
  margin: 0;
  padding-top: 52px;
  color: var(--ink);
  background: #ffffff;
  font-family: "Inter", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

figure {
  margin: 0;
}

h1,
h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.02em;
}

em {
  font-style: italic;
}

.kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  padding: 13px 28px;
  border: 1px solid var(--teal);
  border-radius: 999px;
  color: #ffffff;
  background: var(--teal);
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 160ms ease, border-color 160ms ease;
}

.button:hover {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
}

.button--small {
  min-height: 42px;
  padding: 10px 20px;
}

.text-link {
  font-size: 0.86rem;
  font-weight: 700;
}

.text-link:hover {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 5px;
}

/* Header */
.header {
  position: sticky;
  top: 52px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 4vw, 52px);
  border-bottom: 1px solid var(--line);
  background: rgb(255 255 255 / 88%);
  backdrop-filter: blur(10px);
}

.header img {
  width: 132px;
}

.header nav {
  display: flex;
  gap: clamp(18px, 3vw, 40px);
  font-size: 0.86rem;
  font-weight: 600;
}

.header nav a:hover {
  color: var(--teal);
}

/* Hero */
.hero {
  padding: clamp(64px, 8vw, 110px) 24px 0;
  background: linear-gradient(180deg, var(--mist), #ffffff);
  text-align: center;
}

.hero h1 {
  margin: 0 auto;
  max-width: 800px;
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: 1;
}

.hero em {
  color: var(--teal);
}

.hero__copy {
  max-width: 540px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-top: 36px;
}

.hero__phone {
  font-size: 0.92rem;
  font-weight: 700;
}

.hero__phone:hover {
  color: var(--teal);
}

.hero__cards {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(14px, 2.5vw, 30px);
  max-width: 980px;
  margin: clamp(50px, 6vw, 80px) auto 0;
  padding-bottom: 8px;
}

.hero__cards figure {
  width: min(280px, 30%);
  padding: 20px 20px 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 24px 50px rgb(15 60 54 / 12%);
  transition: transform 200ms ease;
}

.hero__cards figure:nth-child(1) {
  transform: rotate(-3deg) translateY(10px);
}

.hero__cards figure:nth-child(3) {
  transform: rotate(3deg) translateY(10px);
}

.hero__cards figure:hover {
  transform: rotate(0deg) translateY(0);
}

.hero__cards img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.hero__cards figcaption {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 600;
  text-align: center;
}

/* Category ticker */
.ticker {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(14px, 2.5vw, 30px);
  padding: 22px 24px;
  border-top: 1px solid var(--teal-deep);
  border-bottom: 1px solid var(--teal-deep);
  color: var(--mist);
  background: var(--teal-deep);
}

.ticker span {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
}

.ticker b {
  color: var(--gold);
  font-size: 0.7rem;
}

/* Alternating features */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  padding: clamp(64px, 8vw, 110px) clamp(20px, 4vw, 40px) 0;
}

.feature--flip .feature__visual {
  order: 2;
}

.feature__visual {
  display: grid;
  place-items: center;
  aspect-ratio: 1.05;
  padding: clamp(36px, 5vw, 64px);
  border-radius: 200px 200px 22px 22px;
  background: var(--mist);
}

.feature__visual--alt {
  border-radius: 22px 22px 200px 200px;
}

.feature__visual img {
  width: min(340px, 82%);
  filter: drop-shadow(0 20px 30px rgb(15 60 54 / 15%));
}

.feature__text h2 {
  max-width: 420px;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.08;
}

.feature__text > p:not(.kicker) {
  max-width: 460px;
  margin: 20px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.feature__text dl {
  display: flex;
  gap: 50px;
  margin: 30px 0;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature__text dt {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.8rem;
}

.feature__text dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

/* Statement band */
.statement {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) 24px clamp(60px, 7vw, 90px);
  text-align: center;
}

.statement h2 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.05;
}

.statement em {
  color: var(--teal);
}

.statement p {
  margin: 20px auto 0;
  max-width: 480px;
  color: var(--muted);
  line-height: 1.7;
}

/* Product shelf */
.shelf {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px) clamp(70px, 8vw, 110px);
}

.shelf__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.shelf__heading h2 {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
}

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

.shelf__grid figure {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--mist);
  transition: border-color 160ms ease, background 160ms ease;
}

.shelf__grid article:hover figure {
  border-color: var(--teal);
  background: #ffffff;
}

.shelf__grid figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.shelf__grid h3 {
  margin: 14px 2px 0;
  font-size: 0.92rem;
  font-weight: 600;
}

.shelf__grid span {
  display: block;
  margin: 6px 2px 0;
  color: var(--muted);
  font-size: 0.78rem;
}

/* Contact panel + footer */
.contact {
  padding: 0 clamp(20px, 4vw, 40px) clamp(70px, 8vw, 100px);
}

.contact__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1160px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 70px);
  border-radius: 26px;
  color: var(--mist);
  background: var(--teal-deep);
}

.contact__card h2 {
  max-width: 480px;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  line-height: 1.1;
}

.contact__copy {
  max-width: 440px;
  margin: 16px 0 0;
  color: #a9c0ba;
  font-size: 0.9rem;
  line-height: 1.7;
}

.contact__actions {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 18px;
}

.contact__card .button {
  border-color: var(--gold);
  color: var(--teal-deep);
  background: var(--gold);
}

.contact__card .button:hover {
  border-color: #ffffff;
  background: #ffffff;
}

.contact__card .text-link:hover {
  color: var(--gold);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 4vw, 52px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.76rem;
}

.footer img {
  width: 104px;
}

.footer p {
  margin: 0;
}

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

  .feature--flip .feature__visual {
    order: 0;
  }

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

  .contact__card {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact__actions {
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .header nav {
    display: none;
  }

  .hero__actions {
    flex-direction: column;
    gap: 20px;
  }

  .hero__cards figure:nth-child(3) {
    display: none;
  }

  .hero__cards figure {
    width: 46%;
  }

  .shelf__grid {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
  }
}
