:root {
  --ink: #1b1d1f;
  --muted: #5c5f62;
  --bg: #f6f4ef;
  --card: #ffffff;
  --accent: #1c4d61;
  --accent-soft: #d9e7ee;
  --line: rgba(27, 29, 31, 0.12);
  --shadow: 0 24px 60px rgba(20, 28, 32, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
}

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(246, 244, 239, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  z-index: 10;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 600;
  letter-spacing: 0.08em;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: 1.2rem;
}

.brand-tagline {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.link-pill {
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.9rem;
}

.hero {
  padding: 70px 0 50px;
}

.hero-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

h1,
h2,
h3 {
  font-family: "Fraunces", serif;
}

h1 {
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin: 16px 0;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.7rem;
  color: var(--accent);
  margin: 0;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.cta {
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 22px;
  background: var(--accent);
  color: #fff;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow);
}

.cta:hover {
  transform: translateY(-2px);
}

.cta.outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  box-shadow: none;
}

.cta.dark {
  background: #111d22;
  color: #fff;
  box-shadow: none;
}

.hero-media {
  background: var(--card);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-media img {
  height: 100%;
  object-fit: cover;
}

.hero-caption {
  padding: 18px 22px;
  background: var(--accent-soft);
  font-size: 0.9rem;
  color: var(--muted);
}

.section {
  padding: 60px 0;
}

.split-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.image-panel {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.band {
  background: #eef1f3;
}

.features-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature {
  background: var(--card);
  border-radius: 20px;
  padding: 20px 22px;
  box-shadow: var(--shadow);
}

.feature-title {
  font-weight: 600;
  margin-bottom: 6px;
}

.list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  color: var(--muted);
}

.list li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.brand {
  padding-top: 40px;
}

.brand-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.brand-card {
  background: var(--card);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.gallery {
  margin-top: 26px;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.gallery figure {
  margin: 0;
  background: var(--card);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
}

.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.gallery figcaption {
  padding: 12px 14px 14px;
  font-size: 0.9rem;
  color: var(--muted);
}

.callout-inner {
  background: var(--accent-soft);
  border-radius: 26px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.site-footer {
  padding: 40px 0 60px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 720px) {
  .header-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 40px;
  }

  .callout-inner {
    align-items: flex-start;
  }
}
