:root {
  --navy: #082a43;
  --gold: #b58a48;
  --paper: #faf7f0;
  --ink: #173449;
  --muted: #566570;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 6px;
}
img {
  display: block;
  max-width: 100%;
}
.announcement {
  text-align: center;
  background: var(--navy);
  color: #e5cfaa;
  font-size: 12px;
  letter-spacing: 0.18em;
  padding: 10px 20px;
}
header {
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #d9d7cf;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  height: 66px;
  width: 66px;
  object-fit: contain;
}
.brand span {
  font-family: Georgia, serif;
  font-size: 28px;
  letter-spacing: 0.09em;
  line-height: 1.2;
}
.brand small {
  display: block;
  font-family: Arial, sans-serif;
  letter-spacing: 0.15em;
  font-size: 10px;
  margin-top: 6px;
}
nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
}
.nav-cta {
  border-bottom: 1px solid var(--gold);
  padding: 8px 0;
}
.nav-cta span {
  margin-left: 20px;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1600px;
  margin: auto;
  min-height: 650px;
}
.hero-copy {
  padding: 72px 10% 40px;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 24px;
}
h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}
h1 {
  font-size: clamp(54px, 5.9vw, 92px);
  letter-spacing: -0.045em;
  line-height: 1.02;
  margin: 0 0 30px;
}
em {
  font-weight: 400;
  color: var(--gold);
}
.intro {
  max-width: 340px;
  color: var(--muted);
  margin: 0 0 32px;
}
.button {
  display: inline-flex;
  gap: 45px;
  align-items: center;
  padding: 16px 25px;
  background: var(--navy);
  color: white;
  font-size: 14px;
}
.button:hover {
  background: #15405c;
}
.hero-caption {
  font-size: 11px;
  letter-spacing: 0.08em;
  margin-top: 36px;
  color: var(--muted);
}
.hero-art {
  position: relative;
  overflow: hidden;
}
.hero-art > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-note {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--paper);
  padding: 9px 15px;
  font-size: 10px;
  letter-spacing: 0.12em;
}
.collection {
  padding: 95px 5%;
  max-width: 1600px;
  margin: auto;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 28px;
}
h2 {
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0;
}
.section-heading > p {
  max-width: 340px;
  color: var(--muted);
  font-size: 16px;
}
.demo-note {
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid #d9d7cf;
  padding-top: 16px;
  margin-bottom: 36px;
  max-width: 980px;
}
.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.product-photo {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #e6e2d9;
}
.product-photo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  transition: transform 0.4s;
}
.product:hover img {
  transform: scale(1.025);
}
.product-photo > span {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--navy);
  color: #e6d2b0;
  padding: 8px 14px;
  font-size: 11px;
  letter-spacing: 0.13em;
}
.product-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}
.product-title h3 {
  font-size: 26px;
  margin: 0;
}
.product-title > span {
  font-size: 14px;
  color: var(--muted);
  white-space: nowrap;
}
.product > p {
  color: var(--muted);
  font-size: 15px;
  margin: 14px 0 22px;
  min-height: 48px;
}
.price {
  display: flex;
  flex-direction: column;
}
.price strong {
  font-size: 24px;
  font-weight: 400;
}
.price small {
  font-size: 12px;
  color: var(--muted);
}
.product > a {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  border-top: 1px solid #ccc8bf;
  padding: 15px 0;
  font-size: 14px;
}
.essence {
  background: var(--navy);
  color: var(--paper);
  padding: 85px 7%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11%;
}
.essence-copy > p:not(.eyebrow) {
  max-width: 470px;
  color: #d0dae1;
  font-size: 16px;
  margin-top: 28px;
}
.essence em {
  color: #d1ae71;
}
.details {
  padding-top: 6px;
}
.details dl {
  margin: 0;
}
.details dl > div {
  display: flex;
  gap: 28px;
  padding: 27px 0;
  border-top: 1px solid #365167;
}
.details dt {
  font-family: Georgia, serif;
  color: #d1ae71;
  font-size: 20px;
}
.details dd {
  margin: 0;
}
.details h3 {
  font-size: 25px;
  margin: 0 0 12px;
}
.details p {
  margin: 0;
  color: #c3d0da;
  font-size: 15px;
}
.details > a {
  display: inline-block;
  border-bottom: 1px solid #c8a164;
  padding-bottom: 8px;
  margin-top: 30px;
  font-size: 14px;
}
.details > a span {
  margin-left: 30px;
}
.campaign {
  padding: 60px 5%;
  background: #ede8de;
}
.campaign img {
  width: 100%;
  height: auto;
}
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 35px 5%;
}
.wordmark {
  font-family: Georgia, serif;
  font-size: 36px;
  letter-spacing: 0.09em;
}
footer p {
  font-size: 14px;
}
footer p span {
  color: var(--muted);
  font-size: 12px;
}
footer > a:last-child {
  font-size: 14px;
}
@media (min-width: 1500px) {
  .hero {
    min-height: 740px;
  }
}
@media (max-width: 850px) {
  nav {
    gap: 18px;
  }
  .nav-cta {
    display: none;
  }
  .hero-copy {
    padding: 45px 8% 35px;
  }
  h1 {
    font-size: 56px;
  }
  .hero {
    min-height: 530px;
  }
  .hero-caption {
    font-size: 10px;
  }
  .products {
    gap: 20px;
  }
  .product-title {
    align-items: start;
    flex-direction: column;
    gap: 4px;
  }
  .product-title h3 {
    font-size: 24px;
  }
  .essence {
    gap: 7%;
    padding: 60px 6%;
  }
  .details h3 {
    font-size: 22px;
  }
}
@media (max-width: 600px) {
  header {
    padding: 14px 5%;
  }
  .brand img {
    width: 48px;
    height: 48px;
  }
  .brand span {
    font-size: 22px;
  }
  .brand small {
    font-size: 8px;
  }
  nav {
    gap: 15px;
    font-size: 12px;
  }
  .hero {
    display: flex;
    flex-direction: column;
  }
  .hero-copy {
    padding: 38px 6% 30px;
  }
  h1 {
    font-size: 60px;
  }
  .hero .intro {
    max-width: 100%;
    font-size: 16px;
  }
  .hero-art {
    height: auto;
    aspect-ratio: 1;
  }
  .hero-caption {
    margin-bottom: 0;
  }
  .collection {
    padding: 58px 6%;
  }
  .section-heading {
    display: block;
  }
  .section-heading > p {
    max-width: 100%;
    margin-top: 24px;
  }
  h2 {
    font-size: 39px;
  }
  .products {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .product-title {
    flex-direction: row;
  }
  .product > p {
    min-height: 0;
  }
  .product-title h3 {
    font-size: 28px;
  }
  .essence {
    display: block;
    padding: 55px 6%;
  }
  .details {
    margin-top: 40px;
  }
  .details dl > div {
    gap: 20px;
  }
  .campaign {
    padding: 25px 0;
  }
  footer {
    flex-wrap: wrap;
    padding: 30px 6%;
    gap: 12px;
  }
  footer p {
    width: 100%;
    order: 3;
    margin: 10px 0;
  }
  .eyebrow {
    font-size: 11px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .product-photo img {
    transition: none;
  }
}

.natural-collection {
  position: relative;
}
.natural-seal {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 34px 0 20px;
  padding: 18px 22px;
  background: var(--navy);
  color: var(--paper);
  border-left: 5px solid var(--gold);
}
.natural-seal span {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: #d6bd8f;
}
.natural-seal strong {
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 400;
}
.natural-seal small {
  margin-left: auto;
  color: #c9d4db;
  font-size: 13px;
}
.section-heading > p {
  max-width: 390px;
}
.price strong {
  font-family: Georgia, serif;
  font-size: 30px;
  color: var(--navy);
}
.flavored {
  padding: 90px 5%;
  background: #071f33;
  color: var(--paper);
}
.flavored-heading {
  max-width: 1440px;
  margin: 0 auto 45px;
}
.flavored-heading > p {
  color: #c1ced7;
}
.flavored-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1440px;
  margin: auto;
}
.flavor-card {
  background: #f6f2e9;
  color: var(--ink);
  border-top: 4px solid var(--gold);
}
.flavor-photo {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f4efe6;
}
.flavor-photo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  transition: transform 0.4s;
}
.flavor-card:hover img {
  transform: scale(1.025);
}
.flavor-photo span {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(7, 31, 51, 0.92);
  color: #e2c791;
  padding: 8px 12px;
  font-size: 11px;
  letter-spacing: 0.13em;
}
.flavor-copy {
  padding: 25px 26px 28px;
}
.flavor-copy .eyebrow {
  margin-bottom: 9px;
}
.flavor-copy h3 {
  font-size: 28px;
  margin: 0;
}
.flavor-copy > p:not(.eyebrow) {
  margin: 7px 0 22px;
  color: var(--muted);
}
.athena {
  border-top-color: #287357;
}
.poseidon {
  border-top-color: #278ca7;
}
.artemis {
  border-top-color: #61508d;
}
@media (max-width: 850px) {
  nav > a:nth-child(2) {
    display: none;
  }
  .flavored-products {
    gap: 20px;
  }
  .natural-seal {
    flex-wrap: wrap;
  }
  .natural-seal small {
    margin-left: 0;
    width: 100%;
  }
}
@media (max-width: 600px) {
  nav > a:not(:first-child) {
    display: none;
  }
  .flavored {
    padding: 58px 6%;
  }
  .flavored-products {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .natural-seal {
    display: block;
  }
  .natural-seal strong,
  .natural-seal small {
    display: block;
    margin-top: 7px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .flavor-photo img {
    transition: none;
  }
}
