:root {
  --ink: #10251f;
  --leaf: #1f5b45;
  --azur: #0d7ea8;
  --azur-deep: #0a5f7f;
  --sand: #e8f0ea;
  --mist: #f4f8f6;
  --cream: #f7faf8;
  --white: #ffffff;
  --line: rgba(16, 37, 31, 0.12);
  --shadow: 0 24px 60px rgba(16, 37, 31, 0.18);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Sora", system-ui, sans-serif;
  --radius: 18px;
  --shell: min(1180px, calc(100% - 2.5rem));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(13, 126, 168, 0.12), transparent 60%),
    radial-gradient(900px 420px at 100% 0%, rgba(31, 91, 69, 0.12), transparent 55%),
    linear-gradient(180deg, #eef6f2 0%, var(--cream) 35%, #f8fbf9 100%);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.shell { width: var(--shell); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(247, 250, 248, 0.82);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(247, 250, 248, 0.94);
  box-shadow: 0 10px 30px rgba(16, 37, 31, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}
.brand {
  display: flex;
  align-items: center;
}
.brand img {
  width: 148px;
  height: auto;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.site-nav a {
  font-size: .92rem;
  font-weight: 500;
  opacity: .78;
  position: relative;
}
.site-nav a:hover,
.site-nav a.is-active { opacity: 1; }
.site-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 2px;
  background: linear-gradient(90deg, var(--leaf), var(--azur));
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 6px auto;
  background: var(--ink);
  transition: transform .25s ease;
}

.hero {
  position: relative;
  min-height: min(78vh, 700px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 28, 24, 0.28) 0%, rgba(10, 28, 24, 0.58) 48%, rgba(8, 22, 20, 0.9) 100%),
    linear-gradient(90deg, rgba(8, 22, 20, 0.55) 0%, rgba(13, 126, 168, 0.18) 55%, transparent 100%);
}
.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem 0 3.5rem;
}
.hero-content {
  max-width: 820px;
}
.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.2rem);
  line-height: 0.95;
  margin: 0 0 1.1rem;
  letter-spacing: -0.03em;
  animation: rise .9s ease both;
  color: #ffffff;
  font-weight: 700;
}
.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.2vw, 3.1rem);
  font-weight: 600;
  line-height: 1.15;
  max-width: 18ch;
  animation: rise .9s ease .12s both;
}
.hero p {
  margin: 0 0 1.8rem;
  max-width: 40ch;
  font-size: 1.05rem;
  color: rgba(255,255,255,.9);
  animation: rise .9s ease .22s both;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  animation: rise .9s ease .32s both;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .95rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--azur), var(--azur-deep));
  color: var(--white);
  box-shadow: 0 12px 30px rgba(13, 126, 168, 0.35);
}
.btn-ghost {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
  backdrop-filter: blur(8px);
}
.btn-dark {
  background: var(--ink);
  color: var(--white);
}
.btn-outline {
  border-color: rgba(16, 37, 31, 0.2);
  background: transparent;
}

.section {
  padding: 5rem 0;
}
.section-white {
  background: #ffffff;
}
.section-about {
  padding: 5.5rem 0;
}
.section-head {
  max-width: 640px;
  margin-bottom: 2.5rem;
}
.eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--azur);
  font-weight: 700;
  margin-bottom: .7rem;
}
.section-head h2,
.page-hero h1,
.content-block h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 .8rem;
}
.section-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.7rem); }
.section-head p,
.lede { color: rgba(16, 37, 31, 0.78); font-size: 1.05rem; }

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}
.split-visual {
  position: relative;
  min-height: 420px;
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-visual-emblem {
  background: #ffffff;
  box-shadow: none;
  border: 1px solid rgba(16, 37, 31, 0.08);
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.split-visual-emblem img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.split-visual::before {
  content: "";
  position: absolute;
  inset: auto 12% -8% auto;
  width: 42%;
  height: 42%;
  background: linear-gradient(135deg, var(--azur), var(--leaf));
  opacity: .35;
  filter: blur(40px);
  z-index: 0;
}
.split-visual-emblem::before {
  display: none;
}
.pledges {
  display: grid;
  gap: .85rem;
  margin: 1.5rem 0 2rem;
  padding: 0;
  list-style: none;
}
.pledges li {
  padding-left: 1.35rem;
  position: relative;
}
.pledges li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55rem;
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--leaf), var(--azur));
}

.specialties {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.specialty {
  position: relative;
  min-height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}
.specialty img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
  z-index: -2;
}
.specialty:hover img { transform: scale(1.06); }
.specialty::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(8, 22, 20, 0.88) 100%);
  z-index: -1;
}
.specialty-body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.4rem;
}
.specialty h3 {
  margin: 0 0 .35rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
}
.specialty p { margin: 0; font-size: .92rem; color: rgba(255,255,255,.88); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.product-item {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  transition: transform .25s ease;
}
.product-item:hover { transform: translateY(-4px); }
.product-item figure {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  background: #d9e7df;
}
.product-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-item:hover img { transform: scale(1.05); }
.product-item h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
}
.product-item .cat {
  font-size: .75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--azur);
  font-weight: 700;
}
.product-item p {
  margin: 0;
  color: rgba(16, 37, 31, 0.75);
  font-size: .95rem;
}

