:root {
  --navy: #163a6b;
  --navy-deep: #0e2748;
  --blue: #1e5ba8;
  --teal: #00a3a0;
  --green: #5aa63a;
  --orange: #e89b12;
  --paper: #f5f7fb;
  --white: #ffffff;
  --ink: #1a2332;
  --muted: #5c6b7a;
  --line: #e2e8f0;
  --shadow: 0 20px 50px rgba(14, 39, 72, 0.1);
  --shadow-sm: 0 8px 24px rgba(14, 39, 72, 0.08);
  --radius: 18px;
  --header-h: 88px;
  --max: 1180px;
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

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

button,
input,
select,
textarea {
  font-family: inherit;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--navy);
  color: #fff;
  padding: 8px 14px;
  z-index: 1000;
  border-radius: 8px;
}

.skip-link:focus {
  top: 12px;
}

/* Brand stripe */
.brand-stripe {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  height: 5px;
}

.brand-stripe span:nth-child(1) { background: var(--teal); }
.brand-stripe span:nth-child(2) { background: var(--blue); }
.brand-stripe span:nth-child(3) { background: var(--green); }
.brand-stripe span:nth-child(4) { background: var(--orange); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-link img {
  height: 62px;
  width: auto;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: 0.2s ease;
}

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

.site-nav a,
.drop-btn {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 10px;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, color 0.2s ease;
  background: none;
  border: 0;
  cursor: pointer;
}

.site-nav a:hover,
.drop-btn:hover,
.site-nav a.active,
.drop-btn.active {
  background: var(--paper);
  color: var(--blue);
}

.site-nav a.btn-nav {
  background: var(--orange);
  color: #fff;
  margin-left: 8px;
  font-weight: 600;
}

.site-nav a.btn-nav:hover {
  background: #d18b0c;
  color: #fff;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 8px;
  z-index: 20;
}

.dropdown.open .dropdown-menu,
.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.92rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}

.hero img.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 39, 72, 0.88) 0%, rgba(14, 39, 72, 0.55) 48%, rgba(14, 39, 72, 0.18) 100%),
    linear-gradient(180deg, rgba(14, 39, 72, 0.15) 0%, rgba(14, 39, 72, 0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 24px 72px;
  width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 16px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--orange);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.03em;
  max-width: 14ch;
}

.hero .tagline {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 500;
  color: var(--orange);
  margin: 18px 0 12px;
}

.hero p.lead {
  max-width: 52ch;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 32px;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 13px 22px;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 24px rgba(232, 155, 18, 0.28);
}

.btn-primary:hover {
  background: #d18b0c;
}

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

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-navy {
  background: var(--navy);
  color: #fff;
}

.btn-navy:hover {
  background: var(--blue);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 39, 72, 0.88) 0%, rgba(14, 39, 72, 0.45) 70%, rgba(14, 39, 72, 0.2) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 24px 48px;
  width: 100%;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.page-hero p {
  max-width: 58ch;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
}

.crumb {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}

.crumb a:hover {
  color: var(--orange);
}

/* Layout */
main {
  flex: 1;
}

.section {
  padding: 88px 24px;
}

.section-tight {
  padding: 56px 24px;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  max-width: 640px;
  margin-bottom: 44px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.03em;
  color: var(--navy);
  line-height: 1.15;
}

.section-head p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 1.08rem;
}

.kicker {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 10px;
}

.bg-paper {
  background: var(--paper);
}

.bg-navy {
  background: var(--navy-deep);
  color: #fff;
}

.bg-navy .section-head h2,
.bg-navy .section-head p {
  color: #fff;
}

.bg-navy .section-head p {
  color: rgba(255, 255, 255, 0.78);
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.stat {
  background: #fff;
  padding: 28px 22px;
  text-align: center;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--navy);
  letter-spacing: -0.03em;
}

