:root {
  --color-bg: #FFFFFF;
  --color-bg-alt: #F8FAFC;
  --color-bg-tint: #EFF6FF;
  --color-bg-deep: #0B1A33;
  --color-surface: #FFFFFF;
  --color-text: #0F172A;
  --color-text-muted: #64748B;
  --color-text-light: #FFFFFF;
  --color-primary: #1E40AF;
  --color-primary-dark: #172554;
  --color-primary-light: #3B82F6;
  --color-primary-50: #EFF6FF;
  --color-primary-100: #DBEAFE;
  --color-primary-200: #BFDBFE;
  --color-accent: #F97316;
  --color-accent-dark: #EA580C;
  --color-accent-light: #FB923C;
  --color-border: #E5E7EB;
  --color-border-strong: #CBD5E1;

  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --container: 1200px;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 25px 60px rgba(15, 23, 42, 0.18);
  --shadow-glow: 0 12px 40px rgba(30, 64, 175, 0.25);

  --transition: 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.eyebrow-light {
  color: var(--color-accent);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section-head h2 {
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--color-text);
  margin-bottom: 1rem;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  color: var(--color-text-light);
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.45);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
  color: var(--color-text-light);
  box-shadow: 0 4px 14px rgba(30, 64, 175, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 64, 175, 0.4);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-text-light);
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-primary-dark);
  border-color: transparent;
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06), 0 8px 24px rgba(15, 23, 42, 0.04);
  padding: 0.5rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--color-text-light);
  transition: color var(--transition);
}

.site-header.scrolled .logo,
.site-footer .logo {
  color: var(--color-text);
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.logo-mark img {
  display: block;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 8px 22px rgba(23, 37, 84, 0.18));
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
}

.logo-text small {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.82;
}

.site-header.scrolled .logo-text small {
  color: var(--color-text-muted);
  opacity: 1;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text-light);
  transition: var(--transition);
}

.site-header.scrolled .nav-toggle span {
  background: var(--color-text);
}

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

.nav-menu ul {
  display: flex;
  gap: 1.75rem;
  list-style: none;
}

.nav-menu a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-light);
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--transition);
}

.site-header.scrolled .nav-menu a {
  color: var(--color-text);
}

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

.site-header.scrolled .nav-menu a:hover {
  color: var(--color-primary);
}

.nav-cta {
  background: var(--color-accent);
  color: var(--color-primary-dark) !important;
}

.nav-cta:hover {
  background: var(--color-primary);
  color: var(--color-text-light) !important;
}

.btn svg,
.hero-meta svg,
.service-icon svg,
.contact-icon svg {
  display: block;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 0;
  color: var(--color-text-light);
  background: var(--color-bg-deep);
}

.hero-pin {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 7rem 0 4.5rem;
}

.hero-stack {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  opacity: 0;
  transition:
    opacity 1100ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 7000ms cubic-bezier(0.16, 1, 0.3, 1);
  transform: scale(1.06);
  will-change: opacity, transform;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(6, 18, 42, 0.94) 0%,
      rgba(8, 24, 55, 0.84) 34%,
      rgba(8, 24, 55, 0.52) 58%,
      rgba(8, 24, 55, 0.20) 100%
    ),
    linear-gradient(
      180deg,
      rgba(5, 12, 28, 0.35) 0%,
      rgba(5, 12, 28, 0.08) 42%,
      rgba(5, 12, 28, 0.64) 100%
    );
  pointer-events: none;
}

.hero-pin::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 110px;
  background: linear-gradient(to bottom, transparent, var(--color-bg));
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(640px, calc(100% - 2rem));
  max-width: 640px;
  margin-left: clamp(2rem, 8vw, 9rem);
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  text-align: left;
}

