/* Fetera — navy & gold brand theme */
:root {
  --bg: #f7f6f2;
  --bg-soft: #efeee8;
  --ink: #10186e;
  --muted: #5c6178;
  --white: #ffffff;
  --dark: #0a0f3d;
  --dark-2: #0c1248;
  --accent: #c5a059;
  --accent-hover: #b08d48;
  --navy: #10186e;
  --gold: #c5a059;
  --line: rgba(16, 24, 110, 0.12);
  --radius: 999px;
  --shadow: 0 18px 50px rgba(16, 24, 110, 0.12);
  --container: min(1180px, 92%);
  --font-display: "Marcellus", serif;
  --font-body: "DM Sans", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--muted);
  background: var(--bg);
  line-height: 1.7;
  font-weight: 400;
}

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

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

ul {
  list-style: none;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 12px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.15;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin-bottom: 16px;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

p {
  color: var(--muted);
}

.section {
  padding: 96px 0;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 52px;
}

.section-dark {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.72);
}

.section-dark h2,
.section-dark h3,
.section-dark .eyebrow {
  color: var(--white);
}

.section-soft {
  background: var(--bg-soft);
}

/* Top bar */
.topbar {
  background: var(--dark-2);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 8px 0;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar a:hover {
  color: var(--accent);
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.75rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 15, 61, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(197, 160, 89, 0.18);
}

.nav-wrap {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  flex-shrink: 0;
}

.brand-logo {
  height: 78px;
  width: auto;
  max-width: 280px;
  display: block;
  object-fit: contain;
  background: #ffffff;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid rgba(197, 160, 89, 0.55);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.brand-mark {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 1.35rem;
}

.brand-script {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 1.55rem;
  font-style: italic;
}

.site-footer .brand-logo {
  height: 88px;
  max-width: 300px;
  background: #ffffff;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid rgba(197, 160, 89, 0.45);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: width 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 100%;
  background: var(--accent);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius);
  padding: 13px 26px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: 0.25s ease;
  cursor: pointer;
}

.btn-accent {
  background: var(--accent);
  color: var(--navy);
}

.btn-accent:hover {
  background: var(--accent-hover);
  color: var(--navy);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--accent);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--ink);
}

.btn-outline-dark {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

.btn-outline-dark:hover {
  background: var(--ink);
  color: var(--white);
}

/* Hero — Kite style split headline */
.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
  background: var(--dark);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-video,
.hero-poster,
.hero-media img,
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video {
  z-index: 1;
  opacity: 0;
  transition: opacity 0.8s ease;
  transform: scale(1.04);
}

.hero.is-playing .hero-video {
  opacity: 1;
}

.hero-poster,
.hero-slide {
  z-index: 0;
  opacity: 1;
  transform: scale(1.06);
  animation: ken 18s ease-in-out infinite alternate;
}

.hero.is-playing .hero-poster {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide {
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 70% 55% at 20% 75%, rgba(20, 18, 17, 0.55) 0%, transparent 70%),
    linear-gradient(
      180deg,
      rgba(20, 18, 17, 0.28) 0%,
      rgba(20, 18, 17, 0.38) 40%,
      rgba(20, 18, 17, 0.82) 100%
    );
}

@keyframes ken {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1.12) translate(-1%, 1%);
  }
}

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

@keyframes heroFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes heroSideIn {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 0.55;
    transform: translateX(0);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  width: var(--container);
  margin: 0 auto;
  padding: 120px 0 88px;
  display: grid;
  gap: 28px;
}

.hero-top {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: end;
}

.hero-main {
  max-width: 640px;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 18px;
  animation: heroRise 0.9s ease both;
}

.hero-title {
  display: grid;
  gap: 0.04em;
  font-size: clamp(2.8rem, 7.2vw, 5.8rem);
  color: var(--white);
  max-width: none;
  letter-spacing: -0.03em;
  line-height: 0.98;
  margin-bottom: 22px;
}

.hero-line {
  display: block;
  animation: heroRise 0.95s ease both;
}

.hero-line:nth-child(1) {
  animation-delay: 0.12s;
}

.hero-line:nth-child(2) {
  animation-delay: 0.28s;
}

