/* NOSIME WORLD LIMITED — Premium export landing */
:root {
  --navy-deep: #0b1630;
  --blue-royal: #3e5f93;
  --gold: #d9b66f;
  --gold-soft: #e8d29a;
  --charcoal: #1a1a1a;
  --beige-light: #f5f1e8;
  --white: #ffffff;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --header-h: 5.25rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.35);
  --shadow-card: 0 16px 40px rgba(11, 22, 48, 0.4);
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--beige-light);
  background: var(--navy-deep);
  overflow-x: hidden;
}

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

a {
  color: var(--gold-soft);
  text-decoration: none;
  transition: color 0.25s var(--ease-out);
}

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

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(11, 22, 48, 0.96) 0%, rgba(11, 22, 48, 0.88) 100%);
  border-bottom: 1px solid rgba(217, 182, 111, 0.12);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-soft);
}

.header-inner {
  width: min(1200px, 94vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  text-decoration: none;
}

.brand:hover {
  color: var(--white);
}

.brand-logo {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: cover;
  object-position: center 15%;
  border: 1px solid rgba(217, 182, 111, 0.35);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  filter: drop-shadow(0 4px 14px rgba(217, 182, 111, 0.2));
}

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

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.brand-sub {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.75);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(217, 182, 111, 0.35);
  border-radius: 10px;
  background: rgba(62, 95, 147, 0.25);
  cursor: pointer;
  z-index: 1002;
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  display: inline-block;
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.88);
  border-radius: 8px;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.35rem;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s var(--ease-out);
}

.nav-link:hover {
  color: var(--white);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link--cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: var(--navy-deep) !important;
  margin-left: 0.5rem;
  font-weight: 600;
}

.nav-link--cta::after {
  display: none;
}

.nav-link--cta:hover {
  filter: brightness(1.05);
  box-shadow: 0 8px 24px rgba(217, 182, 111, 0.35);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    top: var(--header-h);
    background: rgba(11, 22, 48, 0.98);
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.35s var(--ease-out), visibility 0.35s, transform 0.35s var(--ease-out);
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .nav-link {
    padding: 1rem;
    font-size: 1rem;
  }

  .nav-link--cta {
    margin-left: 0;
    text-align: center;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 3rem) 0 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--navy-deep) url("../images/gallery/global-trade-banner.webp") center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(11, 22, 48, 0.92) 0%,
    rgba(11, 22, 48, 0.75) 40%,
    rgba(26, 26, 26, 0.88) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.25rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  line-height: 1.12;
  color: var(--white);
  margin: 0 0 1.25rem;
  text-wrap: balance;
}

.text-gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: rgba(245, 241, 232, 0.9);
  max-width: 640px;
  margin: 0 auto 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.85rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, filter 0.3s;
  text-decoration: none;
  color: inherit;
}

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

.btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: var(--navy-deep);
  box-shadow: 0 12px 32px rgba(217, 182, 111, 0.35);
}

.btn--outline {
  border-color: rgba(232, 210, 154, 0.55);
  color: var(--white);
  background: rgba(62, 95, 147, 0.2);
}

.btn--outline:hover {
  border-color: var(--gold);
  background: rgba(62, 95, 147, 0.35);
}

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

.btn--whatsapp {
  background: #25d366;
  color: var(--white);
  margin-top: 1rem;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
}

.btn--whatsapp:hover {
  filter: brightness(1.06);
  color: var(--white);
}

.btn-icon {
  width: 22px;
  height: 22px;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(0.6);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* Sections */
.section {
  padding: clamp(4rem, 10vw, 6.5rem) 0;
  position: relative;
}

.section-header {
  max-width: 720px;
  margin-bottom: 3rem;
}

.section-header--center {
  text-align: center;
  margin-inline: auto;
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 1rem;
  line-height: 1.15;
}

.section-lead {
  margin: 0;
  font-size: 1.05rem;
  color: rgba(245, 241, 232, 0.82);
  font-weight: 300;
}

/* About */
.section-about {
  background: linear-gradient(180deg, var(--navy-deep) 0%, #0d1a35 100%);
}

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

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

.about-card {
  background: linear-gradient(145deg, rgba(62, 95, 147, 0.18) 0%, rgba(11, 22, 48, 0.6) 100%);
  border: 1px solid rgba(217, 182, 111, 0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

.about-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-soft);
  margin: 0 0 1rem;
}

.about-card p {
  margin: 0 0 1rem;
  color: rgba(245, 241, 232, 0.88);
}

.about-card p:last-child {
  margin-bottom: 0;
}

.about-aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.stat-card {
  background: var(--charcoal);
  border: 1px solid rgba(217, 182, 111, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.65);
}

.ceo-card {
  position: relative;
  background: rgba(62, 95, 147, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.75rem 1.75rem 1.5rem;
  border: 1px solid rgba(217, 182, 111, 0.12);
  overflow: hidden;
}

.ceo-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold), var(--blue-royal));
}