.hero h1 {
  color: var(--color-text-light);
  max-width: 22ch;
  margin-bottom: 1.1rem;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.hero-sub {
  max-width: 420px;
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1rem;
  margin-bottom: 2.4rem;
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.68);
  flex-wrap: wrap;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-meta .divider {
  opacity: 0.4;
}

.hero-progress {
  position: absolute;
  right: 1.75rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.hero-progress .dot {
  width: 3px;
  height: 22px;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 2px;
  cursor: pointer;
  border: none;
  padding: 0;
  transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-progress .dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

.hero-progress .dot.active {
  background: var(--color-accent);
  height: 38px;
  box-shadow: 0 0 16px rgba(249, 115, 22, 0.6);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-text-light);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  transition: var(--transition);
  opacity: 0.7;
}

.hero-arrow:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.05);
}

.hero-arrow:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.hero-arrow.prev {
  left: 1.5rem;
}

.hero-arrow.next {
  right: 4rem;
}

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-cue span {
  display: block;
  width: 3px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 2px;
  animation: scrollCue 1.8s ease-in-out infinite;
}

@keyframes scrollCue {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  60%,
  100% {
    opacity: 0;
    transform: translateY(14px);
  }
}

/* ---------- Sections ---------- */

section {
  padding: 6rem 0;
}

.about,
.services,
.gallery,
.contact {
  scroll-margin-top: 80px;
}

.about,
.gallery {
  background: var(--color-bg);
}

.services {
  background:
    linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-tint) 50%, var(--color-bg) 100%);
  position: relative;
}

/* ---------- About ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about h2 {
  margin-bottom: 1.5rem;
}

.about p {
  margin-bottom: 1rem;
}

.check-list {
  list-style: none;
  margin-top: 1.5rem;
  display: grid;
  gap: 0.75rem;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  color: var(--color-text);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 22px;
  height: 22px;
  background-color: var(--color-primary-50);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231E40AF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

.about-image {
  position: relative;
  isolation: isolate;
}

.about-image::before,
.about-image::after {
  content: "";
  position: absolute;
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-image::before {
  inset: -1.5rem -1.5rem auto auto;
  width: 55%;
  height: 55%;
  border: 3px solid var(--color-accent);
}

.about-image::after {
  inset: auto auto -1.5rem -1.5rem;
  width: 45%;
  height: 45%;
  background: linear-gradient(135deg, var(--color-primary-100), var(--color-primary-50));
  border-radius: var(--radius-lg);
}

.image-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-alt);
  box-shadow: var(--shadow-lg);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-border-strong);
  text-align: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-family: monospace;
}

/* ---------- Services ---------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--color-surface);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 400ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--color-primary-200);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--color-primary-50);
  color: var(--color-primary);
  border-radius: var(--radius);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  color: var(--color-text-light);
  transform: scale(1.05);
}

.service-card h3 {
  margin-bottom: 0.25rem;
}

.service-card p {
  font-size: 0.95rem;
}

/* ---------- Gallery ---------- */

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-muted);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  transition: var(--transition);
}

.filter-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.filter-btn.active {
  background: var(--color-primary);
  color: var(--color-text-light);
  border-color: var(--color-primary);
}

.gallery-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  width: 100%;
  overflow-x: hidden;
}

.gallery-category {
  --gallery-shell-width: calc(var(--carousel-card, 320px) * 3 + var(--carousel-gap, 1rem) * 2 + 2.5rem);
  padding: 1.25rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 247, 252, 0.9)),
    var(--color-surface);
  border: 1px solid rgba(45, 95, 192, 0.12);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 14px 34px rgba(18, 32, 68, 0.08);
  width: 100%;
  max-width: var(--gallery-shell-width);
  min-width: 0;
  margin: 0 auto;
}

.gallery-category-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1rem;
}

