:root {
  --ink: #25131e;
  --muted: #765368;
  --paper: #fff8fb;
  --hot: #ff177f;
  --rose: #ff4f9a;
  --bubble: #ffb8d8;
  --plum: #7d1f5f;
  --line: rgba(255, 23, 127, 0.16);
  --shadow: 0 28px 70px rgba(125, 31, 95, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 184, 216, 0.45), transparent 28%),
    radial-gradient(circle at 100% 8%, rgba(255, 79, 154, 0.1), transparent 24%),
    #ffffff;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

a {
  color: var(--hot);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 6vw, 88px);
  background: rgba(255, 248, 251, 0.42);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid rgba(255, 23, 127, 0.08);
}

.brand img {
  width: 196px;
  height: 72px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
}

.nav-links a.is-active,
.nav-links a:hover {
  color: var(--hot);
}

.hero {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 0.9fr);
  align-items: start;
  gap: clamp(28px, 6vw, 72px);
  min-height: auto;
  padding: clamp(18px, 3vw, 36px) clamp(20px, 6vw, 88px) clamp(40px, 6vw, 72px);
}

.hero__copy {
  padding-top: clamp(8px, 1.5vw, 18px);
  padding-bottom: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--plum);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.about-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.lede,
.split__copy p,
.section-head p,
.contact__intro p,
.about-body p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
  font-weight: 600;
}

.lede {
  max-width: 34rem;
  margin-bottom: 28px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

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

.button--primary {
  color: white;
  background: linear-gradient(135deg, var(--hot), var(--rose));
  box-shadow: 0 14px 30px rgba(255, 23, 127, 0.24);
}

.button--ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(37, 19, 30, 0.12);
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 0;
  padding-top: clamp(4px, 1vw, 12px);
}

.phone--hero {
  width: 100%;
  max-width: 320px;
  margin-inline: auto;
  filter: drop-shadow(0 28px 50px rgba(125, 31, 95, 0.22));
  animation: rise-in 700ms ease both;
}

.phone__bezel {
  position: relative;
  padding: 10px;
  border-radius: 42px;
  background: linear-gradient(160deg, #3a3140 0%, #1a1218 42%, #2c2230 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    inset 0 0 0 3px rgba(0, 0, 0, 0.35);
}

.phone__island {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 2;
  width: 28%;
  height: 22px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #0b070a;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.phone__screen {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 19.2;
  object-fit: cover;
  object-position: top center;
  border-radius: 32px;
  background: #fff8fb;
}

.split__shot,
.shot img,
.about-shot img {
  width: 100%;
  border-radius: 28px;
  box-shadow:
    0 18px 40px rgba(37, 19, 30, 0.12),
    0 4px 12px rgba(37, 19, 30, 0.06);
  border: 1px solid rgba(37, 19, 30, 0.06);
  background: white;
}

.split__shot {
  max-width: 420px;
  margin-inline: auto;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.showcase {
  padding: clamp(64px, 10vw, 120px) 0;
  background: transparent;
  overflow: hidden;
}

.split,
.contact {
  padding: clamp(64px, 10vw, 120px) clamp(20px, 6vw, 88px);
  background: transparent;
}

.section-head {
  max-width: 34rem;
  margin: 0 clamp(20px, 6vw, 88px) 28px;
}

.section-head h2,
.split__copy h2,
.contact__intro h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 900;
}

.shot-rail {
  --shot-gap: 18px;
  --shot-size: min(380px, calc((100vw - clamp(20px, 6vw, 88px) - var(--shot-gap)) / 1.5));
  display: flex;
  gap: var(--shot-gap);
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px 0 24px clamp(20px, 6vw, 88px);
  scroll-snap-type: x mandatory;
  scroll-padding-left: clamp(20px, 6vw, 88px);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.shot-rail::-webkit-scrollbar {
  display: none;
}

.shot {
  flex: 0 0 var(--shot-size);
  width: var(--shot-size);
  margin: 0;
  scroll-snap-align: start;
  background: transparent;
}

.shot img {
  aspect-ratio: 9 / 19;
  object-fit: cover;
  object-position: top center;
  transition: transform 220ms ease, box-shadow 220ms ease;
  box-shadow:
    0 22px 48px rgba(37, 19, 30, 0.16),
    0 6px 16px rgba(37, 19, 30, 0.08);
}

.shot:hover img {
  transform: translateY(-4px);
}

.shot figcaption {
  margin-top: 12px;
  color: var(--plum);
  font-size: 0.84rem;
  font-weight: 800;
}

.shot-rail::after {
  content: "";
  flex: 0 0 clamp(20px, 6vw, 88px);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
}

.split--reverse .split__copy {
  order: 2;
}

.split__copy .eyebrow {
  margin-bottom: 10px;
}

.split__pair {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  max-width: 520px;
  margin-inline: auto;
  overflow: visible;
}

.split__pair .split__shot {
  max-width: none;
  margin: 0;
}

.split__pair .split__shot--peek {
  width: 100%;
}

.contact {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(280px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  background: transparent;
  border-top: 1px solid var(--line);
}

.inquiry-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 40px rgba(125, 31, 95, 0.08);
}

.inquiry-form label {
  display: grid;
  gap: 8px;
}

.inquiry-form span {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--plum);
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(37, 19, 30, 0.12);
  border-radius: 14px;
  padding: 14px 16px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 600;
}

.inquiry-form textarea {
  resize: vertical;
  min-height: 140px;
}

.inquiry-form button {
  border: 0;
  width: fit-content;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
}

.about-page {
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(240px, 0.7fr);
  gap: clamp(28px, 6vw, 72px);
  padding: clamp(40px, 7vw, 88px) clamp(20px, 6vw, 88px) clamp(72px, 10vw, 120px);
  align-items: start;
}

.about-hero {
  grid-column: 1 / -1;
}

.about-body {
  max-width: 40rem;
}

.about-body p + p {
  margin-top: 1.1rem;
}

.about-shot img {
  max-width: 360px;
  margin-left: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 18%;
  animation: rise-in 700ms ease both;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 6vw, 88px) 40px;
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 168px;
  height: 62px;
  object-fit: contain;
  opacity: 0.9;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

@media (max-width: 900px) {
  .hero,
  .split,
  .split--reverse,
  .contact,
  .about-page {
    grid-template-columns: 1fr;
  }

  .split--reverse .split__copy {
    order: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero__copy {
    padding-bottom: 12px;
  }

  .hero__visual {
    min-height: auto;
    order: 2;
    padding-bottom: 28px;
  }

  .phone--hero {
    max-width: 300px;
  }

  .split__shot,
  .about-shot img {
    max-width: 320px;
    margin-inline: auto;
  }

  .split__pair {
    grid-template-columns: 1fr;
    max-width: 320px;
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-inline: 16px;
  }

  .brand img {
    width: 156px;
    height: 58px;
  }

  .nav-links {
    gap: 14px;
    font-size: 0.76rem;
  }

  .split,
  .contact,
  .about-page,
  .site-footer {
    padding-inline: 16px;
  }

  .section-head {
    margin-inline: 16px;
  }

  .shot-rail {
    --shot-size: calc((100vw - 16px - 14px) / 1.45);
    --shot-gap: 14px;
    padding-left: 16px;
    scroll-padding-left: 16px;
  }

  .shot-rail::after {
    flex-basis: 16px;
  }
}
