:root {
  --ink: #101010;
  --paper: #f4f0e8;
  --muted: #766f65;
  --line: rgba(16, 16, 16, 0.16);
  --gold: #b98948;
  --rose: #a64d5d;
  --teal: #2f7774;
  --blue: #283d63;
  --shadow: 0 28px 70px rgba(16, 16, 16, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

body::selection {
  color: #fff;
  background: var(--ink);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: #fff;
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.82), rgba(16, 16, 16, 0));
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(16px, 1.8vw, 28px);
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand img {
  width: 48px;
  height: 48px;
  padding: 5px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.92);
}

.brand span {
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 30px);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.desktop-nav a,
.header-action {
  transition: opacity 180ms ease, transform 180ms ease;
}

.desktop-nav a:hover,
.header-action:hover {
  opacity: 0.72;
}

.header-action {
  min-width: 116px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.hero {
  position: relative;
  min-height: 94vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 142px clamp(18px, 4vw, 54px) 44px;
  color: #fff;
  background: #101010;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 16, 16, 0.88), rgba(16, 16, 16, 0.25) 54%, rgba(16, 16, 16, 0.62)),
    linear-gradient(180deg, rgba(16, 16, 16, 0.08), rgba(16, 16, 16, 0.76));
}

.hero-image {
  position: absolute;
  inset: 0;
  background: url("assets/hero.jpg") center / cover no-repeat;
  transform: scale(1.02);
}

.hero-image::before {
  content: none;
  position: absolute;
  right: 12vw;
  bottom: 0;
  width: min(34vw, 470px);
  height: min(72vh, 660px);
  border-radius: 48% 48% 0 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)),
    linear-gradient(100deg, #151515, #434343 42%, #111 43% 100%);
  box-shadow: -34px 0 90px rgba(0, 0, 0, 0.34);
  opacity: 0.9;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(930px, 100%);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 900px;
  font-size: clamp(48px, 9vw, 128px);
  line-height: 0.88;
}

.hero-copy p:not(.eyebrow) {
  max-width: 660px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.6vw, 21px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-dark {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 14px 32px rgba(16, 16, 16, 0.2);
}

.button-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.08);
}

.hero-stat {
  position: absolute;
  right: clamp(18px, 4vw, 54px);
  bottom: 38px;
  z-index: 2;
  width: min(260px, 38vw);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(16, 16, 16, 0.26);
  backdrop-filter: blur(16px);
}

.hero-stat span,
.hero-stat strong {
  display: block;
}

.hero-stat span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  text-transform: uppercase;
}

.hero-stat strong {
  margin-top: 6px;
  font-size: 18px;
  line-height: 1.2;
}

.ticker {
  display: flex;
  gap: 34px;
  overflow: hidden;
  padding: 18px clamp(18px, 4vw, 54px);
  color: #fff;
  background: var(--ink);
}

.ticker span {
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.section {
  padding: clamp(64px, 9vw, 120px) clamp(18px, 4vw, 54px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: clamp(28px, 7vw, 100px);
  align-items: end;
}

.section h2 {
  font-size: clamp(38px, 5.8vw, 86px);
  line-height: 0.96;
}

.intro > p,
.feature-copy p,
.about-copy p,
.contact p,
.campaign-list p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

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

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(260px, 29vw);
  gap: 16px;
}

.work-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  background: #1b1b1b;
  box-shadow: var(--shadow);
}

.work-card-large {
  grid-column: span 2;
  grid-row: span 2;
}

.work-card-wide {
  grid-column: span 2;
}

.photo-slot,
.about-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: transform 420ms ease;
}

.photo-slot img,
.about-image img,
.calendar-wall img,
.mosaic-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.work-card:hover .photo-slot {
  transform: scale(1.05);
}

.photo-slot::after,
.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.02), rgba(16, 16, 16, 0.74));
}

