:root {
  --bg: #fff1e3;
  --bg-soft: #ffe4c7;
  --surface: rgba(255, 244, 232, 0.78);
  --surface-strong: rgba(255, 238, 218, 0.94);
  --text: #24120a;
  --muted: #7b4c2b;
  --line: rgba(177, 83, 20, 0.18);

  --orange: #f47b20;
  --orange-2: #ff9a3d;
  --orange-3: #ffc078;
  --orange-dark: #9f3f08;
  --brown: #4a1f0b;

  --shadow: 0 18px 50px rgba(154, 70, 14, 0.16);
  --shadow-strong: 0 30px 80px rgba(154, 70, 14, 0.24);

  --radius-xl: 32px;
  --radius-lg: 24px;
  --container: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 8%, rgba(244, 123, 32, 0.34), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(255, 154, 61, 0.32), transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(255, 192, 120, 0.28), transparent 38%),
    linear-gradient(180deg, #fff3e6 0%, #ffe7cd 45%, #ffd8b0 100%);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.section {
  position: relative;
  padding: 100px 0;
}

.glass {
  background:
    linear-gradient(180deg, rgba(255, 238, 218, 0.9), rgba(255, 216, 176, 0.72));
  border: 1px solid rgba(244, 123, 32, 0.18);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(26px);
  pointer-events: none;
  opacity: 0.58;
  z-index: 0;
}

.orb-1 {
  width: 260px;
  height: 260px;
  background: rgba(244, 123, 32, 0.28);
  top: 60px;
  right: -60px;
}

.orb-2 {
  width: 220px;
  height: 220px;
  background: rgba(255, 154, 61, 0.24);
  top: 28%;
  left: -50px;
}

.orb-3 {
  width: 250px;
  height: 250px;
  background: rgba(255, 120, 24, 0.22);
  bottom: 6%;
  right: 8%;
}

/* HEADER */

.site-header {
  position: fixed;
  top: 14px;
  left: 0;
  right: 0;
  z-index: 1000;
  pointer-events: none;
}

.nav-wrap {
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.nav {
  width: min(calc(100% - 20px), 1160px);
  min-height: 78px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-radius: 999px;
  background: rgba(255, 230, 204, 0.78);
  border: 1px solid rgba(244, 123, 32, 0.24);
  box-shadow: 0 12px 36px rgba(154, 70, 14, 0.14);
  backdrop-filter: blur(14px);
  pointer-events: auto;
  transition: 0.25s ease;
}

.site-header.scrolled .nav {
  background: rgba(255, 221, 190, 0.94);
  box-shadow: 0 16px 44px rgba(154, 70, 14, 0.2);
}

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

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 14px 26px rgba(244, 123, 32, 0.22);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text strong {
  font-size: 1rem;
  letter-spacing: -0.03em;
  color: var(--brown);
}

.brand-text span {
  color: var(--muted);
  font-size: 0.82rem;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brown);
  transition: 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: linear-gradient(135deg, rgba(244, 123, 32, 0.18), rgba(255, 154, 61, 0.22));
  color: var(--orange-dark);
}

.mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(244, 123, 32, 0.22);
  background: rgba(255, 229, 203, 0.9);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.mobile-toggle span,
.mobile-toggle span::before,
.mobile-toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--brown);
  border-radius: 999px;
  position: relative;
  transition: 0.22s ease;
}

.mobile-toggle span::before {
  position: absolute;
  top: -6px;
}

.mobile-toggle span::after {
  position: absolute;
  top: 6px;
}

.mobile-toggle.active span {
  background: transparent;
}

.mobile-toggle.active span::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-toggle.active span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* COMMON */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 228, 202, 0.82);
  border: 1px solid rgba(244, 123, 32, 0.22);
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  backdrop-filter: blur(10px);
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 0 0 5px rgba(244, 123, 32, 0.16);
}

.eyebrow.light {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}

