@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Playfair+Display:wght@600;700;800&display=swap");

:root {
  --bg: #080808;
  --bg-2: #0f0f10;
  --bg-3: #131314;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-2: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.08);
  --text: #f4ede4;
  --muted: #8d877f;
  --muted-2: #5f5a55;
  --gold: #c9a85a;
  --gold-2: #e1c374;
  --shadow: 0 22px 80px rgba(0, 0, 0, 0.5);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1260px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(201, 168, 90, 0.08), transparent 26%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.03), transparent 18%),
    linear-gradient(180deg, #050505 0%, #0a0a0a 45%, #080808 100%);
  color: var(--text);
  font-family: "DM Sans", system-ui, sans-serif;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: none;
  color: inherit;
}

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

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

.page-shell {
  position: relative;
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background-color 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}

.topbar.is-scrolled {
  background: rgba(7, 7, 7, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand__mark {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(201, 168, 90, 0.3);
  border-radius: 10px;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.08em;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(201, 168, 90, 0.12), rgba(201, 168, 90, 0.02));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.brand__logo {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 10px;
  flex: 0 0 auto;
  border: 1px solid rgba(201, 168, 90, 0.22);
  background: #111;
}

.brand__logo--small {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.brand__text strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand__text small {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.66rem;
}

.topbar__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.topbar__links a {
  position: relative;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.74rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.topbar__links a:hover,
.topbar__links a.is-active {
  color: var(--gold);
}

.topbar__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.55rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.topbar__links a.is-active::after,
.topbar__links a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.menu-toggle span {
  width: 18px;
  height: 1.5px;
  background: var(--text);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(8, 8, 8, 0.98);
}

.mobile-menu__inner {
  padding-block: 1.1rem 1.4rem;
  display: grid;
  gap: 0.85rem;
}

.mobile-menu__inner a {
  padding-block: 0.55rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 700;
}

.mobile-menu__inner a.is-active {
  color: var(--gold);
}

.section {
  position: relative;
  padding: 6rem 0;
}

.section--alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.03));
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 55%, rgba(201, 168, 90, 0.1), transparent 18%),
    radial-gradient(circle at 84% 42%, rgba(255, 205, 119, 0.16), transparent 11%),
    linear-gradient(90deg, rgba(10, 10, 10, 0.94) 0%, rgba(10, 10, 10, 0.72) 48%, rgba(10, 10, 10, 0.35) 100%);
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 5px 5px;
  mask-image: radial-gradient(circle at center, black 52%, transparent 100%);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: 2rem;
  align-items: center;
}

.hero__copy {
  max-width: 48rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.72rem;
  font-weight: 700;
}

.hero h1,
.section-heading h2,
.about-grid__content h3,
.campaign-card__content h3,
.blog-card h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
}