.band {
  background: linear-gradient(135deg, #12362c, #0d4d66 55%, #0a5f7f);
  color: var(--white);
  border-radius: 28px;
  padding: 2.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  overflow: hidden;
  position: relative;
}
.band::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -60px;
  top: -80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  pointer-events: none;
}
.band h2 {
  margin: 0 0 .4rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  position: relative;
  z-index: 1;
}
.band p {
  margin: 0;
  max-width: 40ch;
  color: rgba(255,255,255,.88);
  position: relative;
  z-index: 1;
}
.band-cta {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.page-hero {
  padding: 4.5rem 0 2rem;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  max-width: 12ch;
}
.content-block {
  display: grid;
  gap: 1.1rem;
  max-width: 760px;
}
.content-block p { margin: 0; color: rgba(16, 37, 31, 0.82); }
.gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  min-height: 240px;
}
.gallery img:first-child { min-height: 420px; }

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}
.contact-panel {
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.6rem;
}
.contact-panel h2 {
  font-family: var(--font-display);
  margin: 0 0 .8rem;
}
.form-grid {
  display: grid;
  gap: .9rem;
}
label {
  display: grid;
  gap: .35rem;
  font-size: .9rem;
  font-weight: 600;
}
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .85rem 1rem;
  font: inherit;
  background: var(--white);
}
textarea { min-height: 140px; resize: vertical; }
.form-note {
  margin-top: .8rem;
  font-size: .88rem;
  color: rgba(16,37,31,.65);
}
.form-success {
  padding: 1rem 1.1rem;
  border-radius: 12px;
  background: rgba(31, 91, 69, 0.1);
  border: 1px solid rgba(31, 91, 69, 0.2);
  margin-bottom: 1rem;
}
.form-error {
  padding: 1rem 1.1rem;
  border-radius: 12px;
  background: rgba(160, 40, 40, 0.08);
  border: 1px solid rgba(160, 40, 40, 0.2);
  margin-bottom: 1rem;
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.product-detail figure {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.product-detail figure img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.site-footer {
  margin-top: 3rem;
  padding: 3rem 0 1.5rem;
  background: #0d1f1a;
  color: rgba(255,255,255,.82);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo {
  display: inline-block;
  margin-bottom: .85rem;
}
.footer-logo img {
  width: 170px;
  height: auto;
  background: transparent;
}
.footer-label {
  color: #9fd6ea;
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 .8rem;
}
.footer-grid a {
  display: block;
  margin-bottom: .45rem;
  opacity: .85;
}
.footer-grid a:hover { opacity: 1; }
.footer-bottom {
  padding-top: 1.2rem;
  font-size: .88rem;
  opacity: .7;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.1); }
}
@keyframes emblemFloat {
  from { transform: translateY(0); }
  to { transform: translateY(-12px); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 920px) {
  .split,
  .specialties,
  .product-grid,
  .contact-layout,
  .product-detail,
  .footer-grid,
  .gallery,
  .hero-layout {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
  }
  .hero-layout {
    padding: 1.5rem 0 2.5rem;
    gap: 1.4rem;
  }
  .hero h1 {
    font-size: clamp(1.75rem, 6.5vw, 2.4rem);
    max-width: none;
  }
  .hero-brand {
    font-size: clamp(2.6rem, 11vw, 3.8rem);
  }
  .hero p {
    max-width: none;
    font-size: 1rem;
  }
  .cta-row .btn {
    width: 100%;
  }
  .section,
  .section-about {
    padding: 3.2rem 0;
  }
  .split { gap: 1.5rem; }
  .split-visual { min-height: 280px; }
  .band {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.6rem;
  }
  .nav-toggle { display: inline-block; }
  .site-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem 1.4rem;
    background: rgba(247, 250, 248, 0.98);
    border-bottom: 1px solid var(--line);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a {
    font-size: 1.05rem;
    padding: .35rem 0;
    opacity: 1;
  }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: .9rem; }
  .footer-grid { gap: 1.5rem; }
  .page-hero { padding: 2.8rem 0 1.2rem; }
  .page-hero h1 { max-width: none; font-size: clamp(2rem, 8vw, 2.8rem); }
}

@media (max-width: 640px) {
  :root {
    --shell: min(1180px, calc(100% - 1.5rem));
  }
  .header-inner { min-height: 68px; }
  .brand img { width: 118px; }
  .product-grid { grid-template-columns: 1fr; }
  .specialties { gap: .85rem; }
  .specialty { min-height: 220px; }
  .contact-panel { padding: 1.2rem; }
  .btn { min-height: 48px; }
}
