* {
  box-sizing: border-box;
}

:root {
  --bg: #070708;
  --panel: #101014;
  --panel-soft: #15151a;
  --text: #f7f0e6;
  --muted: rgba(247, 240, 230, 0.68);
  --faint: rgba(247, 240, 230, 0.12);
  --gold: #d4aa63;
  --gold-bright: #f4c677;
  --red: #6e1719;
  --blue: #182f52;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 5%, rgba(212, 170, 99, 0.12), transparent 32%),
    radial-gradient(circle at 78% 10%, rgba(110, 23, 25, 0.13), transparent 30%),
    var(--bg);
  line-height: 1.72;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.6), transparent 72%);
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.22;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,0.05) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 40%, rgba(255,255,255,0.04) 0 1px, transparent 1px);
  background-size: 9px 9px, 13px 13px;
  mix-blend-mode: screen;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(7, 7, 8, 0.76);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(247, 240, 230, 0.1);
}

.nav {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo img {
  display: block;
  width: 174px;
  height: auto;
}

.nav-links {
  display: flex;
  gap: 28px;
  color: rgba(247, 240, 230, 0.72);
  font-size: 14px;
  letter-spacing: 0.02em;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--gold-bright);
  transition: right 0.25s ease;
}

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

.nav-links a:hover::after {
  right: 0;
}

.hero {
  position: relative;
  min-height: 94vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 92px 26px 72px;
  background:
    radial-gradient(circle at 50% 0%, rgba(244, 198, 119, 0.2), transparent 32%),
    linear-gradient(180deg, #0b0b0d 0%, #070708 84%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 28%;
  background: linear-gradient(180deg, transparent, var(--bg));
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 110px 110px;
  opacity: 0.42;
  transform: perspective(800px) rotateX(58deg) translateY(120px) scale(1.4);
  transform-origin: bottom center;
  pointer-events: none;
}

.hero-light {
  position: absolute;
  pointer-events: none;
  filter: blur(12px);
}

.hero-light-one {
  top: -260px;
  left: 49%;
  width: 480px;
  height: 1040px;
  transform: translateX(-50%) rotate(3deg);
  background: linear-gradient(180deg, rgba(244, 198, 119, 0.56), rgba(244, 198, 119, 0.1), transparent);
  clip-path: polygon(44% 0, 58% 0, 100% 100%, 0 100%);
  opacity: 0.82;
}

.hero-light-two {
  top: -210px;
  right: 3%;
  width: 310px;
  height: 760px;
  transform: rotate(-18deg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(244, 198, 119, 0.08), transparent);
  clip-path: polygon(45% 0, 60% 0, 100% 100%, 0 100%);
  opacity: 0.46;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.34fr;
  gap: 54px;
  align-items: end;
}

.hero-logo-wrap {
  grid-column: 1 / -1;
  max-width: 930px;
  padding: 22px 0 10px;
}

.hero-logo {
  display: block;
  width: min(760px, 100%);
  height: auto;
  filter: drop-shadow(0 24px 44px rgba(0,0,0,0.42));
}

.hero-content {
  max-width: 830px;
}

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

h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.07em;
}

.hero-copy {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(247, 240, 230, 0.76);
  font-size: 18px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 23px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

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

.button-primary {
  color: #090909;
  background: linear-gradient(135deg, #f8d28d, #c38b3e);
  box-shadow: 0 16px 42px rgba(212, 170, 99, 0.22);
}

.button-secondary {
  color: var(--text);
  border: 1px solid rgba(247, 240, 230, 0.22);
  background: rgba(255,255,255,0.03);
}

.hero-note {
  align-self: stretch;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border: 1px solid rgba(247, 240, 230, 0.14);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border-radius: 28px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.note-number {
  color: var(--gold-bright);
  font-size: 13px;
  font-weight: 900;
}

.hero-note p {
  margin: 0;
  color: rgba(247, 240, 230, 0.68);
  font-size: 20px;
  line-height: 1.34;
}

.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 104px 26px;
}

.section-topline {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}

.section-topline span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(212,170,99,0.7), transparent);
}

.about-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: start;
}

h2 {
  margin: 0;
  font-size: clamp(28px, 4.2vw, 50px);
  line-height: 1.2;
  letter-spacing: -0.055em;
}

.about-copy {
  color: var(--muted);
  font-size: 17px;
}

.about-copy p {
  margin: 0 0 22px;
}

.identity-section {
  padding-top: 26px;
}

.identity-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 60px;
  padding: clamp(34px, 6vw, 70px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 90% 0%, rgba(212,170,99,0.24), transparent 34%),
    linear-gradient(135deg, rgba(21,21,26,0.96), rgba(10,10,12,0.98));
  border: 1px solid rgba(247,240,230,0.12);
  box-shadow: 0 28px 80px rgba(0,0,0,0.35);
}