.hero-line:nth-child(3) {
  animation-delay: 0.42s;
}

.hero-line-accent em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  text-shadow: 0 0 40px rgba(197, 160, 89, 0.35);
}

.hero-side {
  text-align: right;
  padding-bottom: 8px;
  animation: heroSideIn 1.1s ease 0.45s both;
}

.hero-unforgettable {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  color: rgba(255, 255, 255, 0.55);
  line-height: 0.95;
  letter-spacing: 0.02em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin-left: auto;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  padding-left: 18px;
}

.hero-copy {
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 8px;
  animation: heroRise 0.95s ease 0.55s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  animation: heroRise 0.95s ease 0.68s both;
}

.hero-actions .btn-outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.hero-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.scroll-hint {
  position: absolute;
  z-index: 3;
  left: max(4%, calc((100% - 1180px) / 2));
  bottom: 28px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.scroll-hint span {
  width: 1px;
  height: 42px;
  background: rgba(255, 255, 255, 0.45);
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scaleY(0.8);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-brand,
  .hero-line,
  .hero-copy,
  .hero-actions,
  .hero-side,
  .hero-poster,
  .hero-slide,
  .scroll-hint span {
    animation: none !important;
  }
}

/* Services — circular cards */
.services-section {
  overflow: hidden;
}

.services-section .section-head {
  margin-bottom: 48px;
}

.services-marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.services-track {
  display: flex;
  width: max-content;
  gap: 40px;
  padding: 8px 24px 16px;
  animation: servicesScroll 55s linear infinite;
}

.services-marquee:hover .services-track {
  animation-play-state: paused;
}

@keyframes servicesScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

@media (min-width: 981px) {
  .services-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 28px;
  }

  .services-grid .service-card .circle {
    width: min(180px, 85%);
  }
}

.service-card {
  text-align: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.services-track .service-card {
  flex: 0 0 min(280px, 72vw);
  width: min(280px, 72vw);
}

.service-card .circle {
  width: min(240px, 78%);
  aspect-ratio: 1;
  margin: 0 auto 22px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.services-grid .service-card .circle {
  width: min(200px, 70%);
}

.service-card .circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card .circle img[src*="live-shows"] {
  object-position: center 30%;
}

.service-card:hover .circle img {
  transform: scale(1.08);
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  padding: 0 4px;
}

.service-card p {
  font-size: 0.95rem;
  max-width: 32ch;
  margin: 0 auto;
  padding: 0 6px;
}

@media (prefers-reduced-motion: reduce) {
  .services-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    justify-content: center;
  }

  .services-track .service-card[aria-hidden="true"] {
    display: none;
  }
}

/* About split */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.about-visual {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

/* Portfolio */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.portfolio-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #ddd;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.portfolio-item:hover img {
  transform: scale(1.06);
}

.portfolio-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px;
  background: linear-gradient(transparent, rgba(20, 18, 17, 0.75));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.05rem;
}

/* What we do */
.do-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.do-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.do-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.do-num {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 1.2rem;
}

