:root {
  --ink: #071321;
  --deep: #0b1726;
  --blue: #0b4f9f;
  --gold: #c99016;
  --gold-light: #f4c84b;
  --soft: #fff8e5;
  --paper: #ffffff;
  --muted: #64748b;
  --line: #dbe7f0;
  --shadow: 0 24px 70px rgba(7, 19, 33, 0.14);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: #f8fbff;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.site-nav {
  position: fixed;
  z-index: 30;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 24px;
  background: rgba(7, 19, 33, 0.66);
  color: #ffffff;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  white-space: nowrap;
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 14px;
  background: #ffffff;
  padding: 5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.nav-links .nav-cta {
  color: #071321;
  background: var(--gold-light);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  place-items: center;
  padding: 11px;
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 3px 0;
  background: #ffffff;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 96vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 19, 33, 0.94) 0%, rgba(7, 19, 33, 0.78) 42%, rgba(7, 19, 33, 0.12) 100%),
    linear-gradient(180deg, rgba(7, 19, 33, 0.12), rgba(7, 19, 33, 0.36));
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding-top: 110px;
  color: #ffffff;
}

.eyebrow {
  color: var(--gold-light);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin-top: 12px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(54px, 10vw, 124px);
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 660px;
  margin-top: 24px;
  color: #d8e6f5;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.58;
}

.rating-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.stars {
  color: #f4c84b;
}

.rating-line a {
  color: #f8d977;
  font-weight: 900;
}

.hero-actions,
.visit {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 32px;
}

.primary-btn,
.secondary-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 24px;
  text-decoration: none;
  font-weight: 900;
}

.primary-btn {
  color: #071321;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 16px 36px rgba(201, 144, 22, 0.30);
}

.secondary-btn {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
}

.secondary-btn.dark {
  color: var(--ink);
  background: #fff8e5;
  border-color: #ead292;
}

.intro-strip {
  width: min(1180px, calc(100% - 36px));
  margin: -54px auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.intro-strip div {
  min-height: 124px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.intro-strip strong {
  display: block;
  font-size: 24px;
}

.intro-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.45;
}

.section,
.story-band,
.visit {
  width: min(1180px, calc(100% - 36px));
  margin: 90px auto 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) 1fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.section h2,
.story-copy h2,
.visit h2 {
  font-size: clamp(34px, 6vw, 70px);
  line-height: 0.96;
  letter-spacing: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.product-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(7, 19, 33, 0.07);
}

.product-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--soft);
  color: #071f46;
  font-weight: 900;
}

.product-card h3 {
  margin-top: 26px;
  font-size: 24px;
}

.product-card p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.55;
}

.story-band {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.54fr);
  gap: 24px;
  align-items: stretch;
  padding: clamp(26px, 5vw, 48px);
  border-radius: 34px;
  background: var(--deep);
  color: #ffffff;
  overflow: hidden;
}

.story-copy p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 20px;
  color: #c8d7e8;
  line-height: 1.62;
  font-size: 18px;
}

.story-panel {
  display: grid;
  gap: 12px;
}

.story-panel div {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.story-panel strong {
  display: block;
  font-size: 34px;
}

.story-panel span {
  display: block;
  margin-top: 5px;
  color: #c8d7e8;
}

.reviews .review-card {
  border-radius: 30px;
  padding: clamp(24px, 5vw, 44px);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.review-card p {
  max-width: 760px;
  margin: 14px 0 22px;
  font-size: 20px;
  color: #415166;
  line-height: 1.55;
}

.visit {
  justify-content: space-between;
  gap: 28px;
  padding: clamp(26px, 5vw, 44px);
  border-radius: 34px;
  background: linear-gradient(135deg, #fff6d8, #ffffff 48%, #f1f6ff);
  box-shadow: var(--shadow);
}

.visit div {
  max-width: 720px;
}

.visit p:not(.eyebrow) {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.58;
  font-size: 18px;
}

footer {
  width: min(1180px, calc(100% - 36px));
  margin: 50px auto 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
}

footer span {
  color: var(--ink);
  font-weight: 900;
}

@media (max-width: 900px) {
  .menu-btn {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 22px;
    background: rgba(7, 19, 33, 0.96);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    justify-content: flex-start;
  }

  .intro-strip,
  .section-head,
  .product-grid,
  .story-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 820px;
  }
}

@media (max-width: 560px) {
  .site-nav {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand span {
    font-size: 14px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(7, 19, 33, 0.9), rgba(7, 19, 33, 0.52));
  }

  .hero-inner {
    padding-top: 128px;
  }

  .intro-strip {
    margin-top: 18px;
  }

  .section,
  .story-band,
  .visit {
    margin-top: 54px;
  }

  footer {
    flex-direction: column;
  }
}