.stat span {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.shop-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.shop-card .thumb {
  height: 190px;
  overflow: hidden;
  position: relative;
}

.shop-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.shop-card:hover .thumb img {
  transform: scale(1.05);
}

.shop-card .accent {
  height: 5px;
}

.shop-card .body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.shop-card h3 {
  font-family: var(--font-display);
  font-size: 1.22rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.shop-card p {
  color: var(--muted);
  font-size: 0.98rem;
  flex: 1;
}

.shop-card .more {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--blue);
}

.shop-card:hover .more {
  color: var(--orange);
}

.badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--paper);
  color: var(--navy);
  padding: 4px 9px;
  border-radius: 999px;
}

/* Split / about */
.photo-frame {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}

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

.value {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  border: 1px solid var(--line);
}

.value .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-bottom: 14px;
}

.value h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 8px;
}

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

/* Shop detail */
.detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.prose h2 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.7rem;
  letter-spacing: -0.02em;
  margin: 8px 0 16px;
}

.prose p {
  margin-bottom: 16px;
  color: #334155;
  font-size: 1.05rem;
}

.service-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 20px 0 28px;
}

.service-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--paper);
  padding: 12px 14px;
  border-radius: 12px;
}

.service-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.side-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 110px;
}

.side-card h3 {
  font-family: var(--font-display);
  color: var(--navy);
  margin-bottom: 8px;
}

.side-card p {
  color: var(--muted);
  margin-bottom: 18px;
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.contact-lines a {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--navy);
  font-weight: 600;
}

.contact-lines a:hover {
  color: var(--blue);
}

.belong {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--muted);
}

.belong strong {
  color: var(--navy);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
}

.contact-block {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.contact-block h2 {
  font-family: var(--font-display);
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-block > p {
  color: var(--muted);
  margin-bottom: 22px;
}

.info-row {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.info-row:last-of-type {
  border-bottom: 0;
}

.info-row .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--paper);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.info-row h3 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.info-row a,
.info-row p {
  color: var(--navy);
  font-weight: 600;
  font-size: 1.05rem;
}

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

label {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  display: grid;
  gap: 6px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 1rem;
  background: #fff;
  color: var(--ink);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(30, 91, 168, 0.25);
  border-color: var(--blue);
}

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

.form-note {
  font-size: 0.88rem;
  color: var(--muted);
}

.form-success {
  display: none;
  background: #ecfdf3;
  color: #166534;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 600;
}

.form-error {
  display: none;
  background: #fef2f2;
  color: #991b1b;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 600;
}

/* CTA band */
.cta-band {
  background:
    linear-gradient(120deg, var(--navy-deep), var(--blue));
  color: #fff;
  padding: 64px 24px;
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 24px;
}

.cta-band .tag {
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 8px;
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.82);
  padding: 48px 24px 20px;
  margin-top: auto;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer-logo {
  background: #fff;
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.footer-logo img {
  height: 56px;
  width: auto;
}

.site-footer h4 {
  font-family: var(--font-display);
  color: #fff;
  margin-bottom: 14px;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.site-footer a:hover {
  color: var(--orange);
}

.copyright {
  max-width: var(--max);
  margin: 36px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.duty {
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 600;
}

/* Shop accent helpers */
.accent-teal { background: var(--teal); }
.accent-blue { background: var(--blue); }
.accent-green { background: var(--green); }
.accent-orange { background: var(--orange); }
.accent-navy { background: var(--navy); }

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

.related a {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  display: block;
}

.related a:hover {
  border-color: var(--blue);
}

.related strong {
  display: block;
  font-family: var(--font-display);
  color: var(--navy);
}

.related span {
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .grid-3,
  .stats,
  .values,
  .related,
  .footer-grid,
  .grid-2,
  .detail-grid,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    gap: 4px;
  }

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

  .site-nav a.btn-nav {
    margin-left: 0;
    text-align: center;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: 0;
    display: none;
    padding: 0 0 0 12px;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .hero {
    min-height: 70vh;
  }

  .grid-3,
  .stats,
  .values,
  .related,
  .footer-grid,
  .grid-2,
  .detail-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .logo-link img {
    height: 50px;
  }

  .section {
    padding: 64px 18px;
  }

  .side-card {
    position: static;
  }
}