.do-visual {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.do-visual img {
  width: 100%;
  min-height: 480px;
  object-fit: cover;
}

/* Why us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 36px;
}

.why-card {
  background: var(--white);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(34, 31, 30, 0.06);
}

.why-card h3 {
  margin-top: 8px;
}

.why-card .btn {
  margin-top: 16px;
}

.feature-list {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink);
}

.feature-list li::before {
  content: "✦";
  color: var(--accent);
  margin-top: 2px;
}

/* Testimonials */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.quote-card {
  background: var(--white);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(34, 31, 30, 0.06);
}

.quote-card p {
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.quote-card strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
}

.quote-card span {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* CTA band */
.cta-band {
  background: var(--dark);
  padding: 88px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 18px;
}

.cta-band .actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* Contact */
.contact-section {
  padding-top: 72px;
}

.contact-intro {
  max-width: 40rem;
  margin-bottom: 36px;
}

.contact-intro h2 {
  margin-bottom: 12px;
}

.contact-intro p {
  margin: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 32px;
  align-items: stretch;
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.contact-visual {
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  background: var(--bg-soft);
  flex: 0 0 auto;
}

.contact-visual img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: center;
  display: block;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  flex: 1;
  align-content: stretch;
}

.contact-card {
  border-radius: 14px;
  padding: 20px 18px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 6px;
  text-decoration: none;
  color: inherit;
  border: 1px solid transparent;
  box-shadow: 0 10px 24px rgba(16, 24, 110, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(16, 24, 110, 0.14);
}

.contact-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
  flex-shrink: 0;
}

.contact-card-icon svg {
  width: 22px;
  height: 22px;
}

.contact-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.contact-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
  word-break: break-word;
}

.contact-card--call {
  background: linear-gradient(160deg, #10186e 0%, #1a248f 100%);
  color: #fff;
}

.contact-card--call h3,
.contact-card--call p {
  color: #fff;
}

.contact-card--call .contact-card-icon {
  background: rgba(197, 160, 89, 0.22);
  color: #f0d59a;
}

.contact-card--email {
  background: linear-gradient(160deg, #c5a059 0%, #d4b36e 100%);
  color: #10186e;
}

.contact-card--email h3,
.contact-card--email p {
  color: #10186e;
}

.contact-card--email .contact-card-icon {
  background: rgba(16, 24, 110, 0.12);
  color: #10186e;
}

.contact-card--visit {
  background: linear-gradient(160deg, #0f766e 0%, #14a39a 100%);
  color: #fff;
}

.contact-card--visit h3,
.contact-card--visit p {
  color: #fff;
}

.contact-card--visit .contact-card-icon {
  background: rgba(255, 255, 255, 0.18);
  color: #e8fff9;
}

.contact-card--whatsapp {
  background: linear-gradient(160deg, #128c7e 0%, #25d366 100%);
  color: #fff;
}

.contact-card--whatsapp h3,
.contact-card--whatsapp p {
  color: #fff;
}

.contact-card--whatsapp .contact-card-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.contact-grid .form {
  height: 100%;
  align-content: start;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-visual img {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 520px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
}

.form {
  background: var(--white);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form label {
  display: grid;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--ink);
  font-weight: 500;
}

.form .req {
  color: #b42318;
  font-weight: 700;
  margin-left: 2px;
}

.form .label-text {
  display: inline;
}

.form-req-note {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted, #6b6b6b);
}

.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
}

.form textarea {
  min-height: 120px;
  resize: vertical;
}

.form button {
  justify-self: start;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.form-actions .btn {
  min-width: 160px;
  justify-content: center;
  text-align: center;
}

.form-hint {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted, #6b6b6b);
  line-height: 1.45;
}

.form-message {
  margin: 0;
  min-height: 1.2em;
  font-size: 0.9rem;
  color: var(--accent);
}

.form-message.is-error {
  color: #b42318;
  font-weight: 600;
}

.form input.is-invalid,
.form select.is-invalid,
.form textarea.is-invalid {
  border-color: #b42318;
  background: #fff5f5;
}

.field-error {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #b42318;
}

/* ===== About page ===== */
.about-hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
  background: var(--dark);
}

.about-hero-media {
  position: absolute;
  inset: 0;
}

.about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.06);
  animation: aboutKen 22s ease-in-out infinite alternate;
}

@keyframes aboutKen {
  from { transform: scale(1.06) translateY(0); }
  to { transform: scale(1.12) translateY(-2%); }
}

.about-hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 11, 46, 0.35) 0%, rgba(7, 11, 46, 0.55) 42%, rgba(7, 11, 46, 0.92) 100%),
    radial-gradient(ellipse 60% 50% at 70% 30%, rgba(197, 160, 89, 0.18), transparent 65%);
  pointer-events: none;
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  padding: 140px 0 88px;
  max-width: 820px;
}

.about-hero-brand {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.about-hero-inner h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  max-width: 14ch;
}

.about-hero-inner h1 em {
  font-style: italic;
  color: var(--gold);
}

.about-hero-lead {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  max-width: 42ch;
  margin-bottom: 28px;
  line-height: 1.7;
}

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