.hero h1 {
  font-size: clamp(4rem, 9vw, 7.4rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  max-width: 7ch;
}

.hero h1 span {
  color: var(--gold);
}

.hero p {
  margin: 1.6rem 0 0;
  max-width: 36rem;
  color: #9b948d;
  font-size: 1.1rem;
  line-height: 1.72;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.9rem 1.7rem;
  border-radius: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

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

.button--solid {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #0a0a0a;
  box-shadow: 0 12px 30px rgba(201, 168, 90, 0.16);
}

.button--outline {
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  background: rgba(255, 255, 255, 0.01);
}

.button--outline:hover {
  border-color: rgba(201, 168, 90, 0.55);
  color: var(--gold);
}

.button--full {
  width: 100%;
}

.hero__scene {
  position: relative;
  min-height: 620px;
  border-radius: 30px;
  overflow: hidden;
  background: #090909;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__scene-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 9, 9, 0.92) 0%, rgba(9, 9, 9, 0.58) 44%, rgba(9, 9, 9, 0.25) 72%, rgba(9, 9, 9, 0.5) 100%),
    linear-gradient(180deg, rgba(9, 9, 9, 0.1), rgba(9, 9, 9, 0.52));
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 2.4rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.66rem;
}

.scroll-hint i {
  width: 1px;
  height: 46px;
  background: linear-gradient(180deg, var(--gold), transparent);
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading__line {
  display: block;
  width: 64px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.15rem;
}

.section-heading h2 {
  font-size: clamp(2.3rem, 4vw, 3.9rem);
  line-height: 1.02;
}

.tabbar {
  display: flex;
  gap: 1.4rem;
  margin-bottom: 2rem;
}

.tabbar__item {
  padding: 0 0 0.4rem;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.76rem;
  font-weight: 700;
  border-bottom: 1px solid transparent;
}

.tabbar__item--active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.portfolio-grid,
.campaign-grid,
.blog-grid {
  display: grid;
  gap: 1.4rem;
}

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

.portfolio-card:nth-child(1),
.portfolio-card:nth-child(4) {
  grid-column: span 4;
}

.portfolio-card:nth-child(2),
.portfolio-card:nth-child(3),
.portfolio-card:nth-child(5),
.portfolio-card:nth-child(6) {
  grid-column: span 4;
}

.portfolio-card,
.campaign-card,
.blog-card,
.contact-grid__info,
.contact-grid__form,
.about-grid__content,
.about-grid__visual,
.contact-note,
.alert {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.2);
}

.portfolio-card {
  overflow: hidden;
}

.portfolio-card__art,
.campaign-card__art {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #090909;
}

.portfolio-card__art {
  aspect-ratio: 3 / 4;
}

.campaign-card__art {
  aspect-ratio: 4 / 3;
}

.portfolio-card__image,
.campaign-card__image,
.about-portrait__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.portfolio-card__overlay,
.campaign-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 9, 9, 0.06) 0%, rgba(9, 9, 9, 0.28) 46%, rgba(9, 9, 9, 0.86) 100%),
    radial-gradient(circle at 50% 15%, rgba(255, 214, 146, 0.08), transparent 26%);
}

.art-grain {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 8px 8px;
}

.art-glow,
.art-highlight {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
}

.art-glow {
  inset: auto auto 10% 8%;
  width: 58%;
  height: 38%;
  background: radial-gradient(circle, rgba(255, 214, 146, 0.15), transparent 72%);
}

.art-highlight {
  inset: 10% 10% auto auto;
  width: 26%;
  height: 26%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 72%);
}

.art-shape {
  position: absolute;
  border-radius: 999px;
}

.art-label {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  color: rgba(244, 237, 228, 0.6);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1rem;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.portfolio-card__art--editorial {
  background:
    linear-gradient(180deg, rgba(23, 18, 14, 0.2), rgba(0, 0, 0, 0.72)),
    linear-gradient(115deg, #251810 0%, #0a0909 42%, #0f0906 100%);
}

.portfolio-card__art--editorial .art-shape--one {
  left: 16%;
  top: 10%;
  width: 54%;
  height: 82%;
  border-radius: 36% 36% 16% 16%;
  background: linear-gradient(180deg, rgba(255, 220, 172, 0.18), rgba(0, 0, 0, 0.62) 70%);
  transform: skewX(-2deg);
}

.portfolio-card__art--editorial .art-shape--two {
  right: 6%;
  top: 14%;
  width: 26%;
  height: 72%;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(201, 168, 90, 0.08), rgba(0, 0, 0, 0.56));
}

.portfolio-card__art--editorial .art-shape--three {
  left: 8%;
  bottom: 8%;
  width: 84%;
  height: 18%;
  border-radius: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55), rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.7));
}

.portfolio-card__art--luxury {
  background:
    radial-gradient(circle at 58% 44%, rgba(242, 207, 132, 0.22), transparent 15%),
    linear-gradient(145deg, #20180f 0%, #0a0908 48%, #171615 100%);
}

.portfolio-card__art--luxury .art-shape--one {
  left: 24%;
  top: 18%;
  width: 22%;
  height: 22%;
  border-radius: 50%;
  border: 6px solid rgba(214, 173, 86, 0.7);
  box-shadow: 0 0 0 14px rgba(214, 173, 86, 0.06);
}

.portfolio-card__art--luxury .art-shape--two {
  left: 40%;
  top: 38%;
  width: 42%;
  height: 14%;
  background: linear-gradient(90deg, rgba(214, 173, 86, 0.75), rgba(255, 230, 169, 0.14));
  transform: rotate(-18deg);
}

.portfolio-card__art--luxury .art-shape--three {
  right: 8%;
  bottom: 16%;
  width: 20%;
  height: 20%;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.35);
}