.portrait-one {
  background-image:
    url("assets/celebrity-portrait-01.jpg"),
    linear-gradient(140deg, rgba(16, 16, 16, 0.1), rgba(16, 16, 16, 0.8)),
    radial-gradient(circle at 50% 28%, #f3e3cc 0 10%, transparent 10.4%),
    linear-gradient(120deg, #171717 0 24%, #b98948 24% 42%, #f0d9c0 42% 56%, #192d4b 56% 100%);
}

.portrait-two {
  background-image:
    url("assets/fashion-editorial-01.jpg"),
    linear-gradient(180deg, rgba(16, 16, 16, 0.08), rgba(16, 16, 16, 0.78)),
    radial-gradient(circle at 52% 30%, #e8d1b7 0 12%, transparent 12.3%),
    linear-gradient(135deg, #2f7774 0 34%, #efeee8 34% 54%, #171717 54% 100%);
}

.portrait-three {
  background-image:
    url("assets/campaign-01.jpg"),
    linear-gradient(180deg, rgba(16, 16, 16, 0), rgba(16, 16, 16, 0.76)),
    radial-gradient(circle at 48% 27%, #d9b48a 0 10%, transparent 10.3%),
    linear-gradient(150deg, #a64d5d 0 42%, #111 42% 64%, #b98948 64% 100%);
}

.portrait-four {
  background-image:
    url("assets/studio-lighting-01.jpg"),
    linear-gradient(180deg, rgba(16, 16, 16, 0.02), rgba(16, 16, 16, 0.78)),
    radial-gradient(circle at 55% 32%, #eed9c3 0 11%, transparent 11.4%),
    linear-gradient(130deg, #1a1a1a 0 34%, #283d63 34% 68%, #efe8dc 68% 100%);
}

.portrait-five {
  background-image:
    url("assets/magazine-cover-01.jpg"),
    linear-gradient(110deg, rgba(16, 16, 16, 0.1), rgba(16, 16, 16, 0.76)),
    radial-gradient(circle at 34% 31%, #e6c5a6 0 8%, transparent 8.4%),
    radial-gradient(circle at 67% 28%, #f0dcc7 0 8%, transparent 8.4%),
    linear-gradient(120deg, #171717 0 28%, #a64d5d 28% 52%, #2f7774 52% 74%, #b98948 74% 100%);
}

.work-meta {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  color: #fff;
}

.work-meta span {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.work-meta h3 {
  margin: 7px 0 0;
  font-size: clamp(22px, 2.4vw, 38px);
  line-height: 1;
}

.gallery {
  background: #f8f4ed;
}

.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: clamp(180px, 22vw, 300px);
  gap: 16px;
}

.mosaic-grid figure {
  margin: 0;
  overflow: hidden;
  min-height: 0;
  background: #111;
  box-shadow: var(--shadow);
}

.mosaic-grid img {
  transition: transform 420ms ease;
}

.mosaic-grid figure:hover img {
  transform: scale(1.04);
}

.mosaic-tall {
  grid-row: span 2;
}

.mosaic-wide {
  grid-column: span 2;
}

.collections {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fffaf2;
}

.collections a {
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.collections a:last-child {
  border-right: 0;
}

.collections span {
  color: var(--gold);
  font-weight: 900;
}

.collections strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 3vw, 48px);
}

.collections em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.55;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 1.08fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  background: #171717;
  color: #fff;
}

.feature-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-band .button-dark {
  margin-top: 14px;
  color: var(--ink);
  background: #fff;
}

.calendar-wall {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  min-height: 560px;
}

.calendar-wall span {
  display: block;
  overflow: hidden;
  background: #111;
  box-shadow: var(--shadow);
}

.calendar-wall span:nth-child(2) {
  --calendar-color: #a64d5d;
  transform: translateY(48px);
}

.calendar-wall span:nth-child(3) {
  --calendar-color: #2f7774;
}

.calendar-wall span:nth-child(4) {
  --calendar-color: #283d63;
  transform: translateY(48px);
}

.campaigns {
  background: #fffaf2;
}

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

.campaign-list article {
  min-height: 300px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 250, 242, 0.98)),
    radial-gradient(circle at 80% 12%, rgba(185, 137, 72, 0.28), transparent 31%);
}

.campaign-list span {
  color: var(--rose);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.campaign-list h3 {
  margin: 10px 0 0;
  font-size: 30px;
}

.about {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(30px, 7vw, 100px);
  align-items: center;
}

.about-image {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background-image:
    url("assets/about-dabboo.jpg"),
    linear-gradient(160deg, rgba(16, 16, 16, 0.02), rgba(16, 16, 16, 0.72)),
    radial-gradient(circle at 50% 25%, #e4c1a2 0 10%, transparent 10.5%),
    linear-gradient(135deg, #111 0 35%, #b98948 35% 56%, #f1e5d8 56% 72%, #283d63 72% 100%);
  box-shadow: var(--shadow);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 0;
}

.about-stats div {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.about-stats dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-stats dd {
  margin: 8px 0 0;
  font-weight: 900;
  line-height: 1.25;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(30px, 7vw, 100px);
  align-items: start;
  background: #171717;
  color: #fff;
}

.contact p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-links a {
  display: grid;
  gap: 5px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-links span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-links strong {
  color: #fff;
  font-size: clamp(18px, 2vw, 24px);
  overflow-wrap: anywhere;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.social-links a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form label:nth-child(4),
.contact-form button {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  padding: 15px 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.contact-form .button-dark {
  width: fit-content;
  color: var(--ink);
  background: #fff;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 4vw, 54px);
  color: #fff;
  background: var(--ink);
}

.site-footer strong {
  font-size: 18px;
  font-weight: 900;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero-stat {
    display: none;
  }

  .intro,
  .feature-band,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

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

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

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

  .about-image {
    min-height: 480px;
  }
}

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

  .brand {
    max-width: none;
    font-size: 16px;
    white-space: nowrap;
    line-height: 1;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .header-action {
    min-width: 98px;
    padding: 11px 13px;
  }

  .hero {
    min-height: 90vh;
    padding-top: 118px;
  }

  .hero h1 {
    font-size: clamp(43px, 15vw, 74px);
  }

  .ticker {
    gap: 22px;
  }

  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .section-heading {
    display: block;
  }

  .portfolio-grid,
  .collections,
  .campaign-list,
  .contact-form,
  .about-stats {
    grid-template-columns: 1fr;
  }

  .work-card,
  .work-card-large,
  .work-card-wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 390px;
  }

  .mosaic-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 360px;
  }

  .mosaic-wide,
  .mosaic-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .collections a {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .calendar-wall {
    min-height: 480px;
  }

  .calendar-wall span:nth-child(2),
  .calendar-wall span:nth-child(4) {
    transform: translateY(24px);
  }

  .contact-form label:nth-child(4),
  .contact-form button {
    grid-column: auto;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
