:root {
  --blue: #0a3d91;
  --blue-deep: #06275c;
  --blue-ink: #041833;
  --gold: #c4a03a;
  --gold-soft: #e0c56a;
  --cream: #f6f0e4;
  --paper: #fffdf8;
  --ink: #1a1a1a;
  --muted: #5c5a55;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

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

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

/* NAV */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 28px;
  background: linear-gradient(180deg, rgba(4, 24, 51, 0.72), transparent);
  color: white;
}

.nav-logo {
  width: 168px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold-soft);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--blue-ink);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: white;
  background:
    linear-gradient(180deg, rgba(4, 24, 51, 0.35) 0%, rgba(6, 39, 92, 0.55) 50%, rgba(4, 24, 51, 0.92) 100%),
    url("https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?auto=format&fit=crop&w=2000&q=80") center/cover no-repeat;
}

.hero-logo {
  width: min(420px, 78vw);
  margin: 0 auto 28px;
}

.eyebrow {
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold-soft);
  margin-bottom: 14px;
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.05;
  margin-bottom: 16px;
}

.hero p {
  max-width: 520px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.86);
}

.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--blue-ink);
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.btn.ghost {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.45);
  margin-left: 10px;
}

.btn:hover {
  filter: brightness(1.08);
}

/* SECTIONS */
section {
  padding: 92px 0;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
}

.gold-rule {
  width: 72px;
  height: 2px;
  background: var(--gold);
  margin: 16px 0 24px;
}

/* STORY */
.story {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.story p {
  color: var(--muted);
  margin-bottom: 16px;
}

.story-card {
  background: var(--blue);
  color: white;
  min-height: 420px;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-image:
    linear-gradient(180deg, rgba(6, 39, 92, 0.15), rgba(4, 24, 51, 0.88)),
    url("https://images.unsplash.com/photo-1511920170033-f8396924c348?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

.story-card span {
  color: var(--gold-soft);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

/* BLENDS */
.blends {
  background: var(--cream);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(20, 20, 20, 0.06);
}

.card img {
  height: 210px;
  width: 100%;
  object-fit: cover;
}

.card-body {
  padding: 22px;
}

.card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.tag {
  display: inline-block;
  color: var(--blue);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* FLAG STRIP */
.passion {
  background: var(--blue-deep);
  color: white;
  text-align: center;
}

.passion .flags {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 22px 0 10px;
}

.passion .flags span {
  width: 42px;
  height: 28px;
  display: inline-block;
}

.it {
  background: linear-gradient(90deg, #009246 33.3%, #fff 33.3% 66.6%, #ce2b37 66.6%);
}

.gr {
  background: repeating-linear-gradient(180deg, #0d5ead 0 4px, #fff 4px 8px);
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

form {
  display: grid;
  gap: 12px;
}

input,
textarea {
  width: 100%;
  border: 1px solid #ddd4c4;
  background: white;
  padding: 14px 16px;
  font: inherit;
  border-radius: 10px;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.meta {
  color: var(--muted);
}

.meta strong {
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
}

.meta p + p {
  margin-top: 18px;
}

/* FOOTER */
footer {
  background: var(--blue-ink);
  color: rgba(255, 255, 255, 0.75);
  padding: 40px 0 28px;
}

.foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.foot img {
  width: 150px;
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }
  .story,
  .grid-3,
  .contact-grid,
  .foot {
    grid-template-columns: 1fr;
    display: grid;
  }
  .btn.ghost {
    margin-left: 0;
    margin-top: 10px;
  }
}
