@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #f4f1e8;
  --paper: rgba(255, 255, 255, 0.8);
  --paper-strong: rgba(255, 255, 255, 0.92);
  --ink: #172127;
  --muted: #53616a;
  --line: rgba(23, 33, 39, 0.12);
  --accent: #0f766e;
  --accent-strong: #0a5c57;
  --highlight: #ffb84d;
  --shadow: 0 18px 45px rgba(20, 31, 38, 0.08);
  --radius: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.14), transparent 34%),
    radial-gradient(circle at top right, rgba(255, 184, 77, 0.2), transparent 28%),
    linear-gradient(180deg, #f6f2e8 0%, #efe8da 100%);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.65;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(244, 241, 232, 0.84);
  border-bottom: 1px solid var(--line);
}

.header-inner,
.footer-grid,
.hero-grid,
.cta-panel {
  display: flex;
  gap: 24px;
}

.header-inner,
.footer-grid {
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--highlight));
  color: #fff;
  font-weight: 800;
}

.brand-text {
  font-size: 0.98rem;
}

.site-nav,
.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.site-nav a,
.footer-links a {
  color: var(--muted);
  font-weight: 600;
}

.site-nav a:hover,
.footer-links a:hover,
.card-link a:hover {
  color: var(--accent);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(15, 118, 110, 0.16);
  transition: transform 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--accent-strong);
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
}

.button-secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
  box-shadow: none;
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.56);
}

.hero {
  padding: 88px 0 48px;
}

.hero-grid {
  align-items: flex-start;
  justify-content: space-between;
}

.hero-grid > * {
  flex: 1 1 0;
}

.hero-grid > :first-child {
  flex-basis: 56%;
}

.hero-grid > :last-child {
  flex-basis: 44%;
}

.hero-panel,
.card,
.cta-panel {
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 28px;
  align-self: flex-start;
}

.media-frame {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(23, 33, 39, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-shot {
  aspect-ratio: 6 / 5;
}

.hero-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-panel .notice {
  margin-top: 14px;
}

.panel-label,
.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  max-width: 14ch;
}

h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0;
}

.lead {
  margin-top: 20px;
  max-width: 54ch;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.card-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.notice {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.check-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.check-list li + li {
  margin-top: 12px;
}

.section {
  padding: 28px 0 56px;
}

.section-alt {
  background: rgba(255, 255, 255, 0.28);
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.section-heading {
  max-width: 72ch;
  margin-bottom: 28px;
}

.section-heading p:last-child {
  margin-top: 16px;
  color: var(--muted);
}

.cards {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.shot-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shot-card {
  display: grid;
  gap: 14px;
}

.shot-card p {
  color: var(--muted);
}

.shot-card .media-frame {
  aspect-ratio: 1240 / 1420;
}

.shot-card .media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  padding: 24px;
}

.card p {
  margin-top: 12px;
  color: var(--muted);
}

.card .button,
.card .button-secondary {
  min-height: 42px;
  padding: 0 18px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 22px 24px;
  border-radius: 22px;
  background: var(--paper-strong);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
}

.faq-item p {
  margin-top: 10px;
  color: var(--muted);
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

th,
td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  font-size: 0.92rem;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

tbody tr:last-child td {
  border-bottom: none;
}

.cta-panel {
  align-items: center;
  justify-content: space-between;
  padding: 30px;
}

.cta-panel p {
  margin-top: 12px;
  color: var(--muted);
  max-width: 56ch;
}

.site-footer {
  padding: 12px 0 30px;
}

.footer-copy {
  margin-top: 12px;
  max-width: 48ch;
  color: var(--muted);
}

.breadcrumbs {
  margin-top: 26px;
  color: var(--muted);
  font-size: 0.95rem;
}

.breadcrumbs a {
  color: var(--accent-strong);
}

.prose {
  display: grid;
  gap: 18px;
  max-width: 78ch;
}

@media (max-width: 960px) {
  .header-inner,
  .footer-grid,
  .hero-grid,
  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    gap: 16px;
  }

  .cards,
  .shot-grid,
  .three-up {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: none;
  }

  .container {
    width: min(1120px, calc(100% - 28px));
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 64px;
  }

  .button,
  .button-small {
    width: 100%;
  }

  .site-nav {
    width: 100%;
  }
}
