:root {
  --page: #eef2f5;
  --surface: #ffffff;
  --surface-muted: #f7f9fb;
  --surface-strong: #dde5ec;
  --ink: #1f2328;
  --ink-soft: #4d5a68;
  --line: #cfd7df;
  --accent: #f74878;
  --accent-deep: #bd2754;
  --accent-soft: #ffe6ee;
  --shadow: 0 18px 40px rgba(31, 35, 40, 0.08);
  --shadow-soft: 0 8px 18px rgba(31, 35, 40, 0.06);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shell: min(1120px, calc(100vw - 2rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Segoe UI Variable Text", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(247, 72, 120, 0.12), transparent 24rem),
    linear-gradient(180deg, #f6f8fa 0%, var(--page) 100%);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--accent-deep);
  color: #fff;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(246, 248, 250, 0.88);
  border-bottom: 1px solid rgba(207, 215, 223, 0.85);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-inner {
  min-height: 4.75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: min(15rem, 46vw);
  height: auto;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--ink);
}

.hero,
.section {
  padding: 4.5rem 0;
}

.hero {
  padding-top: 4rem;
}

.hero-grid,
.fit-grid,
.cta-panel {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
}

.hero-copy {
  max-width: 35rem;
}

.eyebrow,
.section-kicker,
.shot-label {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Segoe UI Variable Display", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  letter-spacing: -0.03em;
}

h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.05;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: 1.24rem;
  line-height: 1.2;
}

.lede,
.section-heading p,
.fit-copy p,
.cta-panel p,
.feature-card p,
.info-card p {
  color: var(--ink-soft);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.8rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease;
}

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

.button-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.button-primary:hover {
  background: #13171c;
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--accent);
  background: #fff;
}

.hero-points,
.check-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li,
.check-list li {
  position: relative;
  padding-left: 1.5rem;
}

.hero-points li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 0.3rem var(--accent-soft);
}

.hero-stage {
  display: grid;
  gap: 1rem;
}

.shot-card,
.gallery-card,
.info-card,
.feature-card,
.cta-panel {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.shot-card,
.gallery-card,
.info-card,
.feature-card {
  border-radius: var(--radius-lg);
}

.shot-card {
  overflow: hidden;
}

.shot-card-primary {
  transform: rotate(-1.2deg);
}

.shot-card-secondary {
  transform: rotate(1.1deg);
}

.shot-card-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem 0;
}

.shot-title {
  font-weight: 700;
}

.shot-card figure,
.gallery-card {
  margin: 0;
}

.shot-card img,
.gallery-card img {
  width: 100%;
  aspect-ratio: 49 / 48;
  object-fit: contain;
  object-position: center top;
  padding: 0.55rem;
  background: linear-gradient(180deg, #f7f9fb 0%, #edf2f6 100%);
  border: 1px solid rgba(207, 215, 223, 0.8);
  border-radius: 1.25rem;
}

.shot-card figure,
.gallery-card figcaption {
  padding: 1rem 1.2rem 1.2rem;
}

.shot-card figcaption,
.gallery-card figcaption {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.section-muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.74));
  border-top: 1px solid rgba(207, 215, 223, 0.8);
  border-bottom: 1px solid rgba(207, 215, 223, 0.8);
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 2rem;
}

.workflow-grid,
.gallery-grid {
  display: grid;
  gap: 1.25rem;
}

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

.gallery-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card,
.feature-card {
  padding: 1.5rem;
}

.info-number {
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--accent-deep);
}

.fit-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  align-items: start;
}

.feature-stack {
  display: grid;
  gap: 1rem;
}

.feature-card {
  background:
    linear-gradient(135deg, rgba(247, 72, 120, 0.08), rgba(255, 255, 255, 0) 42%),
    rgba(255, 255, 255, 0.94);
}

.cta-section {
  padding-bottom: 5rem;
}

.cta-panel {
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  align-items: center;
  padding: 2rem;
  border-radius: calc(var(--radius-lg) + 2px);
  background:
    linear-gradient(135deg, rgba(247, 72, 120, 0.08), rgba(255, 255, 255, 0.96) 50%),
    rgba(255, 255, 255, 0.95);
}

.cta-note {
  margin: 0;
  max-width: 23rem;
  font-size: 0.95rem;
}

.site-footer {
  padding: 1.25rem 0 2rem;
  border-top: 1px solid rgba(207, 215, 223, 0.9);
  color: var(--ink-soft);
}

.site-footer a {
  color: var(--accent-deep);
  font-weight: 700;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--accent-deep);
  outline-offset: 3px;
}

@media (max-width: 960px) {
  .hero-grid,
  .fit-grid,
  .cta-panel,
  .workflow-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.75rem;
  }

  .shot-card-primary,
  .shot-card-secondary {
    transform: none;
  }

  .site-header {
    position: static;
  }
}

@media (max-width: 700px) {
  .site-nav,
  .header-inner,
  .footer-inner {
    align-items: flex-start;
  }

  .header-inner,
  .footer-inner {
    flex-direction: column;
    padding: 1rem 0;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero,
  .section {
    padding: 3.5rem 0;
  }

  .shot-card img,
  .gallery-card img {
    border-radius: 1rem;
  }

  .shot-card figure,
  .gallery-card figcaption,
  .info-card,
  .feature-card,
  .cta-panel {
    padding: 1.1rem;
  }
}
