:root {
  color-scheme: light;
  --ink: #151413;
  --charcoal: #24211f;
  --muted: #69635d;
  --paper: #fffaf2;
  --surface: #ffffff;
  --peach: #ffb199;
  --coral: #ff6542;
  --sky: #8fdcf8;
  --aqua: #b7f3eb;
  --lilac: #cbb7ff;
  --butter: #ffe8a3;
  --line: rgba(21, 20, 19, 0.12);
  --shadow: 0 24px 70px rgba(41, 33, 28, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(21, 20, 19, 0.08);
  background: rgba(255, 250, 242, 0.86);
  backdrop-filter: blur(18px);
}

.brand,
nav,
.hero-actions,
.hero-meta,
.social-list,
.marquee {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--lilac));
  color: white;
  box-shadow: 0 12px 28px rgba(255, 101, 66, 0.22);
}

nav {
  gap: clamp(14px, 3vw, 30px);
}

nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
  min-height: calc(100svh - 65px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, var(--paper) 0 49%, transparent 49% 100%),
    linear-gradient(135deg, #fffaf2 0 45%, #e9f8ff 45% 70%, #f3edff 70% 100%);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 8vw, 116px) clamp(22px, 6vw, 88px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--coral);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.7rem, 8.1vw, 8.15rem);
  font-weight: 1000;
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 span {
  display: block;
}

h1 span:nth-child(1) {
  color: var(--ink);
}

h1 span:nth-child(2) {
  color: var(--coral);
}

h1 span:nth-child(3) {
  color: var(--charcoal);
  font-size: clamp(2rem, 4.45vw, 4.3rem);
  line-height: 0.94;
}

h2 {
  margin-bottom: 0;
  max-width: 940px;
  font-size: clamp(2.2rem, 4.6vw, 4.7rem);
  font-weight: 1000;
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.14rem;
}

.hero-subtitle,
.section-intro,
.copy-stack {
  color: var(--muted);
  line-height: 1.66;
}

.hero-subtitle {
  max-width: 640px;
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
}

.hero-meta {
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 18px;
}

.hero-meta span {
  border: 1px solid rgba(21, 20, 19, 0.1);
  border-radius: 999px;
  padding: 8px 12px;
  background: white;
  color: var(--charcoal);
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(41, 33, 28, 0.05);
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(21, 20, 19, 0.12);
  border-radius: 999px;
  padding: 0 22px;
  font-size: 0.94rem;
  font-weight: 950;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.button.primary {
  border-color: transparent;
  background: var(--charcoal);
  color: white;
  box-shadow: 0 18px 42px rgba(36, 33, 31, 0.2);
}

.button.secondary {
  background: white;
  color: var(--charcoal);
}

.hero-visual {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border-left: 1px solid rgba(21, 20, 19, 0.08);
  background:
    linear-gradient(145deg, var(--sky) 0 27%, transparent 27% 100%),
    linear-gradient(35deg, rgba(255, 101, 66, 0.28) 0 18%, transparent 18% 100%),
    linear-gradient(135deg, #f8edff, #dff8ff 48%, #fff3d8);
}

.hero-visual::before {
  position: absolute;
  inset: 7% 8% 8%;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  content: "";
}

.hero-visual img {
  position: absolute;
  inset: 10% 12% 11%;
  width: 76%;
  height: 79%;
  border-radius: 8px;
  object-fit: cover;
  object-position: center 18%;
  box-shadow: var(--shadow);
}

.hero-card {
  position: absolute;
  right: clamp(18px, 5vw, 74px);
  bottom: clamp(18px, 5vw, 74px);
  display: grid;
  min-width: min(340px, calc(100% - 36px));
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 56px rgba(41, 33, 28, 0.14);
}

.hero-card span {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card strong {
  font-size: 1.32rem;
}

.hero-card small {
  color: var(--muted);
  font-weight: 800;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.stats article {
  min-height: 122px;
  padding: 26px clamp(18px, 4vw, 46px);
  border-right: 1px solid var(--line);
}

.stats article:last-child {
  border-right: 0;
}

.stats span,
.fit-grid span,
.contact-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.stats strong {
  font-size: clamp(1.2rem, 1.9vw, 1.76rem);
  line-height: 1.1;
}

.marquee {
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(21, 20, 19, 0.08);
  background: linear-gradient(90deg, #fff4ea, #eef9ff 48%, #f3edff);
}

.marquee span {
  border: 1px solid rgba(21, 20, 19, 0.09);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--charcoal);
  font-size: 0.82rem;
  font-weight: 900;
}

.split-section,
.brand-fit,
.media-hub,
.featured-media,
.archive,
.socials,
.contact {
  padding: clamp(70px, 10vw, 132px) clamp(20px, 5vw, 72px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(30px, 7vw, 92px);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.copy-stack {
  align-self: end;
  font-size: clamp(1rem, 1.3vw, 1.16rem);
}

.brand-fit {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(143, 220, 248, 0.32) 0 24%, transparent 24% 100%),
    linear-gradient(180deg, #fffaf2, #ffffff);
}

.section-heading,
.archive-heading {
  max-width: 930px;
  margin-bottom: clamp(30px, 5vw, 58px);
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.fit-grid article {
  min-height: 248px;
  border: 1px solid rgba(21, 20, 19, 0.1);
  border-radius: 8px;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 44px rgba(41, 33, 28, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.fit-grid article:nth-child(1) {
  border-top: 5px solid var(--coral);
}

.fit-grid article:nth-child(2) {
  border-top: 5px solid var(--sky);
}

.fit-grid article:nth-child(3) {
  border-top: 5px solid var(--lilac);
}

.fit-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(41, 33, 28, 0.12);
}

.fit-grid p {
  color: var(--muted);
  line-height: 1.62;
}

.media-hub {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(125deg, rgba(255, 101, 66, 0.12) 0 22%, transparent 22% 100%),
    linear-gradient(135deg, #ffffff, #eef9ff);
}

.section-intro {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: 1.06rem;
}

.gallery-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.gallery-summary a {
  display: grid;
  min-height: 124px;
  align-content: center;
  border: 1px solid rgba(21, 20, 19, 0.1);
  border-radius: 8px;
  padding: 18px;
  background: white;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(41, 33, 28, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.gallery-summary a:nth-child(1) {
  background: linear-gradient(135deg, #ffffff, #fff0ea);
}

.gallery-summary a:nth-child(2) {
  background: linear-gradient(135deg, #ffffff, #e9f8ff);
}

.gallery-summary a:nth-child(3) {
  background: linear-gradient(135deg, #ffffff, #f3edff);
}

.gallery-summary a:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 56px rgba(41, 33, 28, 0.12);
}

.gallery-summary strong {
  overflow-wrap: anywhere;
  font-size: clamp(1.75rem, 3vw, 3.1rem);
  font-weight: 1000;
  line-height: 1;
}

.gallery-summary span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.featured-media {
  border-bottom: 1px solid var(--line);
  background: #fffaf2;
}

.archive-photos {
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.archive-videos {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #eef9ff, #fffaf2 60%, #f5f0ff);
}

.featured-grid,
.archive-grid {
  display: grid;
  gap: 16px;
}

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

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

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

.gallery-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(21, 20, 19, 0.1);
  border-radius: 8px;
  background: white;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(41, 33, 28, 0.09);
  transform: translateZ(0);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 62px rgba(41, 33, 28, 0.16);
}

.feature-card {
  min-height: 455px;
}

.gallery-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 54%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(19, 18, 17, 0.72));
}

.gallery-card img,
.gallery-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card:nth-child(4n + 1) img {
  object-position: center 18%;
}

.gallery-card:nth-child(4n + 2) img {
  object-position: center 34%;
}

.chip,
.gallery-card small {
  position: absolute;
  z-index: 1;
}

.chip {
  left: 14px;
  bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.18);
  color: white;
  font-size: 0.8rem;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.gallery-card small {
  right: 14px;
  bottom: 16px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.77rem;
  font-weight: 800;
}

.video-card::before {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--coral);
  content: "▶";
  font-size: 1rem;
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(41, 33, 28, 0.16);
}

.video-note {
  max-width: 720px;
  margin: -32px 0 32px;
  color: var(--muted);
  font-weight: 760;
}

.gallery-error {
  color: var(--coral);
  font-weight: 850;
}

.socials {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: end;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.social-list {
  flex-wrap: wrap;
  gap: 12px;
}

.social-list a {
  border: 1px solid rgba(21, 20, 19, 0.1);
  border-radius: 999px;
  padding: 12px 16px;
  background: white;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(41, 33, 28, 0.06);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: end;
  background:
    linear-gradient(125deg, rgba(143, 220, 248, 0.18) 0 28%, transparent 28% 100%),
    var(--charcoal);
  color: white;
}

.contact .section-kicker {
  color: var(--peach);
}

.contact p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.66;
}

.contact-card {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 28px;
  background: linear-gradient(135deg, var(--coral), #ff8c66);
  color: white;
  text-decoration: none;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
}

.contact-card span {
  color: rgba(255, 255, 255, 0.74);
}

.contact-card strong {
  overflow-wrap: anywhere;
  font-size: clamp(1.08rem, 2vw, 1.5rem);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 5vw, 72px);
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

@media (max-width: 1120px) {
  .hero,
  .split-section,
  .media-hub,
  .socials,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-visual {
    min-height: 620px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

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

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

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

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .stats,
  .fit-grid,
  .gallery-summary {
    grid-template-columns: 1fr;
  }

  .stats article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

@media (max-width: 540px) {
  .hero-copy {
    padding-top: 48px;
  }

  h1 {
    font-size: 3.35rem;
    line-height: 0.9;
  }

  h1 span:nth-child(3) {
    font-size: 1.92rem;
    line-height: 0.98;
  }

  h2 {
    font-size: 2.05rem;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 470px;
  }

  .hero-visual img {
    inset: 7% 6% 12%;
    width: 88%;
    height: 78%;
  }

  .hero-card {
    left: 18px;
    right: 18px;
  }

  .photo-grid,
  .featured-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card {
    min-height: 300px;
  }

  .feature-card {
    min-height: 350px;
  }

  footer {
    flex-direction: column;
  }
}