.ceo-title {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.5rem;
}

.ceo-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.ceo-role {
  margin: 0.35rem 0 0.75rem;
  color: rgba(245, 241, 232, 0.75);
  font-size: 0.95rem;
}

.ceo-note {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(245, 241, 232, 0.65);
}

/* Products */
.section-products {
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(62, 95, 147, 0.25), transparent 55%), var(--navy-deep);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

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

.product-card {
  background: rgba(26, 26, 26, 0.55);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(217, 182, 111, 0.12);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.35s;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
  border-color: rgba(217, 182, 111, 0.35);
}

.product-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.product-card:hover .product-card-media img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.4rem 0.85rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-deep);
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  border-radius: 999px;
}

.product-card-body {
  padding: 1.75rem;
}

.product-card-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--white);
  margin: 0 0 0.75rem;
}

.product-card-text {
  margin: 0 0 1rem;
  color: rgba(245, 241, 232, 0.78);
  font-size: 0.95rem;
}

.product-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.product-meta li {
  font-size: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(62, 95, 147, 0.35);
  color: var(--gold-soft);
}

/* Why */
.section-why {
  background: #0a1428;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.feature-card {
  padding: 1.75rem;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(62, 95, 147, 0.2) 0%, rgba(11, 22, 48, 0.5) 100%);
  border: 1px solid rgba(217, 182, 111, 0.1);
  transition: border-color 0.35s, transform 0.35s var(--ease-out);
}

.feature-card:hover {
  border-color: rgba(217, 182, 111, 0.35);
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(217, 182, 111, 0.12);
  color: var(--gold);
  margin-bottom: 1rem;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  margin: 0 0 0.5rem;
}

.feature-text {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(245, 241, 232, 0.72);
}

/* Operations */
.section-operations {
  background: linear-gradient(180deg, var(--navy-deep), #0d1830);
}

.operations-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

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

.operations-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

.operations-list li {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(217, 182, 111, 0.12);
}

.operations-list strong {
  display: block;
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.operations-list span {
  color: rgba(245, 241, 232, 0.85);
  font-size: 0.95rem;
}

.operations-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.op-panel {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: rgba(26, 26, 26, 0.65);
  border: 1px solid rgba(217, 182, 111, 0.12);
}

.op-panel--wide {
  grid-column: 1 / -1;
}

.op-panel-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-royal);
  color: rgba(232, 210, 154, 0.65);
  margin-bottom: 0.5rem;
}

.op-panel-value {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
}

/* Pricing */
.section-pricing {
  background: radial-gradient(circle at 20% 20%, rgba(217, 182, 111, 0.08), transparent 45%), var(--charcoal);
}

.pricing-highlight {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.moq-block {
  text-align: center;
  padding: 1.75rem 2.5rem;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(217, 182, 111, 0.35);
  background: linear-gradient(135deg, rgba(62, 95, 147, 0.25), rgba(11, 22, 48, 0.8));
}

.moq-label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.5rem;
}

.moq-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin-inline: auto;
}

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

.price-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: rgba(11, 22, 48, 0.6);
  border: 1px solid rgba(217, 182, 111, 0.15);
  text-align: center;
  transition: transform 0.35s var(--ease-out), border-color 0.35s;
}

.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 182, 111, 0.4);
}

.price-card--accent {
  background: linear-gradient(145deg, rgba(62, 95, 147, 0.35), rgba(11, 22, 48, 0.9));
  border-color: rgba(217, 182, 111, 0.3);
}

.price-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-soft);
  margin: 0 0 0.25rem;
}

.price-card-unit {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  color: rgba(245, 241, 232, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.price-card-range {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 1rem;
}

.price-card-range .currency {
  display: block;
  font-size: 0.75rem;
  font-family: var(--font-body);
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.price-card-note {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(245, 241, 232, 0.65);
}

.pricing-disclaimer {
  text-align: center;
  margin: 2rem 0 0;
  font-size: 0.85rem;
  color: rgba(245, 241, 232, 0.55);
}

/* Gallery — premium bento / masonry-style grid */
.section-gallery {
  background: linear-gradient(180deg, var(--navy-deep) 0%, #0a1428 50%, var(--navy-deep) 100%);
  position: relative;
}

.section-gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 45% at 50% 0%, rgba(62, 95, 147, 0.18), transparent 55%);
  pointer-events: none;
}

.section-gallery .container {
  position: relative;
  z-index: 1;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(96px, auto);
  gap: clamp(1rem, 2.5vw, 1.75rem);
  max-width: 1140px;
  margin-inline: auto;
}

.gallery-tile {
  margin: 0;
  position: relative;
  isolation: isolate;
  border-radius: clamp(14px, 2vw, 22px);
  overflow: hidden;
  border: 1px solid rgba(217, 182, 111, 0.14);
  background: rgba(26, 26, 26, 0.55);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.35s;
}

.gallery-tile:focus-within {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.gallery-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(217, 182, 111, 0.22) inset;
  border-color: rgba(217, 182, 111, 0.28);
}

.gallery-tile__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.gallery-tile__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(11, 22, 48, 0.55) 100%);
  opacity: 0.85;
  transition: opacity 0.45s var(--ease-out);
}