.identity-card::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -120px;
  width: 280px;
  height: 520px;
  transform: rotate(22deg);
  background: linear-gradient(180deg, rgba(244,198,119,0.18), transparent);
  clip-path: polygon(42% 0, 60% 0, 100% 100%, 0 100%);
}

.identity-card p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  position: relative;
  z-index: 1;
}

.works-section {
  max-width: none;
  background:
    radial-gradient(circle at 0% 15%, rgba(110,23,25,0.16), transparent 28%),
    #0e0e11;
  border-top: 1px solid rgba(247,240,230,0.08);
  border-bottom: 1px solid rgba(247,240,230,0.08);
}

.works-section > * {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  margin-bottom: 44px;
}

.section-heading p:not(.eyebrow) {
  max-width: 740px;
  color: var(--muted);
  font-size: 17px;
}

.case-list {
  display: grid;
  gap: 18px;
}

.case-item {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 88px 1fr 330px;
  gap: 30px;
  align-items: stretch;
  min-height: 300px;
  padding: 22px;
  border-radius: 30px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(247,240,230,0.11);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.case-item:hover {
  transform: translateY(-4px);
  border-color: rgba(244,198,119,0.34);
  background: rgba(255,255,255,0.052);
}

.case-index {
  border-right: 1px solid rgba(247,240,230,0.1);
  color: var(--gold);
  font-weight: 900;
  font-size: 15px;
  padding-top: 8px;
}

.case-main {
  align-self: center;
  padding: 8px 0;
}

.case-meta {
  margin: 0 0 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 11px;
  font-weight: 900;
}

.case-main h3 {
  margin: 0 0 16px;
  font-size: clamp(25px, 3vw, 40px);
  line-height: 1.18;
  letter-spacing: -0.045em;
}

.case-main p:not(.case-meta) {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.tags span {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(247,240,230,0.06);
  border: 1px solid rgba(247,240,230,0.11);
  color: rgba(247,240,230,0.7);
  font-size: 12px;
}

.case-visual {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  border-radius: 24px;
  display: flex;
  align-items: flex-end;
  padding: 22px;
}

.case-red .case-visual {
  background:
    radial-gradient(circle at 38% 18%, rgba(255,225,167,0.86), transparent 17%),
    linear-gradient(135deg, rgba(112,18,20,0.95), rgba(7,7,8,0.98) 70%);
}

.case-gold .case-visual {
  background:
    radial-gradient(circle at 48% 18%, rgba(255,225,167,0.75), transparent 18%),
    linear-gradient(135deg, rgba(126,78,28,0.94), rgba(7,7,8,0.98) 74%);
}

.case-blue .case-visual {
  background:
    radial-gradient(circle at 40% 18%, rgba(181,215,255,0.72), transparent 18%),
    linear-gradient(135deg, rgba(20,48,88,0.94), rgba(7,7,8,0.98) 74%);
}

.case-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.1), transparent 42%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04), rgba(255,255,255,0.04) 1px, transparent 1px, transparent 20px);
}

.case-visual::after {
  content: "";
  position: absolute;
  top: -110px;
  right: 24px;
  width: 140px;
  height: 420px;
  transform: rotate(17deg);
  background: linear-gradient(180deg, rgba(255,255,255,0.24), transparent);
  clip-path: polygon(45% 0, 58% 0, 100% 100%, 0 100%);
  opacity: 0.7;
}

.case-visual span {
  position: relative;
  z-index: 2;
  color: rgba(255,255,255,0.78);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
}

.services-section {
  padding-bottom: 64px;
}

.compact {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 312px;
  padding: 28px 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.022));
  border: 1px solid rgba(247,240,230,0.11);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.72;
}

.service-num {
  display: inline-flex;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 54px;
}

