:root {
  --ink: #101418;
  --muted: #5d6970;
  --line: #dfe8e8;
  --aqua: #42d9cf;
  --aqua-soft: #e9fbf8;
  --peach: #ffb79d;
  --peach-soft: #fff0e9;
  --paper: #ffffff;
  --mist: #f6faf9;
  --shadow: 0 22px 60px rgba(16, 20, 24, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--aqua), var(--peach));
  border-radius: 8px;
  font-size: 13px;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 30px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

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

.section-band {
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 64px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.78fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
  min-height: calc(100vh - 73px);
  background: linear-gradient(180deg, #f7fffd 0%, #ffffff 74%);
}

.kicker,
.section-label {
  display: inline-block;
  margin: 0 0 14px;
  color: #087a73;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6.2vw, 84px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
  letter-spacing: 0;
}

.lead {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  background: var(--ink);
  color: white;
  box-shadow: 0 12px 28px rgba(16, 20, 24, 0.18);
}

.button.secondary {
  background: white;
}

.hero-media {
  margin: 0;
  justify-self: center;
  width: min(100%, 390px);
  padding: 10px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-media img,
.shot img {
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 6px;
}

.product-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: 34px;
  align-items: end;
  padding: 56px clamp(20px, 5vw, 64px);
  background: var(--ink);
  color: white;
}

.product-strip .section-label,
.ink .section-label {
  color: var(--aqua);
}

.strip-text p,
.studio-note p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
}

.proof-row div {
  min-height: 132px;
  padding: 22px;
  background: #151b20;
}

.proof-row strong,
.proof-row span {
  display: block;
}

.proof-row strong {
  margin-bottom: 10px;
  font-size: 24px;
}

.proof-row span {
  color: rgba(255, 255, 255, 0.72);
}

.pale {
  background: linear-gradient(90deg, var(--aqua-soft), var(--peach-soft));
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 1.18fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.feature-copy p {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 20, 24, 0.1);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(16, 20, 24, 0.06);
}

.feature-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.gallery-section {
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 64px);
  background: white;
}

.gallery-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 28px;
}

.gallery-heading h2 {
  max-width: 790px;
  margin-bottom: 0;
}

.shot-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.86fr 0.86fr;
  gap: 18px;
  align-items: end;
}

.shot {
  margin: 0;
  padding: 8px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.shot.large {
  background: var(--peach-soft);
}

.shot figcaption {
  padding: 12px 4px 4px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.studio-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: 38px;
  align-items: end;
}

.ink {
  background: var(--ink);
  color: white;
}

.studio-note h2 {
  max-width: 880px;
}

.contact-section {
  padding: clamp(52px, 7vw, 84px) clamp(20px, 5vw, 64px);
  background: var(--mist);
}

.contact-card {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 48px);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
}

.contact-card p {
  color: var(--muted);
  font-size: 18px;
}

.email-link {
  display: inline-flex;
  max-width: 100%;
  margin-top: 8px;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--aqua-soft);
  border: 1px solid rgba(8, 122, 115, 0.22);
  border-radius: 8px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.68);
  background: #0b0f12;
  font-size: 14px;
}

.site-footer span:first-child {
  color: white;
  font-weight: 900;
}

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

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .product-strip,
  .feature-grid,
  .studio-note {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    width: min(100%, 330px);
  }

  .gallery-heading {
    display: block;
  }

  .shot-layout {
    grid-template-columns: 1fr;
  }

  .shot {
    max-width: 430px;
    margin-inline: auto;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand {
    font-size: 15px;
  }

  .nav {
    gap: 16px;
    font-size: 13px;
  }

  .section-band,
  .gallery-section,
  .contact-section,
  .product-strip {
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .proof-row {
    grid-template-columns: 1fr;
  }

  .proof-row div {
    min-height: auto;
  }

  .site-footer {
    flex-direction: column;
  }
}

/* Generator safety overrides */
h1,
.hero h1,
[class*="hero"] h1 {
  font-size: clamp(2.35rem, 5vw, 4rem) !important;
  line-height: 1.06 !important;
  letter-spacing: 0 !important;
  overflow-wrap: anywhere;
}

@media (max-width: 640px) {
  h1,
  .hero h1,
  [class*="hero"] h1 {
    font-size: clamp(2rem, 10vw, 2.8rem) !important;
    line-height: 1.08 !important;
  }
}

.user-policy-section {
  background: #f7f7fb !important;
  color: #191927 !important;
  padding: 56px 18px !important;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

.user-policy-inner {
  max-width: 980px !important;
  margin: 0 auto !important;
  padding: 56px 72px !important;
  background: #fff !important;
  box-shadow: none !important;
}

.user-policy-inner h2 {
  margin: 0 0 48px !important;
  color: #10101f !important;
  font-size: 30px !important;
  line-height: 1.2 !important;
  text-align: center !important;
  font-weight: 900 !important;
}

.user-policy-inner h3 {
  margin: 34px 0 14px !important;
  color: #000 !important;
  font-size: 22px !important;
  line-height: 1.3 !important;
  font-weight: 900 !important;
}

.user-policy-inner p {
  margin: 0 0 14px !important;
  color: #555 !important;
  font-size: 16px !important;
  line-height: 1.55 !important;
  font-weight: 400 !important;
}

.user-policy-inner a {
  color: #d83260 !important;
  text-decoration: underline !important;
}

@media (max-width: 720px) {
  .user-policy-inner {
    padding: 34px 22px !important;
  }
}