.gallery-category-kicker {
  margin-bottom: 0.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.gallery-category-head h3 {
  margin: 0;
  font-size: 1.5rem;
}

.gallery-category-count {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.gallery-carousel {
  --carousel-card: clamp(220px, 24vw, 320px);
  --carousel-gap: 1rem;
  position: relative;
  width: 100%;
  max-width: calc(var(--carousel-card) * 3 + var(--carousel-gap) * 2);
  min-width: 0;
  margin: 0 auto;
  overflow: hidden;
}

.gallery-carousel::before,
.gallery-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 12%;
  z-index: 2;
  pointer-events: none;
}

.gallery-carousel::before {
  left: 0;
  background: linear-gradient(90deg, rgba(244, 247, 252, 0.98) 0%, rgba(244, 247, 252, 0.66) 55%, rgba(244, 247, 252, 0) 100%);
}

.gallery-carousel::after {
  right: 0;
  background: linear-gradient(270deg, rgba(244, 247, 252, 0.98) 0%, rgba(244, 247, 252, 0.66) 55%, rgba(244, 247, 252, 0) 100%);
}

.gallery-track {
  display: flex;
  gap: var(--carousel-gap);
  width: max-content;
  min-width: 0;
  will-change: transform;
}

.gallery-item {
  position: relative;
  flex: 0 0 var(--carousel-card);
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--color-bg-alt);
  transition: opacity 280ms ease, transform 280ms ease, box-shadow 280ms ease;
}

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

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

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

.gallery-item .play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(31, 22, 16, 0.25);
  z-index: 1;
  pointer-events: none;
}

.gallery-item .play-icon svg {
  width: 56px;
  height: 56px;
  color: white;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.gallery-item .caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.5rem 1rem 0.75rem;
  background: linear-gradient(transparent, rgba(31, 22, 16, 0.8));
  color: var(--color-text-light);
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .caption {
  opacity: 1;
}

.gallery-empty {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--color-text-muted);
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  border: 1px dashed var(--color-border-strong);
}

/* ---------- Contact ---------- */

.contact {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-alt);
}

.contact-stack {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition:
    opacity 1100ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 7000ms cubic-bezier(0.16, 1, 0.3, 1);
  transform: scale(1.05);
  will-change: opacity, transform;
}

.contact-slide.active {
  opacity: 1;
  transform: scale(1);
}