.service-card h3 {
  margin: 0 0 16px;
  font-size: 23px;
  line-height: 1.22;
  letter-spacing: -0.03em;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.statement-section {
  padding-top: 36px;
}

.statement {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 8vw, 86px);
  border-radius: 38px;
  background:
    radial-gradient(circle at 18% 22%, rgba(244,198,119,0.18), transparent 24%),
    radial-gradient(circle at 82% 8%, rgba(110,23,25,0.22), transparent 28%),
    linear-gradient(135deg, #151316, #080809);
  border: 1px solid rgba(247,240,230,0.12);
}

.statement::after {
  content: "LIGHTSON";
  position: absolute;
  right: -18px;
  bottom: -24px;
  color: rgba(255,255,255,0.035);
  font-size: clamp(70px, 17vw, 230px);
  font-weight: 1000;
  letter-spacing: -0.1em;
  line-height: 0.8;
}

.statement-mark {
  margin: 0 0 6px;
  color: rgba(244,198,119,0.34);
  font-family: Georgia, serif;
  font-size: 110px;
  line-height: 0.7;
}

.statement h2,
.statement p {
  position: relative;
  z-index: 1;
}

.statement p:last-child {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.contact-section {
  padding-top: 44px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 50px;
  align-items: center;
  padding: clamp(32px, 6vw, 72px);
  border-radius: 36px;
  background: linear-gradient(135deg, #f7f0e6, #d8c7ad);
  color: #101011;
}

.contact-panel .eyebrow {
  color: #8a5d23;
}

.contact-copy {
  max-width: 680px;
  color: rgba(16,16,17,0.66);
  font-size: 17px;
}

.contact-info {
  padding: 26px;
  border-radius: 26px;
  background: rgba(16,16,17,0.07);
}

.contact-info p {
  margin: 0 0 20px;
  color: rgba(16,16,17,0.72);
}

.contact-info p:last-child {
  margin-bottom: 0;
}

.contact-info strong {
  color: #101011;
}

.footer {
  max-width: 1240px;
  margin: 0 auto;
  padding: 36px 26px 54px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
  color: rgba(247,240,230,0.48);
  font-size: 13px;
}

.footer img {
  width: 220px;
  height: auto;
  opacity: 0.78;
}

.footer p {
  margin: 3px 0;
  text-align: right;
}

@media (max-width: 980px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .nav-logo img {
    width: 150px;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 14px 20px;
  }

  .hero {
    min-height: auto;
    padding-top: 78px;
  }

  .hero-inner,
  .about-layout,
  .identity-card,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero-note {
    min-height: auto;
    gap: 50px;
  }

  .case-item {
    grid-template-columns: 1fr;
  }

  .case-index {
    border-right: none;
    border-bottom: 1px solid rgba(247,240,230,0.1);
    padding-bottom: 12px;
  }

  .case-visual {
    min-height: 230px;
  }

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

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

  .footer p {
    text-align: left;
  }
}

@media (max-width: 620px) {
  .section {
    padding: 74px 20px;
  }

  .hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-logo {
    width: 100%;
  }

  h1 {
    font-size: clamp(40px, 13vw, 64px);
  }

  .hero-copy {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .service-num {
    margin-bottom: 32px;
  }

  .contact-panel,
  .statement,
  .identity-card {
    border-radius: 28px;
  }

  .case-item {
    padding: 16px;
    border-radius: 24px;
  }
}


/* V3 homepage image upgrade */

.hero-photo-card {
  padding: 0;
  overflow: hidden;
  justify-content: flex-end;
  background: rgba(255,255,255,0.035);
}

.hero-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.06);
  opacity: 0.9;
}

.hero-note-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(7, 7, 8, 0.62);
  border: 1px solid rgba(247, 240, 230, 0.14);
  backdrop-filter: blur(14px);
}

.hero-note-caption p {
  margin-top: 36px;
}

.brand-gallery-section {
  padding-top: 22px;
}

.brand-gallery {
  display: grid;
  grid-template-columns: 1.05fr 1fr 0.82fr;
  grid-auto-rows: 230px;
  gap: 16px;
}

.brand-shot {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 28px;
  border: 1px solid rgba(247, 240, 230, 0.12);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.brand-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(7,7,8,0.42)),
    radial-gradient(circle at 18% 0%, rgba(244, 198, 119, 0.16), transparent 32%);
  pointer-events: none;
}

.brand-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.88) contrast(1.05);
  transition: transform 0.6s ease;
}

.brand-shot:hover img {
  transform: scale(1.045);
}

.brand-shot.tall {
  grid-row: span 2;
}

.brand-shot.wide {
  grid-column: span 2;
}

.image-visual {
  padding: 0;
  background: #070708;
}

.image-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.9) contrast(1.04) brightness(0.92);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.case-item:hover .image-visual img {
  transform: scale(1.055);
  filter: saturate(1) contrast(1.08) brightness(0.98);
}

.image-visual::before {
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 30%, rgba(7,7,8,0.84)),
    linear-gradient(120deg, rgba(244,198,119,0.16), transparent 40%);
}

.image-visual::after {
  z-index: 1;
}

.image-visual span {
  z-index: 2;
  text-shadow: 0 12px 32px rgba(0,0,0,0.6);
}

@media (max-width: 980px) {
  .hero-photo-card img {
    min-height: 320px;
  }

  .hero-note-caption {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: -110px 18px 18px;
  }

  .brand-gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }

  .brand-shot.tall {
    grid-row: span 1;
  }

  .brand-shot.wide {
    grid-column: span 2;
  }
}

@media (max-width: 620px) {
  .brand-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .brand-shot.wide {
    grid-column: auto;
  }
}


/* ===== Requested homepage revision ===== */

.hero-revised-header {
  background: rgba(7, 7, 8, 0.76);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(247, 240, 230, 0.1);
}