.section-title {
  margin: 18px 0 14px;
  font-size: clamp(2rem, 4vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: var(--brown);
}

.section-desc {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.75;
  font-size: clamp(1rem, 1.05vw, 1.08rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

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

.btn-primary {
  padding: 14px 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 14px 28px rgba(244, 123, 32, 0.3);
}

.btn-secondary {
  padding: 14px 18px;
  color: var(--orange-dark);
  background: rgba(255, 229, 203, 0.82);
  border: 1px solid rgba(244, 123, 32, 0.22);
}

.btn-white {
  padding: 15px 22px;
  color: var(--orange-dark);
  background: #fff;
  box-shadow: 0 14px 30px rgba(90, 49, 11, 0.18);
}

.btn-ghost {
  padding: 15px 22px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* HERO */

.hero {
  position: relative;
  padding: 140px 0 70px;
  overflow: clip;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 32px;
  align-items: center;
}

.hero-title {
  margin: 20px 0 18px;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: var(--brown);
}

.hero-title span {
  display: block;
  color: var(--orange-dark);
}

.hero-description {
  max-width: 640px;
  font-size: clamp(1.02rem, 1.2vw, 1.15rem);
  line-height: 1.8;
  color: var(--muted);
  margin: 0 0 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

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

.meta-box {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 232, 210, 0.72);
  border: 1px solid rgba(244, 123, 32, 0.18);
  box-shadow: 0 10px 28px rgba(154, 70, 14, 0.1);
  transform-style: preserve-3d;
}

.meta-box strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.2rem;
  letter-spacing: -0.04em;
  color: var(--orange-dark);
}

.meta-box span {
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.hero-visual {
  min-height: 700px;
  padding: 18px;
  border-radius: 36px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 236, 218, 0.68), rgba(255, 204, 156, 0.45)),
    linear-gradient(135deg, rgba(244, 123, 32, 0.17), rgba(255, 189, 116, 0.28));
  border: 1px solid rgba(244, 123, 32, 0.2);
  box-shadow: var(--shadow);
}

.hero-stack {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 660px;
}

.placeholder {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #d8d8d8 0%, #f1c29b 45%, #cfcfcf 100%);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 28px;
  box-shadow: 0 14px 36px rgba(154, 70, 14, 0.14);
  transform-style: preserve-3d;
}

.placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 12%, rgba(255, 255, 255, 0.34) 28%, transparent 42%);
  transform: translateX(-120%);
  animation: shimmer 4.4s linear infinite;
}

.placeholder::after {
  content: attr(data-label);
  position: absolute;
  left: 18px;
  bottom: 16px;
  color: rgba(74, 31, 11, 0.52);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.prism::before {
  animation: prismShift 6s linear infinite;
  transform: none;
}

.hero-main {
  position: absolute;
  left: 0;
  top: 42px;
  width: 68%;
  height: 74%;
}

.hero-side-top {
  position: absolute;
  right: 0;
  top: 0;
  width: 40%;
  height: 26%;
  padding: 16px;
  border-radius: 26px;
}

.hero-side-bottom {
  position: absolute;
  right: 2%;
  bottom: 5%;
  width: 42%;
  height: 32%;
  padding: 16px;
  border-radius: 26px;
}

.hero-side-top .placeholder,
.hero-side-bottom .placeholder {
  width: 100%;
  height: 100%;
}

.hero-note {
  position: absolute;
  left: 7%;
  bottom: 4%;
  width: 40%;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 231, 205, 0.94);
  border: 1px solid rgba(244, 123, 32, 0.18);
  box-shadow: 0 16px 34px rgba(154, 70, 14, 0.14);
  backdrop-filter: blur(12px);
}

.hero-note small {
  display: block;
  margin-bottom: 8px;
  color: var(--orange-dark);
  font-weight: 800;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.hero-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
  color: var(--brown);
}

.hero-note span {
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.94rem;
}

/* MARQUEE */

.marquee-wrap {
  overflow: hidden;
  padding-top: 22px;
}

.marquee {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee span {
  flex: 0 0 auto;
  white-space: nowrap;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255, 229, 203, 0.82);
  border: 1px solid rgba(244, 123, 32, 0.16);
  color: var(--brown);
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(154, 70, 14, 0.08);
}

.marquee span::before {
  content: "✦ ";
  color: var(--orange);
}

/* LOGO */

.logo-section {
  padding: 40px 0 70px;
}

.logo-card {
  max-width: 850px;
  margin: 0 auto;
  padding: 24px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, #24120a, #3a1604);
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(244, 123, 32, 0.22);
}

.logo-card img {
  width: 100%;
  border-radius: 22px;
}

/* GALLERY */

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.gallery-item {
  min-height: 340px;
}

/* PRISM */

.prism-section {
  position: relative;
  overflow: clip;
}

.prism-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  margin-top: 32px;
}

.prism-main {
  min-height: 560px;
  padding: 18px;
  border-radius: 34px;
  position: relative;
  overflow: hidden;
}

.prism-main .placeholder {
  width: 100%;
  height: 100%;
  min-height: 520px;
}