.portfolio-card__art--portrait {
  background:
    linear-gradient(180deg, rgba(14, 10, 10, 0.12), rgba(0, 0, 0, 0.72)),
    linear-gradient(140deg, #19110d 0%, #090909 46%, #111010 100%);
}

.portfolio-card__art--portrait .art-shape--one {
  left: 26%;
  top: 13%;
  width: 34%;
  height: 66%;
  border-radius: 48% 48% 26% 26%;
  background: linear-gradient(180deg, rgba(241, 217, 184, 0.22), rgba(0, 0, 0, 0.65));
}

.portfolio-card__art--portrait .art-shape--two {
  left: 18%;
  bottom: 8%;
  width: 60%;
  height: 26%;
  border-radius: 38% 38% 16% 16%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.72));
}

.portfolio-card__art--portrait .art-shape--three {
  right: 14%;
  top: 18%;
  width: 16%;
  height: 52%;
  background: rgba(201, 168, 90, 0.07);
}

.portfolio-card__art--mixology {
  background:
    radial-gradient(circle at 40% 25%, rgba(243, 189, 82, 0.22), transparent 14%),
    linear-gradient(155deg, #1b120b 0%, #090909 52%, #16120e 100%);
}

.portfolio-card__art--mixology .art-shape--one {
  left: 28%;
  top: 20%;
  width: 18%;
  height: 52%;
  background: linear-gradient(180deg, rgba(217, 157, 61, 0.24), rgba(0, 0, 0, 0.8));
  transform: rotate(-14deg);
}

.portfolio-card__art--mixology .art-shape--two {
  left: 42%;
  top: 14%;
  width: 34%;
  height: 34%;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 90, 0.34);
  background: radial-gradient(circle, rgba(255, 214, 146, 0.18), transparent 60%);
}

.portfolio-card__art--mixology .art-shape--three {
  right: 12%;
  bottom: 10%;
  width: 26%;
  height: 26%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 70%);
}

.portfolio-card__art--architecture {
  background:
    linear-gradient(180deg, rgba(17, 16, 15, 0.12), rgba(0, 0, 0, 0.68)),
    linear-gradient(145deg, #1a1510 0%, #090909 46%, #131313 100%);
}

.portfolio-card__art--architecture .art-shape--one {
  left: 14%;
  top: 10%;
  width: 14%;
  height: 84%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.58));
}

.portfolio-card__art--architecture .art-shape--two {
  left: 36%;
  top: 16%;
  width: 20%;
  height: 68%;
  background: linear-gradient(180deg, rgba(201, 168, 90, 0.08), rgba(0, 0, 0, 0.5));
}

.portfolio-card__art--architecture .art-shape--three {
  right: 18%;
  top: 22%;
  width: 18%;
  height: 56%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.62));
}

.portfolio-card__art--wedding {
  background:
    radial-gradient(circle at 52% 18%, rgba(255, 189, 111, 0.18), transparent 18%),
    linear-gradient(145deg, #231711 0%, #090909 50%, #140f0d 100%);
}

.portfolio-card__art--wedding .art-shape--one {
  left: 18%;
  top: 10%;
  width: 28%;
  height: 60%;
  border-radius: 50% 50% 40% 40%;
  background: linear-gradient(180deg, rgba(255, 223, 172, 0.14), rgba(0, 0, 0, 0.58));
}

.portfolio-card__art--wedding .art-shape--two {
  right: 18%;
  bottom: 10%;
  width: 30%;
  height: 30%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 214, 146, 0.14), transparent 68%);
}

.portfolio-card__art--wedding .art-shape--three {
  left: 0;
  right: 0;
  bottom: 8%;
  height: 24%;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(255, 255, 255, 0.03));
}

.portfolio-card__content,
.campaign-card__content {
  position: relative;
  padding: 1.35rem 1.35rem 1.5rem;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.36)),
    rgba(0, 0, 0, 0.26);
}

.portfolio-card__content span,
.campaign-card__content p,
.blog-card__meta span,
.contact-item span,
.section-heading .eyebrow,
.contact-note strong {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
}

.portfolio-card__content span,
.campaign-card__content p {
  color: var(--gold);
  font-weight: 700;
}

.portfolio-card__content h3,
.campaign-card__content h3,
.blog-card h3,
.about-grid__content h3 {
  font-size: clamp(1.45rem, 1.9vw, 2rem);
  line-height: 1.1;
}