.about-story {
  padding: 110px 0;
  background: var(--bg);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.about-story-visual {
  margin: 0;
  position: relative;
  overflow: hidden;
}

.about-story-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.about-story-visual figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 22px 20px;
  font-family: var(--font-display);
  color: var(--white);
  background: linear-gradient(transparent, rgba(7, 11, 46, 0.85));
}

.about-story-visual::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 18px;
  width: 44px;
  height: 44px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  pointer-events: none;
}

.about-story-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 18px;
}

.about-story-copy p {
  margin-bottom: 16px;
  max-width: 46ch;
}

.text-link {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--font-display);
  color: var(--navy);
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.text-link:hover {
  color: var(--accent-hover);
  border-color: var(--accent-hover);
}

.about-belief {
  padding: 88px 0;
  background: linear-gradient(165deg, #070b2e 0%, var(--dark) 50%, #10186e 100%);
  color: rgba(255, 255, 255, 0.7);
}

.about-belief-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
}

.about-belief-divider {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(transparent, rgba(197, 160, 89, 0.55), transparent);
  min-height: 160px;
}

.about-belief .eyebrow {
  color: var(--gold);
}

.about-belief-item h3 {
  color: var(--white);
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  margin-bottom: 14px;
  max-width: 18ch;
}

.about-belief-item p {
  max-width: 36ch;
  color: rgba(255, 255, 255, 0.62);
}

.about-craft {
  position: relative;
  padding: 110px 0 0;
  background: var(--bg-soft);
  overflow: hidden;
}

.about-craft-aura {
  position: absolute;
  inset: -10% 40% auto -20%;
  height: 55%;
  background: radial-gradient(ellipse at center, rgba(197, 160, 89, 0.12), transparent 70%);
  pointer-events: none;
}

.about-craft-intro {
  position: relative;
  max-width: 680px;
  margin-bottom: 48px;
}

.about-craft-intro h2 {
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  margin-bottom: 14px;
}

.about-craft-intro h2 em {
  font-style: italic;
  color: var(--gold);
}

.about-craft-intro > p {
  max-width: 42ch;
}

.about-craft-body {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 96px;
}

.about-craft-visual {
  margin: 0;
  overflow: hidden;
}

.about-craft-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-craft-points {
  list-style: none;
}

.about-craft-points li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(16, 24, 110, 0.12);
}

.about-craft-points li:first-child {
  padding-top: 0;
}

.about-craft-points li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.about-craft-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.about-craft-points h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.about-craft-points p {
  max-width: 34ch;
  font-size: 0.98rem;
}

.about-moments {
  padding: 96px 0 110px;
  background: var(--bg);
}

.about-moments-head {
  margin-bottom: 36px;
  max-width: 520px;
}

.about-moments-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.about-moments-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: var(--container);
  margin-inline: auto;
}

.about-moments-rail figure {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.about-moments-rail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}

.about-moments-rail figure:hover img {
  transform: scale(1.05);
}

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

.reveal.is-inview {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .about-hero-media img {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== Gallery page ===== */
.gallery-hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
  background: var(--dark);
}

.gallery-hero-media {
  position: absolute;
  inset: 0;
}

.gallery-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  animation: aboutKen 26s ease-in-out infinite alternate;
}

.gallery-hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 11, 46, 0.3) 0%, rgba(7, 11, 46, 0.52) 48%, rgba(7, 11, 46, 0.94) 100%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(197, 160, 89, 0.14), transparent 70%);
  pointer-events: none;
}

.gallery-hero-inner {
  position: relative;
  z-index: 1;
  padding: 120px 0 72px;
  max-width: 720px;
}

.gallery-hero-brand {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  color: var(--gold);
  margin-bottom: 10px;
}

.gallery-hero-inner h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.gallery-hero-inner h1 em {
  font-style: italic;
  color: var(--gold);
}

.gallery-hero-lead {
  color: rgba(255, 255, 255, 0.7);
  max-width: 42ch;
  font-size: 1.05rem;
  line-height: 1.7;
}

.gallery-jump {
  position: sticky;
  top: 78px;
  z-index: 900;
  background: #0a0f3d;
  border-top: 1px solid rgba(197, 160, 89, 0.45);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 8px 24px rgba(7, 11, 46, 0.35);
}