.hero-centered-logo {
  min-height: 94vh;
  padding: 96px 26px 70px;
  background:
    radial-gradient(circle at 50% 0%, rgba(244, 198, 119, 0.20), transparent 34%),
    linear-gradient(180deg, #0b0b0d 0%, #070708 84%);
}

.hero-centered-logo .hero-grid {
  opacity: 0.28;
}

.hero-light-center {
  top: -180px;
  left: 50%;
  width: 560px;
  height: 980px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(244, 198, 119, 0.48), rgba(244, 198, 119, 0.12), transparent);
  clip-path: polygon(42% 0, 58% 0, 100% 100%, 0 100%);
  filter: blur(8px);
  opacity: 0.78;
}

.hero-side-photo {
  position: absolute;
  top: 120px;
  right: 18px;
  width: min(31vw, 420px);
  height: min(60vh, 560px);
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(247, 240, 230, 0.08);
  opacity: 0.34;
  box-shadow: 0 24px 80px rgba(0,0,0,0.38);
  z-index: 1;
}

.hero-side-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,7,8,0.92) 0%, rgba(7,7,8,0.62) 30%, rgba(7,7,8,0.18) 60%, rgba(7,7,8,0.24) 100%),
    linear-gradient(180deg, rgba(7,7,8,0.16), rgba(7,7,8,0.52));
  z-index: 2;
}

.hero-side-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 22% 44%, rgba(7,7,8,0.06), rgba(7,7,8,0.5) 68%);
  z-index: 2;
}

.hero-side-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.82) contrast(1.03) brightness(0.78);
}

.hero-centered-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1240px;
}

.hero-main-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 900px;
  text-align: center;
}

.centered-logo-wrap {
  max-width: none;
  padding: 26px 0 14px;
  display: flex;
  justify-content: center;
}

.hero-logo-centered {
  width: min(960px, 100%);
  margin: 0 auto;
  filter: drop-shadow(0 22px 44px rgba(0,0,0,0.42));
}

.hero-content-centered {
  max-width: 820px;
  margin: 0 auto;
}

.hero-slogan-small {
  margin: 10px 0 0;
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.hero-content-centered .hero-copy {
  margin: 22px auto 0;
  max-width: 720px;
  font-size: 17px;
  color: rgba(247, 240, 230, 0.74);
}

.hero-content-centered .hero-actions {
  justify-content: center;
  margin-top: 30px;
}

.about-section {
  padding-top: 96px;
}

.brand-gallery-section {
  padding-top: 26px;
}

.brand-gallery {
  display: grid;
  grid-template-columns: 1.05fr 1fr 0.82fr;
  grid-auto-rows: 230px;
  gap: 16px;
}

.brand-shot {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 28px;
  border: 1px solid rgba(247, 240, 230, 0.12);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.brand-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(7,7,8,0.42)),
    radial-gradient(circle at 18% 0%, rgba(244, 198, 119, 0.16), transparent 32%);
  pointer-events: none;
}

.brand-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.88) contrast(1.05);
  transition: transform 0.6s ease;
}

.brand-shot:hover img {
  transform: scale(1.045);
}

.brand-shot.tall {
  grid-row: span 2;
}

.brand-shot.wide {
  grid-column: span 2;
}

@media (max-width: 1100px) {
  .hero-logo-centered {
    width: min(880px, 96%);
  }

  .hero-side-photo {
    width: 300px;
    height: 420px;
    opacity: 0.28;
  }
}

@media (max-width: 980px) {
  .hero-centered-logo {
    min-height: auto;
    padding-top: 88px;
  }

  .hero-side-photo {
    position: relative;
    top: auto;
    right: auto;
    width: calc(100% - 40px);
    max-width: 520px;
    height: 320px;
    margin: 28px auto 0;
    opacity: 0.52;
  }

  .hero-light-center {
    width: 460px;
    height: 760px;
    top: -120px;
  }

  .hero-logo-centered {
    width: min(780px, 100%);
  }

  .hero-slogan-small {
    font-size: clamp(24px, 5vw, 36px);
  }

  .brand-gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }

  .brand-shot.tall {
    grid-row: span 1;
  }

  .brand-shot.wide {
    grid-column: span 2;
  }
}

@media (max-width: 620px) {
  .nav-logo img {
    width: 152px;
  }

  .hero-centered-logo {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-side-photo {
    width: calc(100% - 28px);
    height: 250px;
  }

  .hero-content-centered .hero-copy {
    font-size: 15px;
  }

  .brand-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .brand-shot.wide {
    grid-column: auto;
  }
}

/* Project detail entry link */
.case-link {
  display: block;
}
.case-link .case-item {
  cursor: pointer;
}
.case-entry-link {
  margin: 18px 0 0;
  color: var(--gold-bright);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