.portfolio-card__content p,
.campaign-card__content span,
.blog-card p,
.about-grid__content p,
.contact-grid__lede,
.contact-note p {
  color: #989188;
  line-height: 1.7;
}

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

.campaign-card {
  overflow: hidden;
  grid-column: span 4;
}

.campaign-card__art--perfume {
  background:
    radial-gradient(circle at 62% 36%, rgba(220, 182, 121, 0.22), transparent 15%),
    linear-gradient(145deg, #16100b 0%, #090909 52%, #1a1715 100%);
}

.campaign-card__art--perfume .art-shape--one {
  left: 38%;
  top: 20%;
  width: 18%;
  height: 52%;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(242, 207, 132, 0.32), rgba(0, 0, 0, 0.72));
}

.campaign-card__art--perfume .art-shape--two {
  left: 15%;
  top: 15%;
  width: 28%;
  height: 28%;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 90, 0.26);
}

.campaign-card__art--perfume .art-shape--three {
  right: 14%;
  bottom: 14%;
  width: 18%;
  height: 18%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.07), transparent 68%);
}

.campaign-card__art--streetwear {
  background:
    linear-gradient(180deg, rgba(17, 12, 10, 0.1), rgba(0, 0, 0, 0.68)),
    linear-gradient(135deg, #1a120d 0%, #080808 56%, #171312 100%);
}

.campaign-card__art--streetwear .art-shape--one {
  left: 18%;
  top: 14%;
  width: 26%;
  height: 58%;
  background: linear-gradient(180deg, rgba(232, 201, 139, 0.16), rgba(0, 0, 0, 0.7));
  transform: skewX(-8deg);
}

.campaign-card__art--streetwear .art-shape--two {
  left: 50%;
  top: 18%;
  width: 16%;
  height: 62%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.7));
}

.campaign-card__art--streetwear .art-shape--three {
  right: 18%;
  bottom: 16%;
  width: 30%;
  height: 20%;
  background: linear-gradient(90deg, rgba(201, 168, 90, 0.16), rgba(0, 0, 0, 0.28));
}

.campaign-card__art--spirits {
  background:
    radial-gradient(circle at 62% 28%, rgba(245, 212, 148, 0.2), transparent 18%),
    linear-gradient(150deg, #17110c 0%, #090909 48%, #131110 100%);
}

.campaign-card__art--spirits .art-shape--one {
  left: 28%;
  top: 16%;
  width: 18%;
  height: 66%;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(217, 157, 61, 0.14), rgba(0, 0, 0, 0.8));
}

.campaign-card__art--spirits .art-shape--two {
  left: 46%;
  top: 28%;
  width: 16%;
  height: 42%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.campaign-card__art--spirits .art-shape--three {
  right: 12%;
  bottom: 12%;
  width: 20%;
  height: 20%;
  border: 1px solid rgba(201, 168, 90, 0.26);
  background: rgba(0, 0, 0, 0.3);
}

.campaign-card__tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(201, 168, 90, 0.45);
  border-radius: 8px;
  color: var(--gold);
  background: rgba(201, 168, 90, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.62rem;
  font-weight: 700;
}

.campaign-card__content p {
  margin: 0 0 0.55rem;
}

.campaign-card__content span {
  display: block;
}

.stats {
  margin-top: 4rem;
  padding-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.stats__item strong {
  display: block;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.2rem, 3vw, 3.4rem);
}

.stats__item span {
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.68rem;
  font-weight: 700;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.about-grid__visual,
.about-grid__content {
  overflow: hidden;
}

.about-portrait {
  position: relative;
  min-height: 620px;
  isolation: isolate;
  background: #090909;
}

.about-portrait__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 15%, transparent 15% 19%, rgba(255, 255, 255, 0.04) 19% 20%, transparent 20% 100%),
    linear-gradient(180deg, rgba(9, 9, 9, 0.14) 0 72%, rgba(0, 0, 0, 0.44) 100%);
  opacity: 0.42;
}

.about-portrait__frame {
  position: absolute;
  inset: auto 4% 4% auto;
  width: 82%;
  height: 82%;
  border: 1px solid rgba(201, 168, 90, 0.3);
}

.about-grid__content {
  padding: 2rem;
}

.about-grid__content h3 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  margin-bottom: 1.2rem;
}