.gallery-tile:hover .gallery-tile__media::after {
  opacity: 1;
}

.gallery-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.75s var(--ease-out);
}

.gallery-tile:hover .gallery-tile__media img {
  transform: scale(1.06);
}

.gallery-tile__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.1rem 1.35rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  transition: padding 0.35s var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .gallery-tile__caption {
    transform: translateY(4px);
    opacity: 0.88;
    transition: transform 0.45s var(--ease-out), opacity 0.45s var(--ease-out), padding 0.35s var(--ease-out);
  }

  .gallery-tile:hover .gallery-tile__caption {
    transform: translateY(0);
    opacity: 1;
    padding-bottom: 1.4rem;
  }
}

.gallery-tile__label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.gallery-tile__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  transition: color 0.35s var(--ease-out);
}

.gallery-tile:hover .gallery-tile__title {
  color: var(--gold-soft);
}

/* Bento placement — large feature + stacked accents + panorama strip */
.gallery-tile--feature {
  grid-column: 1 / span 7;
  grid-row: 1 / span 2;
  min-height: clamp(300px, 38vw, 440px);
}

.gallery-tile--accent {
  grid-column: 8 / span 5;
  grid-row: 1 / span 1;
  min-height: clamp(210px, 20vw, 260px);
}

.gallery-tile--portrait {
  grid-column: 8 / span 5;
  grid-row: 2 / span 1;
  min-height: clamp(210px, 20vw, 260px);
}

.gallery-tile--panorama {
  grid-column: 1 / -1;
  grid-row: 3 / span 1;
  min-height: clamp(168px, 18vw, 228px);
  aspect-ratio: 21 / 6;
}

.gallery-tile--panorama .gallery-tile__media img {
  object-position: center 40%;
}

@media (max-width: 1023px) {
  .gallery-masonry {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(0, auto);
  }

  .gallery-tile--feature {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: min(52vw, 360px);
    aspect-ratio: 16 / 10;
  }

  .gallery-tile--accent {
    grid-column: 1;
    grid-row: auto;
    min-height: 220px;
    aspect-ratio: 1;
  }

  .gallery-tile--portrait {
    grid-column: 2;
    grid-row: auto;
    min-height: 220px;
    aspect-ratio: 1;
  }

  .gallery-tile--panorama {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 16 / 5;
    min-height: 148px;
  }
}