.contact-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(248, 250, 255, 0.96) 0%,
      rgba(248, 250, 255, 0.92) 36%,
      rgba(248, 250, 255, 0.68) 58%,
      rgba(248, 250, 255, 0.42) 100%
    ),
    radial-gradient(circle at 0% 100%, rgba(30, 64, 175, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 100% 0%, rgba(249, 115, 22, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 2;
}

.contact-info {
  display: grid;
  gap: 2rem;
}

.contact-intro {
  max-width: 560px;
}

.contact-info h2 {
  margin-bottom: 1.25rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-details {
  padding-top: 0.25rem;
}

.contact-list {
  list-style: none;
  margin: 2rem 0;
  display: grid;
  gap: 1.25rem;
}

.contact-list li {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.contact-list .contact-icon {
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  color: var(--color-text-light);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-list small {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 0.1rem;
}

.contact-list a {
  font-weight: 600;
  color: var(--color-text);
}

.contact-list a:hover {
  color: var(--color-primary);
}

.social-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text-light);
  transition: var(--transition);
}

.social-btn.whatsapp {
  background: #25D366;
}

.social-btn.facebook {
  background: #1877F2;
}

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

.contact-form {
  background: var(--color-surface);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-form span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0.8rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.18);
}

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

.contact-form .btn {
  align-self: start;
  padding: 0.95rem 2rem;
}

.form-note {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: -0.25rem;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--color-bg-deep);
  color: rgba(250, 246, 240, 0.7);
  padding: 4rem 0 1.5rem;
  position: relative;
  z-index: 1;
}

.site-footer .logo {
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: rgba(250, 246, 240, 0.6);
  max-width: 360px;
}

.site-footer h4 {
  color: var(--color-text-light);
  margin-bottom: 1rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.site-footer ul {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.site-footer a {
  color: rgba(250, 246, 240, 0.7);
  transition: color var(--transition);
}

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

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(250, 246, 240, 0.1);
  font-size: 0.85rem;
  color: rgba(250, 246, 240, 0.5);
  text-align: center;
}

/* ---------- Lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(11, 18, 33, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: fadeIn 200ms ease;
}

.lightbox[hidden] {
  display: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.lightbox-stage {
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-stage img,
.lightbox-stage video {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.lightbox-stage iframe {
  width: min(90vw, 1200px);
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.lightbox-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(250, 246, 240, 0.85);
  font-size: 0.95rem;
  text-align: center;
  max-width: 80vw;
}

.lightbox-btn {
  position: absolute;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  font-size: 1.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(8px);
  line-height: 1;
}

.lightbox-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-close {
  top: 1.5rem;
  right: 1.5rem;
}

.lightbox-prev {
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

/* ---------- Responsive ---------- */

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

  .about-image {
    order: -1;
    max-width: 420px;
  }

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

@media (max-width: 720px) {
  section {
    padding: 4rem 0;
  }

  .hero,
  .hero-pin {
    min-height: 90vh;
  }

  .hero-pin {
    padding: 5.5rem 0 3rem;
  }

  .hero-content {
    width: auto;
    max-width: none;
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.85rem, 7.6vw, 2.4rem);
  }

  .hero-sub {
    max-width: 100%;
    font-size: 1rem;
  }

  .hero-progress {
    right: 0.75rem;
    gap: 0.5rem;
  }

  .hero-progress .dot {
    width: 2px;
    height: 16px;
  }

  .hero-progress .dot.active {
    height: 26px;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
  }

  .hero-arrow.prev {
    left: 0.75rem;
  }

  .hero-arrow.next {
    right: 2.25rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--color-surface);
    padding: 1.5rem;
    gap: 1.25rem;
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    border-top: 1px solid var(--color-border);
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

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

  .nav-cta {
    width: 100%;
    justify-content: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .gallery-category {
    padding: 1rem;
    width: min(100%, 372px);
  }

  .gallery-category-head {
    flex-direction: column;
    align-items: start;
  }

  .gallery-category-head h3 {
    font-size: 1.3rem;
  }

  .gallery-carousel {
    --carousel-card: min(calc(100vw - 4rem), 340px);
    width: min(100%, 340px);
  }

  .gallery-carousel::before,
  .gallery-carousel::after {
    display: none;
  }

  .gallery-item {
    flex: 0 0 var(--carousel-card);
    width: var(--carousel-card);
    height: auto;
    aspect-ratio: 4 / 5;
    border-radius: calc(var(--radius) + 2px);
    background: var(--color-bg-alt);
    border: 0;
  }

  .gallery-item img,
  .gallery-item video {
    object-fit: cover;
    object-position: center;
    background: var(--color-bg-alt);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form {
    padding: 1.75rem;
  }

  .lightbox {
    padding: 4rem 0.75rem 3.25rem;
    align-items: center;
    touch-action: pan-y;
  }

  .lightbox-stage {
    width: 100%;
    max-width: calc(100vw - 1.5rem);
    max-height: calc(100vh - 7.25rem);
  }

  .lightbox-stage img,
  .lightbox-stage video {
    max-width: 100%;
    max-height: calc(100vh - 7.25rem);
    object-fit: contain;
  }

  .lightbox-close {
    top: 0.75rem;
    right: 0.75rem;
  }

  .lightbox-prev,
  .lightbox-next {
    display: inline-flex;
    width: 42px;
    height: 42px;
    top: 50%;
    background: rgba(255, 255, 255, 0.16);
    font-size: 1.55rem;
  }

  .lightbox-prev {
    left: 0.75rem;
  }

  .lightbox-next {
    right: 0.75rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .logo-text small {
    display: none;
  }
}

/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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