.about-grid__content p + p {
  margin-top: 1rem;
}

.skills {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1.2rem;
  margin-top: 1.8rem;
}

.skill {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #beb7af;
}

.skill::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(201, 168, 90, 0.5);
}

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

.blog-card {
  padding: 1.6rem;
}

.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.9rem;
  margin-bottom: 1rem;
}

.blog-card__meta span {
  color: var(--muted-2);
}

.blog-card__meta span:first-child {
  color: var(--gold);
  padding: 0.35rem 0.55rem;
  background: rgba(201, 168, 90, 0.08);
  border: 1px solid rgba(201, 168, 90, 0.16);
  border-radius: 999px;
}

.blog-card h3 {
  margin-bottom: 0.8rem;
}

.blog-card p {
  margin: 0 0 1.2rem;
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 0.94rem;
  font-weight: 700;
  transition: gap 0.2s ease;
}

.blog-card__link:hover {
  gap: 0.75rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 2rem;
}

.contact-grid__info,
.contact-grid__form {
  padding: 2rem;
}

.contact-grid__lede {
  margin: 0 0 2rem;
  font-size: 1.02rem;
}

.contact-list {
  display: grid;
  gap: 1.25rem;
}

.contact-item span {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--muted-2);
}

.contact-item strong {
  font-size: 1rem;
  font-weight: 500;
}

.contact-note {
  margin-top: 1.4rem;
  padding: 1rem 1.1rem;
}

.contact-note strong {
  display: inline-block;
  margin-bottom: 0.6rem;
  color: var(--gold);
}

.contact-note p {
  margin: 0;
}

.contact-note code {
  padding: 0.1rem 0.3rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--gold);
}

.alert {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
}

.alert--success {
  border-color: rgba(106, 208, 142, 0.35);
  color: #b8edcb;
}

.alert--error {
  border-color: rgba(255, 103, 103, 0.35);
  color: #ffb3b3;
}

.contact-form {
  display: grid;
  gap: 1.2rem;
}

.field {
  display: grid;
  gap: 0.5rem;
}

.field label {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.66rem;
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #66615a;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(201, 168, 90, 0.55);
  box-shadow: 0 0 0 3px rgba(201, 168, 90, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.field small {
  min-height: 1rem;
  color: #ff9c9c;
}

.form-status {
  min-height: 1.2rem;
  margin: 0;
  color: var(--muted);
}

.spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(0, 0, 0, 0.18);
  border-top-color: rgba(0, 0, 0, 0.9);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.footer {
  padding: 2rem 0 2.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer__brand,
.footer__links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__brand span:last-child {
  color: var(--muted-2);
  font-size: 0.95rem;
}

.footer__links a {
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.66rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: var(--gold);
}

.back-to-top {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 40;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 90, 0.4);
  background: rgba(201, 168, 90, 0.1);
  color: var(--gold);
  font-size: 1.3rem;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.26);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1080px) {
  .hero__grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero__scene {
    min-height: 520px;
  }

  .portfolio-grid,
  .campaign-grid,
  .blog-grid,
  .stats {
    grid-template-columns: 1fr 1fr;
  }

  .portfolio-card,
  .campaign-card {
    grid-column: auto;
  }

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

@media (max-width: 760px) {
  .topbar__links--desktop {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    min-height: auto;
    padding-top: 7rem;
    padding-bottom: 5rem;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(3.1rem, 16vw, 5rem);
  }

  .hero__scene {
    min-height: 380px;
  }

  .hero__camera {
    width: 72%;
    left: 4%;
    top: 34%;
  }

  .hero__panel {
    width: 32%;
    font-size: clamp(1.6rem, 7vw, 2.4rem);
  }

  .hero__light {
    right: 14%;
    top: 39%;
  }

  .section {
    padding: 4.6rem 0;
  }

  .portfolio-grid,
  .campaign-grid,
  .stats,
  .skills,
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .stats {
    display: grid;
  }

  .footer__inner {
    align-items: flex-start;
  }

  .footer__links {
    gap: 0.8rem 1rem;
  }

  .about-portrait {
    min-height: 420px;
  }

  .about-grid__content,
  .contact-grid__info,
  .contact-grid__form,
  .blog-card,
  .portfolio-card__content,
  .campaign-card__content {
    padding: 1.2rem;
  }
}