.gallery-jump-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  padding: 18px 0;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 1.05rem;
}

.gallery-jump a {
  color: #0a0f3d;
  background: var(--gold);
  opacity: 1;
  padding: 10px 18px;
  border: 1px solid var(--gold);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
  font-weight: 500;
}

.gallery-jump a:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.gallery-jump span {
  color: rgba(255, 255, 255, 0.55);
  opacity: 1;
  font-size: 1.1rem;
}

.gallery-block {
  padding: 88px 0 40px;
  background: var(--bg);
}

.gallery-block-alt {
  padding-top: 72px;
  padding-bottom: 96px;
  background: var(--bg-soft);
}

.gallery-block-head {
  max-width: 560px;
  margin-bottom: 36px;
}

.gallery-block-head .eyebrow {
  color: var(--gold);
  font-size: 0.92rem;
  letter-spacing: 0.26em;
  font-weight: 500;
  margin-bottom: 14px;
}

.gallery-block-alt .gallery-block-head .eyebrow {
  color: var(--navy);
}

.gallery-block-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.gallery-block-head p {
  max-width: 46ch;
}

.gallery-feature {
  margin: 0 0 18px;
  position: relative;
  overflow: hidden;
  aspect-ratio: 21 / 9;
  background: #d8d6ce;
}

.gallery-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transition: transform 1.1s ease;
}

.gallery-feature:hover img {
  transform: scale(1.03);
}

.gallery-feature figcaption,
.gallery-grid figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 18px 18px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
  background: linear-gradient(transparent, rgba(7, 11, 46, 0.92));
}

.gallery-grid figcaption::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 10px;
}

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

.gallery-grid figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #d8d6ce;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.85s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.05);
}

.gallery-videos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-video {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0a0f3d;
  color: var(--white);
}

.gallery-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.85s ease, opacity 0.3s ease;
  opacity: 0.88;
}

.gallery-video:hover img {
  transform: scale(1.05);
  opacity: 1;
}

.gallery-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: 1rem;
  padding-left: 3px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, background 0.25s ease;
}

.gallery-video:hover .gallery-video-play {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--white);
}

.gallery-video-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 16px 16px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  background: linear-gradient(transparent, rgba(7, 11, 46, 0.92));
}

