:root {
  --sage: #7D9D75;
  --burnt: #C86B3D;
  --navy: #1B2A41;
  --offwhite: #F4F1EA;
  --shadow: 0 18px 48px rgba(27, 42, 65, 0.18);
  --radius: 18px;
  --shell: min(1180px, 90vw);
  --font-headline: 'Montserrat', 'Oswald', sans-serif;
  --font-body: 'Lato', 'Roboto', sans-serif;
  --font-accent: 'Merriweather', serif;
  --hero-img: url('../images/herowide.png');
  --parallax-one: url('../images/Parallax1.png');
  --parallax-two: url('../images/Parallax2.png');
  --portrait-ami: url('../images/PortraitAmi.png');
  --portrait-vlad: url('../images/PortraitVlad.png');
  --portrait-duo: url('../images/PortraitDuo.png');
  --shot-one: url('../images/Gallery1.png');
  --shot-two: url('../images/Gallery2.png');
  --shot-three: url('../images/Gallery3.png');
  --shot-four: url('../images/hero2.png');
  --merch-one: url('../images/Merch1.png');
  --merch-two: url('../images/Merch2.png');
  --merch-three: url('../images/Merch3.png');
}

* { box-sizing: border-box; }
*::selection { background: rgba(125, 157, 117, 0.35); }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--offwhite);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 18px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.topbar.scrolled {
  background: rgba(244, 241, 234, 0.96);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  padding: 12px 5vw;
  backdrop-filter: blur(10px);
}

.logo {
  font-family: var(--font-headline);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
  font-weight: 600;
}

.nav a { position: relative; padding: 6px 10px; }

.nav a::after {
  content: '';
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: -6px;
  height: 2px;
  background: var(--burnt);
  opacity: 0;
  transform: scaleX(0.6);
  transform-origin: center;
  transition: all 0.2s ease;
}

.nav a:hover::after { opacity: 1; transform: scaleX(1); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--navy);
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

.btn.primary { background: var(--burnt); color: white; border-color: var(--burnt); }
.btn.ghost { background: transparent; color: var(--navy); }

.shell { width: var(--shell); margin: 0 auto; }
.section { padding: 90px 0; }

.section__header { max-width: 760px; margin-bottom: 40px; }

h1, h2, h3 { margin: 0 0 12px; font-family: var(--font-headline); color: var(--navy); }

h1 { font-size: clamp(36px, 5vw, 56px); line-height: 1.1; }
h2 { font-size: clamp(28px, 4vw, 38px); }
h3 { font-size: 22px; }

p { margin: 0 0 14px; }
.body { color: rgba(27, 42, 65, 0.82); }
.eyebrow { text-transform: uppercase; letter-spacing: 0.2em; font-size: 12px; font-weight: 800; color: var(--burnt); }

.hero {
  min-height: 90vh;
  display: grid;
  place-items: center;
  text-align: left;
  color: var(--navy);
  position: relative;
  padding: 140px 5vw 120px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(244,241,234,0.96) 35%, rgba(244,241,234,0.3));
  z-index: 1;
}

.hero__content { position: relative; z-index: 2; max-width: 720px; }
.hero__badge {
  position: absolute;
  right: 5vw;
  bottom: 40px;
  background: rgba(27, 42, 65, 0.88);
  color: white;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  z-index: 2;
}

.hero .cta-row { display: flex; gap: 12px; margin: 20px 0 24px; flex-wrap: wrap; }
.hero .lede { font-size: 18px; max-width: 640px; color: rgba(27, 42, 65, 0.88); }

.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 14px; max-width: 640px; }
.stat__num { font-weight: 800; font-size: 20px; }
.stat__label { display: block; color: rgba(27, 42, 65, 0.72); }

.parallax {
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.parallax::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27, 42, 65, 0.45), rgba(27, 42, 65, 0.25));
}

.break { color: white; text-align: center; display: grid; place-items: center; min-height: 360px; padding: 80px 5vw; }
.break__content { position: relative; z-index: 1; max-width: 720px; }

.grid { display: grid; gap: 18px; }
.grid.two { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid.three { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.card {
  background: white;
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(27, 42, 65, 0.06);
}

.card ul { padding-left: 18px; color: rgba(27, 42, 65, 0.8); }
.card li { margin-bottom: 8px; }

.image-placeholder {
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(27, 42, 65, 0.08), var(--shadow);
  position: relative;
  overflow: hidden;
}

.image-placeholder::before {
  content: attr(data-label);
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(27, 42, 65, 0.78);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.portraits .section__header { margin-bottom: 32px; }
.portrait-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.portrait-card { background: white; padding: 18px; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid rgba(27, 42, 65, 0.06); display: grid; gap: 12px; align-items: center; text-align: center; animation: fadeUp 0.8s ease both; }
.portrait__img { width: 160px; height: 160px; margin: 0 auto; border-radius: 50%; border: 6px solid var(--offwhite); }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.gallery-card { background: white; padding: 14px; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid rgba(27, 42, 65, 0.06); display: grid; gap: 10px; }
.gallery-card .image-placeholder { padding-top: 70%; }
.gallery-card.tall .image-placeholder { padding-top: 120%; }
.gallery-card.wide { grid-column: span 2; }

@media (max-width: 760px) {
  .gallery-card.wide { grid-column: span 1; }
}

.product-thumb { padding-top: 60%; margin: 6px 0 12px; position: relative; z-index: 1; border-radius: var(--radius); overflow: hidden; }

.gallery-card, .card.merch, .portrait-card { position: relative; overflow: hidden; }
.gallery-card::after, .card.merch::after, .portrait-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 20% 20%, rgba(125, 157, 117, 0.08), transparent 38%),
              radial-gradient(circle at 80% 0%, rgba(200, 107, 61, 0.08), transparent 34%);
  z-index: 0;
}

.card.merch .tag { z-index: 3; }
.card.merch h3, .card.merch p, .card.merch .btn { position: relative; z-index: 2; }

.videos .video-card { display: grid; gap: 12px; position: relative; }
.video-frame { position: relative; padding-top: 56%; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.meta { color: rgba(27, 42, 65, 0.7); font-size: 14px; }

.card.merch { position: relative; }
.tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--sage);
  color: white;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.contact .form label { display: block; font-weight: 700; margin-bottom: 12px; }
.contact input, .contact textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(27, 42, 65, 0.18);
  font-family: var(--font-body);
  font-size: 15px;
  background: #fff;
}

.inline-form { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.inline-form input { flex: 1; min-width: 180px; }

.social { display: flex; gap: 12px; margin-top: 18px; font-weight: 700; }

.footer { background: #0f1a2a; color: #dfe3eb; padding-top: 40px; margin-top: 40px; }
.footer__content { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; align-items: center; }
.footer__links { display: flex; gap: 12px; flex-wrap: wrap; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 16px 0 28px; display: flex; justify-content: space-between; gap: 12px; font-size: 14px; color: rgba(255,255,255,0.8); }
.footer .btn.primary { background: var(--burnt); border-color: var(--burnt); }

.center { text-align: center; margin-top: 20px; }
.shell.footer__content, .shell.footer__bottom { width: var(--shell); margin: 0 auto; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .nav { display: none; }
  .topbar { justify-content: space-between; }
  .hero { text-align: left; }
}

@media (max-width: 640px) {
  .hero { padding-top: 120px; }
  .hero__badge { position: relative; right: 0; bottom: 0; margin-top: 20px; display: inline-block; }
  .stats { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