.prism-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 229, 203, 0.92);
  border: 1px solid rgba(244, 123, 32, 0.2);
  font-weight: 800;
  color: var(--orange-dark);
  z-index: 3;
}

.prism-col {
  display: grid;
  gap: 18px;
}

.prism-card {
  padding: 18px;
  border-radius: 28px;
  min-height: 270px;
}

.prism-card .placeholder {
  width: 100%;
  height: 170px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.prism-card h3 {
  margin: 0 0 8px;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
  color: var(--orange-dark);
}

.prism-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

/* STRIPS */

.strips-section {
  overflow: hidden;
}

.strip {
  display: flex;
  gap: 18px;
  width: max-content;
  margin-top: 18px;
  will-change: transform;
}

.strip.reverse {
  margin-left: -140px;
}

.strip-item {
  width: min(30vw, 340px);
  min-width: 240px;
  height: 220px;
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255, 229, 203, 0.82);
  border: 1px solid rgba(244, 123, 32, 0.16);
  box-shadow: var(--shadow);
  padding: 12px;
  flex: 0 0 auto;
}

.strip-item .placeholder {
  width: 100%;
  height: 100%;
  border-radius: 18px;
}

/* CTA */

.cta-box {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: 34px;
  background: linear-gradient(135deg, #b94406 0%, #f47b20 42%, #ffb15f 100%);
  color: #fff;
  box-shadow: 0 28px 60px rgba(244, 123, 32, 0.34);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.cta-box h2 {
  margin: 12px 0 10px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.cta-box p {
  max-width: 680px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* FOOTER */

.site-footer {
  padding: 34px 0 52px;
}

.footer-box {
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  border-radius: 26px;
}

.footer-box strong {
  font-size: 1.2rem;
  color: var(--brown);
}

.footer-box p {
  margin: 8px 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-links a {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 229, 203, 0.82);
  border: 1px solid rgba(244, 123, 32, 0.16);
  color: var(--brown);
  font-weight: 700;
  transition: 0.22s ease;
}

.footer-links a:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #fff;
}

/* ANIMATIONS */

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

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

@keyframes shimmer {
  100% {
    transform: translateX(120%);
  }
}

@keyframes prismShift {
  0% {
    filter: hue-rotate(0deg);
  }

  100% {
    filter: hue-rotate(25deg);
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* RESPONSIVE */

@media (max-width: 1150px) {
  .hero-grid,
  .prism-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 620px;
  }

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

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

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 920px) {
  .nav-links {
    position: fixed;
    top: 92px;
    left: 10px;
    right: 10px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 24px;
    background: rgba(255, 229, 203, 0.96);
    border: 1px solid rgba(244, 123, 32, 0.22);
    box-shadow: 0 16px 40px rgba(154, 70, 14, 0.18);
    backdrop-filter: blur(14px);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero {
    padding-top: 128px;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 560px;
  }

  .hero-stack {
    min-height: 520px;
  }

  .hero-main {
    width: 100%;
    height: 54%;
    left: 0;
    top: 0;
  }

  .hero-side-top {
    width: 47%;
    height: 22%;
    left: 0;
    right: auto;
    top: auto;
    bottom: 10%;
  }

  .hero-side-bottom {
    width: 47%;
    height: 22%;
    right: 0;
    bottom: 10%;
  }

  .hero-note {
    width: min(92%, 540px);
    left: 50%;
    transform: translateX(-50%);
    bottom: 2%;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .section {
    padding: 78px 0;
  }

  .site-header {
    top: 10px;
  }

  .nav {
    min-height: 70px;
    border-radius: 24px;
  }

  .brand-text span {
    display: none;
  }

  .hero {
    padding-top: 116px;
    padding-bottom: 56px;
  }

  .hero-title {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 500px;
    padding: 12px;
  }

  .hero-stack {
    min-height: 470px;
  }

  .hero-main {
    height: 50%;
  }

  .hero-side-top,
  .hero-side-bottom {
    width: 48%;
    height: 19%;
    padding: 10px;
  }

  .hero-note {
    width: calc(100% - 24px);
    left: 12px;
    transform: none;
    padding: 14px;
  }

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

  .gallery-item {
    min-height: 280px;
  }

  .strip {
    gap: 12px;
    margin-top: 14px;
  }

  .strip.reverse {
    margin-left: 0;
  }

  .strip-item {
    width: 78vw;
    min-width: 78vw;
    height: 170px;
  }

  .footer-box {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .placeholder::before,
  .marquee {
    animation: none !important;
  }

  * {
    transition: none !important;
  }
}