@media (max-width: 980px) {
  .gallery-hero {
    min-height: 62vh;
  }

  .gallery-feature {
    aspect-ratio: 16 / 9;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

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

  .gallery-jump {
    top: 78px;
  }

  .gallery-jump-inner {
    gap: 8px 10px;
    font-size: 0.88rem;
    padding: 14px 0;
  }

  .gallery-jump a {
    padding: 8px 12px;
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-videos {
    grid-template-columns: 1fr;
  }

  .gallery-feature {
    aspect-ratio: 4 / 3;
  }

  .gallery-block {
    padding: 64px 0 24px;
  }

  .gallery-block-alt {
    padding-bottom: 72px;
  }

  .gallery-jump-inner {
    gap: 8px;
    font-size: 0.8rem;
  }

  .gallery-jump span {
    display: none;
  }
}

.gallery-feature,
.gallery-grid figure {
  cursor: zoom-in;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(7, 11, 46, 0.94);
  display: grid;
  place-items: center;
  padding: 56px 64px 40px;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox-figure {
  margin: 0;
  max-width: min(1100px, 100%);
  max-height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.lightbox-figure img {
  max-width: 100%;
  max-height: calc(100vh - 140px);
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.lightbox-figure figcaption {
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-align: center;
  font-size: 1rem;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  appearance: none;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: var(--gold);
  color: var(--navy);
}

.lightbox-close {
  top: 16px;
  right: 16px;
  width: 46px;
  height: 46px;
  font-size: 1.8rem;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-prev {
  left: 14px;
}

.lightbox-next {
  right: 14px;
}

@media (max-width: 640px) {
  .lightbox {
    padding: 64px 12px 24px;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
  }

  .lightbox-prev {
    left: 6px;
  }

  .lightbox-next {
    right: 6px;
  }
}

/* Page hero (inner) */
.page-hero {
  position: relative;
  min-height: 42vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  background: var(--dark);
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.page-hero img[src*="contact-hero"] {
  object-position: center 28%;
  opacity: 0.62;
}

.page-hero .inner {
  position: relative;
  z-index: 1;
  padding: 90px 20px 70px;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

/* Footer */
.site-footer {
  background: var(--dark-2);
  color: rgba(255, 255, 255, 0.7);
  padding: 72px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
  margin-bottom: 40px;
}

.site-footer h4 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 1.15rem;
}

.site-footer a:hover {
  color: var(--accent);
}

.site-footer .brand {
  margin-bottom: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

.footer-bottom p {
  margin: 0;
}

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1200;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-float:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.wa-float svg {
  width: 28px;
  height: 28px;
  display: block;
}

.wa-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.wa-icon svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: #25d366;
}

/* ===== Kite-style home sections ===== */
.about-dark {
  background: var(--dark);
  padding: 0;
  overflow: hidden;
}

.about-dark-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.about-dark-media {
  min-height: 420px;
}

.about-dark-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 560px;
}

.about-dark-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 8% 72px 10%;
  color: rgba(255, 255, 255, 0.72);
}

.about-dark-copy .eyebrow {
  color: rgba(255, 255, 255, 0.55);
}

.about-dark-copy h2 {
  color: var(--white);
  margin-bottom: 18px;
}

.about-dark-copy p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
}

.about-rings {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(197, 160, 89, 0.28);
  pointer-events: none;
}

.about-rings::before,
.about-rings::after {
  content: "";
  position: absolute;
  inset: 28px;
  border-radius: 50%;
  border: 1px solid rgba(197, 160, 89, 0.2);
}

.about-rings::after {
  inset: 56px;
  border-color: rgba(197, 160, 89, 0.12);
}

.watermark-strip {
  background: var(--navy);
  overflow: hidden;
  padding: 28px 0;
  border-top: none;
  border-bottom: none;
}

.watermark-track {
  display: flex;
  width: max-content;
  gap: 48px;
  animation: marquee 32s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: rgba(197, 160, 89, 0.85);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

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

.portfolio-kite {
  padding: 88px 0 96px;
  background: var(--bg);
}

.portfolio-kite-grid {
  --portfolio-tile-h: 420px;
  display: grid;
  grid-template-columns: 0.85fr 1.55fr;
  gap: 28px;
  align-items: stretch;
}

.portfolio-panel {
  background: var(--bg-soft);
  border-radius: 8px;
  padding: 28px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: var(--portfolio-tile-h);
  min-height: var(--portfolio-tile-h);
  max-height: var(--portfolio-tile-h);
  box-sizing: border-box;
  overflow: hidden;
}

.portfolio-panel h2 {
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.15;
  margin: 0;
}

.portfolio-panel p {
  margin: 10px 0 0;
}

.portfolio-panel .eyebrow {
  margin: 0 0 8px;
}

.portfolio-nav {
  display: none;
}

.portfolio-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.1rem;
  transition: 0.2s ease;
}

.portfolio-nav button:hover {
  background: var(--ink);
  color: var(--white);
}

.portfolio-rail {
  overflow: hidden;
  width: 100%;
  height: var(--portfolio-tile-h);
  min-height: var(--portfolio-tile-h);
}

.portfolio-track {
  display: flex;
  width: max-content;
  height: 100%;
  animation: portfolioScroll 60s linear infinite;
  will-change: transform;
}

.portfolio-set {
  display: flex;
  flex-shrink: 0;
  gap: 14px;
  padding-right: 14px;
  height: 100%;
}

.portfolio-rail figure {
  flex: 0 0 auto;
  height: 100%;
  width: auto;
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  overflow: hidden;
  margin: 0;
  background: var(--bg-soft);
}

.portfolio-rail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@keyframes portfolioScroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (hover: hover) {
  .portfolio-rail:hover .portfolio-track {
    animation-play-state: paused;
  }
}

@media (max-width: 900px) {
  .portfolio-kite-grid {
    --portfolio-tile-h: 360px;
  }
}

@media (max-width: 640px) {
  .portfolio-kite-grid {
    --portfolio-tile-h: 300px;
  }

  .portfolio-panel {
    padding: 22px 20px;
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .portfolio-panel h2 {
    font-size: 1.25rem;
  }

  .portfolio-panel p {
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .portfolio-track {
    animation-duration: 48s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-track {
    animation: none;
  }

  .portfolio-rail {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .portfolio-rail::-webkit-scrollbar {
    display: none;
  }
}

.what-kite {
  padding: 96px 0;
  background: var(--bg-soft);
}

.what-kite-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.what-visual {
  position: relative;
}

.what-visual img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 4px;
}

.what-callout {
  position: absolute;
  right: 0;
  bottom: 32px;
  max-width: 240px;
  background: var(--accent);
  color: var(--navy);
  padding: 28px 24px;
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.25;
}

.what-copy .do-list {
  margin-top: 24px;
}

.why-us {
  position: relative;
  padding: 110px 0 0;
  background: linear-gradient(165deg, #070b2e 0%, var(--dark) 42%, #10186e 100%);
  color: rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

.why-us-aura {
  position: absolute;
  inset: -20% -10% auto;
  height: 70%;
  background:
    radial-gradient(ellipse 55% 50% at 18% 35%, rgba(197, 160, 89, 0.22), transparent 70%),
    radial-gradient(ellipse 45% 40% at 88% 20%, rgba(197, 160, 89, 0.1), transparent 65%);
  pointer-events: none;
}

.why-us-intro {
  position: relative;
  max-width: 760px;
  margin-bottom: 56px;
}

.why-us-eyebrow {
  color: var(--gold);
}

.why-us-intro h2 {
  color: var(--white);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.why-us-intro h2 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.why-us-lead {
  font-size: 1.08rem;
  max-width: 540px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
}

.why-us-body {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 72px;
}

.why-us-visual {
  margin: 0;
  position: relative;
  overflow: hidden;
}

.why-us-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.03);
  transition: transform 1.4s ease;
}

.why-us:hover .why-us-visual img,
.why-us.is-inview .why-us-visual img {
  transform: scale(1);
}

.why-us-visual figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 24px 22px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--white);
  background: linear-gradient(transparent, rgba(7, 11, 46, 0.88));
}

.why-us-visual::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 18px;
  width: 48px;
  height: 48px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  opacity: 0.85;
  pointer-events: none;
}

.why-us-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-point {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(197, 160, 89, 0.22);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.why-us.is-inview .why-point {
  opacity: 1;
  transform: none;
}

.why-us.is-inview .why-point:nth-child(1) { transition-delay: 0.08s; }
.why-us.is-inview .why-point:nth-child(2) { transition-delay: 0.18s; }
.why-us.is-inview .why-point:nth-child(3) { transition-delay: 0.28s; }
.why-us.is-inview .why-point:nth-child(4) { transition-delay: 0.38s; }

.why-point:first-child {
  padding-top: 0;
}

.why-point:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.why-num {
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  line-height: 1.2;
  padding-top: 2px;
}

.why-point h3 {
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.why-point p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 36ch;
}

.why-us-promise {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 420px;
}

.why-us-promise-media {
  overflow: hidden;
  min-height: 360px;
}

.why-us-promise-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.06);
  transition: transform 8s ease;
}

.why-us.is-inview .why-us-promise-media img {
  transform: scale(1);
}

.why-us-promise-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 10% 56px 12%;
  background:
    linear-gradient(135deg, rgba(197, 160, 89, 0.14), transparent 55%),
    #0a0f3d;
  border-left: 1px solid rgba(197, 160, 89, 0.28);
}

.why-us-promise-copy .eyebrow {
  color: var(--gold);
}

.why-us-promise-copy h3 {
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  margin-bottom: 14px;
  max-width: 16ch;
}

.why-us-promise-copy > p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 28px;
  max-width: 34ch;
}

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

.why-us-intro,
.why-us-visual {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.why-us.is-inview .why-us-intro,
.why-us.is-inview .why-us-visual {
  opacity: 1;
  transform: none;
}

.why-us.is-inview .why-us-visual {
  transition-delay: 0.12s;
}

@media (prefers-reduced-motion: reduce) {
  .why-us-intro,
  .why-us-visual,
  .why-point,
  .why-us-visual img,
  .why-us-promise-media img {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.banner-strip {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 56px 20px;
}

.banner-strip h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.choose-kite {
  padding: 96px 0;
  background: var(--bg-soft);
}

.choose-kite-inner {
  max-width: 640px;
  margin-left: auto;
}

.choose-kite .feature-list {
  margin: 24px 0 32px;
}

/* Mobile */
@media (max-width: 980px) {
  .site-nav,
  .nav-cta {
    display: none;
  }

  .site-nav.open {
    display: flex;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

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

  .brand-logo {
    height: 64px;
    max-width: 210px;
    padding: 6px 12px;
  }

  .hero-top,
  .about-grid,
  .do-grid,
  .contact-grid,
  .portfolio-grid,
  .quotes,
  .why-grid,
  .footer-grid,
  .form-row,
  .about-dark-grid,
  .portfolio-kite-grid,
  .what-kite-grid,
  .why-us-body,
  .why-us-promise,
  .about-story-grid,
  .about-craft-body,
  .about-belief-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-panel {
    height: auto;
    min-height: 0;
    max-height: none;
    padding: 32px 28px;
  }

  .portfolio-rail {
    height: var(--portfolio-tile-h);
    min-height: var(--portfolio-tile-h);
  }

  .about-belief-divider {
    width: 100%;
    height: 1px;
    min-height: 0;
    background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.55), transparent);
  }

  .about-moments-rail {
    grid-template-columns: 1fr 1fr;
  }

  .about-hero {
    min-height: 78vh;
  }

  .about-hero-inner {
    padding: 120px 0 72px;
  }

  .about-story-visual img,
  .about-craft-visual img {
    aspect-ratio: 4 / 5;
    min-height: 320px;
  }

  .hero-side {
    text-align: left;
    order: -1;
  }

  .hero-unforgettable {
    writing-mode: horizontal-tb;
    transform: none;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    padding-left: 0;
    padding-bottom: 10px;
    margin: 0 0 8px;
    font-size: clamp(1.6rem, 8vw, 2.4rem);
    opacity: 0.7;
  }

  .hero-title {
    font-size: clamp(2.4rem, 11vw, 3.6rem);
  }

  .hero-content {
    padding: 100px 0 96px;
  }

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

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }

  .services-grid .service-card .circle {
    width: min(160px, 72%);
  }

  .page-hero {
    min-height: 36vh;
  }

  .page-hero .inner {
    padding: 100px 16px 56px;
  }

  .page-hero h1 {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }

  .do-visual img {
    min-height: 260px;
  }

  .why-card {
    padding: 24px 20px;
  }

  .why-card .btn {
    width: 100%;
    justify-content: center;
  }

  .do-visual img,
  .about-visual img,
  .about-dark-media img,
  .what-visual img,
  .why-us-visual img,
  .why-us-promise-media img {
    min-height: 280px;
    aspect-ratio: auto;
  }

  .why-us {
    padding-top: 80px;
  }

  .why-us-promise-copy {
    padding: 40px 7%;
    border-left: 0;
    border-top: 1px solid rgba(197, 160, 89, 0.28);
  }

  .why-point {
    grid-template-columns: 56px 1fr;
  }

  .about-dark-copy {
    padding: 48px 7%;
  }

  .what-callout {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: none;
    margin-top: -8px;
  }

  .choose-kite-inner {
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 64px 0;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .section-head h2 {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 360px;
    margin-inline: auto;
  }

  .services-grid .service-card .circle {
    width: min(200px, 68%);
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .do-list {
    gap: 14px;
  }

  .do-item {
    grid-template-columns: 48px 1fr;
    gap: 12px;
  }

  .do-visual {
    margin-top: 8px;
  }

  .do-visual img {
    min-height: 240px;
  }

  .page-hero {
    min-height: 32vh;
  }

  .page-hero .inner {
    padding: 96px 14px 48px;
  }

  .cta-band {
    padding: 64px 16px;
  }

  .cta-band h2 {
    font-size: clamp(1.7rem, 7vw, 2.4rem);
  }

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

  .about-moments-rail {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .topbar-left span:nth-child(3) {
    display: none;
  }
}