@media (max-width: 540px) {
  .gallery-masonry {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .gallery-tile--accent,
  .gallery-tile--portrait {
    grid-column: 1 / -1;
    aspect-ratio: 4 / 3;
    min-height: 200px;
  }

  .gallery-tile--feature {
    min-height: 240px;
  }

  .gallery-tile--panorama {
    aspect-ratio: 16 / 7;
    min-height: 140px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-tile,
  .gallery-tile__caption,
  .gallery-tile__media img,
  .gallery-tile__media::after {
    transition: none;
  }

  .gallery-tile:hover {
    transform: none;
  }

  .gallery-tile:hover .gallery-tile__media img {
    transform: none;
  }

  .gallery-tile:hover .gallery-tile__caption {
    transform: none;
    opacity: 1;
  }
}

/* Contact */
.section-contact {
  background: linear-gradient(180deg, #0a1428 0%, var(--navy-deep) 100%);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

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

.contact-details {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

.contact-details li {
  margin-bottom: 1.25rem;
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.contact-value {
  color: rgba(245, 241, 232, 0.9);
}

.contact-link:hover {
  color: var(--gold-soft);
}

.contact-form-wrap {
  background: rgba(26, 26, 26, 0.55);
  border: 1px solid rgba(217, 182, 111, 0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.form-alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.form-alert--success {
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #a8f5c8;
}

.form-alert--warning {
  background: rgba(217, 182, 111, 0.12);
  border: 1px solid rgba(217, 182, 111, 0.35);
  color: var(--gold-soft);
}

.form-alert--error {
  background: rgba(220, 80, 80, 0.12);
  border: 1px solid rgba(220, 80, 80, 0.35);
  color: #ffb4b4;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

.contact-form {
  position: relative;
}

.form-row {
  margin-bottom: 1.25rem;
}

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

@media (max-width: 520px) {
  .form-row--half {
    grid-template-columns: 1fr;
  }
}

.form-label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
  color: rgba(245, 241, 232, 0.85);
}

.req {
  color: var(--gold);
}

.form-input {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--white);
  background: rgba(11, 22, 48, 0.65);
  border: 1px solid rgba(217, 182, 111, 0.2);
  border-radius: 10px;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.form-input::placeholder {
  color: rgba(245, 241, 232, 0.35);
}

.form-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(217, 182, 111, 0.15);
}

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

.map-placeholder {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px dashed rgba(217, 182, 111, 0.25);
  text-align: center;
}

.map-placeholder-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.map-placeholder-text {
  margin: 0.5rem 0 1rem;
  font-size: 0.875rem;
  color: rgba(245, 241, 232, 0.55);
}

.map-fake {
  height: 180px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(62, 95, 147, 0.3), rgba(11, 22, 48, 0.8));
  position: relative;
  overflow: hidden;
}

.map-fake::after {
  content: "";
  position: absolute;
  inset: 40% 45%;
  width: 32px;
  height: 32px;
  margin: -16px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--gold);
  opacity: 0.6;
}

/* Footer */
.site-footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(217, 182, 111, 0.15);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 2.5rem;
  padding: 3.5rem 0;
}

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

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

.footer-brand {
  min-width: 0;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  gap: clamp(0.85rem, 2vw, 1.25rem);
  color: var(--white);
  text-decoration: none;
  margin-bottom: 1rem;
  max-width: 100%;
}

.footer-logo-link:hover {
  color: var(--white);
}

.footer-logo {
  flex-shrink: 0;
  display: block;
  width: auto;
  height: clamp(72px, 9.5vw, 96px);
  max-width: min(108px, 26vw);
  object-fit: cover;
  object-position: center 18%;
  border-radius: 14px;
  border: 1px solid rgba(217, 182, 111, 0.28);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
  min-width: 0;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.footer-brand-sub {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(245, 241, 232, 0.65);
}

.footer-tagline {
  margin: 0;
  max-width: min(280px, 100%);
  font-size: 0.9rem;
  color: rgba(245, 241, 232, 0.65);
  line-height: 1.5;
}

@media (max-width: 520px) {
  .footer-logo {
    height: clamp(58px, 16vw, 76px);
    max-width: min(88px, 32vw);
  }

  .footer-logo-link {
    gap: 0.75rem;
  }
}

.footer-heading {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}

.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav a {
  display: block;
  padding: 0.35rem 0;
  color: rgba(245, 241, 232, 0.75);
  font-size: 0.9rem;
}

.footer-nav a:hover {
  color: var(--gold-soft);
}

.footer-contact p {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: rgba(245, 241, 232, 0.75);
}

.footer-contact a {
  color: rgba(245, 241, 232, 0.85);
}

.social-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.75rem;
}

.social-link {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(217, 182, 111, 0.25);
  color: var(--gold);
  transition: background 0.25s, color 0.25s, transform 0.25s;
}

.social-link:hover {
  background: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-2px);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.875rem 0;
}

.footer-bottom-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  min-height: 52px;
}

.footer-bottom-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
  min-width: 0;
}

.footer-bottom-copyright {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.45;
  color: #ffffff;
  letter-spacing: 0.01em;
}

.footer-bottom-credit {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.45;
  color: #9a9a9a;
  letter-spacing: 0.02em;
}

.footer-bottom-right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.footer-bottom-logo {
  display: block;
  height: 42px;
  width: auto;
  max-width: min(132px, 28vw);
  object-fit: contain;
  object-position: center right;
  border-radius: 8px;
}

@media (max-width: 560px) {
  .footer-bottom-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-block: 0.25rem;
  }

  .footer-bottom-left {
    align-items: center;
    order: 1;
  }

  .footer-bottom-right {
    justify-content: center;
    order: 2;
  }

  .footer-bottom-logo {
    object-position: center;
    max-width: 140px;
    height: 40px;
  }
}

/* Scroll animations */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-delay="1"] {
  transition-delay: 0.1s;
}

[data-delay="2"] {
  transition-delay: 0.2s;
}

[data-delay="3"] {
  transition-delay: 0.3s;
}

[data-delay="4"] {
  transition-delay: 0.4s;
}

[data-delay="5"] {
  transition-delay: 0.5s;
}

@media (prefers-reduced-motion: reduce) {
  [data-animate] {
    opacity: 1;
    transform: none;
  }
}
