:root {
  color-scheme: light;
  --ink: #181713;
  --muted: #656b62;
  --paper: #f7fff9;
  --cream: #ffffff;
  --mist: #e8fbff;
  --mint: #bff7d5;
  --aqua: #52d8f3;
  --sun: #fff05f;
  --coral: #ff5b35;
  --pink: #ff4f8b;
  --green: #1d5d45;
  --line: rgba(24, 23, 19, 0.12);
  --shadow: 0 28px 80px rgba(18, 70, 63, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(115deg, rgba(255, 240, 95, 0.36) 0 12%, transparent 12% 100%),
    radial-gradient(circle at 88% 6%, rgba(82, 216, 243, 0.32), transparent 320px),
    linear-gradient(180deg, #f7fff9, #ffffff 42%, #ecfff7);
  color: var(--ink);
  font-family: 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(24, 23, 19, 0.08);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
}

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

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

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--pink));
  color: white;
  box-shadow: 0 10px 26px rgba(255, 104, 70, 0.28);
}

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, 1.02fr) minmax(360px, 0.98fr);
  min-height: calc(100svh - 63px);
  border-bottom: 1px solid var(--line);
}

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

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

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

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(3.5rem, 6vw, 7.1rem);
  font-weight: 1000;
  line-height: 0.84;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 4.5vw, 4.7rem);
  font-weight: 1000;
  line-height: 0.94;
  letter-spacing: 0;
}

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

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

.hero-subtitle {
  max-width: 650px;
  font-size: clamp(1.08rem, 1.6vw, 1.34rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(24, 23, 19, 0.14);
  border-radius: 999px;
  padding: 0 20px;
  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: linear-gradient(135deg, var(--coral), var(--pink));
  color: white;
  box-shadow: 0 18px 42px rgba(255, 104, 70, 0.24);
}

.button.secondary {
  background: white;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-left: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 91, 53, 0.9) 0 18%, transparent 18% 100%),
    linear-gradient(135deg, var(--sun), var(--aqua) 48%, var(--mint));
}

.hero-visual::before {
  position: absolute;
  inset: 5% 6% 6% 10%;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 34px;
  content: "";
  transform: rotate(-2.5deg);
}

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

.hero-card {
  position: absolute;
  right: clamp(18px, 5vw, 70px);
  bottom: clamp(18px, 5vw, 70px);
  display: grid;
  min-width: min(330px, calc(100% - 36px));
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 24px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 50px rgba(37, 48, 37, 0.14);
}

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

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

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

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

.stats article {
  min-height: 126px;
  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.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.stats strong {
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  line-height: 1.08;
}

.marquee {
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(24, 23, 19, 0.08);
  background: linear-gradient(90deg, #e8fbff, #ffffff 43%, #ecffe9 72%, #fff8a6);
}

.marquee span {
  border: 1px solid rgba(24, 23, 19, 0.1);
  border-radius: 999px;
  padding: 9px 13px;
  background: white;
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 950;
}

.split-section,
.brand-fit,
.media-hub,
.featured-media,
.archive,
.socials,
.contact {
  padding: clamp(68px, 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);
}

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

.brand-fit {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(232, 251, 255, 0.66));
}

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

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

.fit-grid article {
  min-height: 250px;
  border: 1px solid rgba(24, 23, 19, 0.1);
  border-radius: 26px;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 44px rgba(63, 46, 31, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

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

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

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

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

.gallery-summary a {
  display: grid;
  min-height: 126px;
  align-content: center;
  border: 1px solid rgba(24, 23, 19, 0.1);
  border-radius: 24px;
  padding: 18px;
  background: white;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(63, 46, 31, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

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

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

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

.gallery-summary strong {
  font-size: clamp(1.7rem, 3vw, 3.1rem);
  line-height: 1;
}

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

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

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

.archive-videos {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #ffffff, #eafbff 58%, #edffec);
}

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

.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(24, 23, 19, 0.1);
  border-radius: 26px;
  background: white;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(63, 46, 31, 0.08);
  transform: translateZ(0);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 62px rgba(63, 46, 31, 0.15);
}

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

.gallery-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 56%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(16, 15, 13, 0.76));
}

.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: 16px;
  bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.18);
  color: white;
  font-size: 0.82rem;
  font-weight: 950;
  backdrop-filter: blur(12px);
}

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

.video-card::before {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, white, #fff0e9);
  color: var(--coral);
  content: "▶";
  font-size: 1rem;
  font-weight: 1000;
  box-shadow: 0 16px 36px rgba(24, 23, 19, 0.14);
}

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

.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(24, 23, 19, 0.1);
  border-radius: 999px;
  padding: 12px 16px;
  background: white;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(63, 46, 31, 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(110deg, rgba(255, 240, 95, 0.42) 0 24%, transparent 24% 100%),
    linear-gradient(135deg, #f6fff7, #e8fbff);
  color: var(--ink);
}

.contact p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.66;
}

.contact-card {
  display: block;
  border: 1px solid rgba(24, 23, 19, 0.1);
  border-radius: 26px;
  padding: 28px;
  background: linear-gradient(135deg, var(--coral), var(--pink));
  color: white;
  text-decoration: none;
  box-shadow: 0 24px 60px rgba(255, 91, 53, 0.22);
}

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

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

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 5vw, 72px);
  color: var(--muted);
  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) {
  h1 {
    font-size: 3.5rem;
  }

  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;
  }
}
