:root {
  --green-900: #07140c;
  --green-800: #0b2a17;
  --green-700: #1d4f29;
  --green-600: #376544;
  --gold-700: #946413;
  --gold-600: #bd892a;
  --gold-400: #e5b953;
  --cream-200: #ebe4cd;
  --paper: #fbfaf5;
  --ink: #172019;
  --muted: #58655d;
  --border: #e1d8c4;
  --radius-sm: 16px;
  --radius-md: 22px;
  --radius-lg: 28px;
  --shadow-sm: 0 10px 24px rgba(14, 43, 24, 0.08);
  --shadow-lg: 0 24px 60px rgba(14, 43, 24, 0.13);
  --content: 1380px;
  --header-height: 84px;
  --title-size: clamp(2.1rem, 10vw, 3.2rem);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: clip;
  padding-bottom: calc(82px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, #fbfaf5, #f4efe2);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

body,
button,
input,
textarea {
  font: inherit;
}

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

img {
  height: auto;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid #f2ce70;
  outline-offset: 3px;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  hyphens: none;
  text-wrap: balance;
}

h2,
.subhero h2 {
  max-width: 1180px;
  margin: 0.22rem 0 1.1rem;
  color: var(--green-700);
  font-size: var(--title-size);
  letter-spacing: -0.025em;
  line-height: 1.08;
}

p {
  margin: 0.55rem 0;
}

.nobr {
  white-space: nowrap;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

.section,
.sector-block {
  padding-block: 64px;
}

.section.soft {
  background: #f4efe3;
}

.section.dark {
  background: radial-gradient(circle at 18% 0%, #1e5130 0, #0a1e11 48%, #061008 100%);
  color: #fff;
}

.dark h2 {
  color: #fff;
}

.dark .lead {
  color: #d8e6dc;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--gold-600);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lead {
  max-width: 850px;
  color: #526057;
  font-size: clamp(1.02rem, 2vw, 1.28rem);
}

.goldline {
  width: min(260px, 70vw);
  height: 2px;
  margin: 24px 0;
  background: linear-gradient(90deg, transparent, #f6d982, #a96e14, #f6d982, transparent);
}

.topbar {
  height: 4px;
  background: linear-gradient(90deg, #7a4c09, #f5d779, #9b650e);
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(5, 25, 13, 0.98), rgba(6, 22, 12, 0.96));
  border-bottom: 1px solid rgba(225, 184, 88, 0.28);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.nav {
  position: relative;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  width: min(190px, calc(100vw - 92px));
  height: 64px;
  display: flex;
  flex: none;
  align-items: center;
}

.brand img {
  width: auto;
  max-width: 100%;
  max-height: 62px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.34));
}

.hamb {
  width: 48px;
  height: 48px;
  margin-left: auto;
  padding: 12px;
  flex: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.07);
}

.hamb span {
  display: block;
  height: 3px;
  margin: 5px 0;
  border-radius: 3px;
  background: #fff;
}

.navlinks {
  position: absolute;
  top: 100%;
  right: -12px;
  left: -12px;
  max-height: calc(100dvh - var(--header-height));
  display: none;
  overflow-y: auto;
  padding: 12px;
  flex-direction: column;
  align-items: stretch;
  gap: 2px;
  background: #07160c;
  border-top: 1px solid rgba(238, 201, 108, 0.25);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
}

.navlinks.open {
  display: flex;
}

.navlinks a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 12px;
}

.navlinks a:hover {
  color: #f0cf79;
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta {
  justify-content: center;
  gap: 9px;
  margin-top: 8px;
  background: linear-gradient(180deg, #e5b953, #a96d12);
  border: 1px solid #f2d080;
  border-radius: 999px !important;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.45), 0 12px 24px rgba(0, 0, 0, 0.18);
}

.nav-cta img,
.btn img {
  width: 20px;
  height: 20px;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #0b1b11;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(1.16) contrast(1.05) brightness(0.96);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 18, 10, 0.16), rgba(4, 18, 10, 0.82));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: 48px 116px;
  color: #fff;
}

.hero-copy {
  width: 100%;
  max-width: 760px;
  padding: 22px 18px;
  border: 1px solid rgba(244, 222, 161, 0.2);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(7, 27, 15, 0.78), rgba(7, 27, 15, 0.46));
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(7px);
}

.hero h1 {
  margin: 0.45rem 0 0.8rem;
  font-size: clamp(2.75rem, 15vw, 4.4rem);
  line-height: 0.98;
  text-shadow: 0 5px 24px rgba(0, 0, 0, 0.45);
}

.hero p {
  color: #f5f4ee;
  font-size: 1rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.location-pill {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid rgba(245, 209, 115, 0.38);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.38);
  color: #f1cf77;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.hero-claim {
  width: fit-content;
  max-width: 100%;
  margin: 16px 0 18px;
  padding: 13px 13px 14px;
  border-top: 1px solid rgba(240, 207, 121, 0.22);
  border-bottom: 1px solid rgba(240, 207, 121, 0.16);
  border-left: 4px solid #d8a63a;
  border-radius: 0 16px 16px 0;
  background: linear-gradient(90deg, rgba(189, 137, 42, 0.22), rgba(7, 27, 15, 0.1));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 14px 34px rgba(0, 0, 0, 0.16);
  color: #fff;
  font-size: clamp(1.08rem, 4.7vw, 1.4rem) !important;
  letter-spacing: 0.005em;
  line-height: 1.36;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42);
}

.actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.hero .actions {
  flex-flow: row nowrap;
  margin-top: 16px;
}

.hero .btn {
  width: auto;
  min-width: 0;
  padding-inline: 8px;
  flex: 1 1 0;
  font-size: 0.84rem;
}

.btn {
  width: 100%;
  min-height: 48px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.btn-gold {
  background: linear-gradient(180deg, #e2b44e, #ad7415);
  color: #fff;
  border-color: #e8c46d;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.42), 0 12px 26px rgba(96, 61, 6, 0.22);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.btn-outline-dark {
  background: #fff;
  color: var(--green-700);
  border-color: #d9cfb8;
  box-shadow: var(--shadow-sm);
}

.stats-wrap {
  position: relative;
  z-index: 4;
  margin-top: -20px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #e7deca;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.stat {
  min-width: 0;
  padding: 18px 8px;
  border-right: 1px solid #eee6d6;
  border-bottom: 1px solid #eee6d6;
  text-align: center;
}

.stat:nth-child(2n) {
  border-right: 0;
}

.stat:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.stat strong {
  display: block;
  color: var(--green-700);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 5.2vw, 1.55rem);
  line-height: 1.08;
}

.stat span {
  display: block;
  margin-top: 5px;
  color: #68736b;
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-transform: uppercase;
}

.grid2,
.sector-head,
.location-stage,
.contact-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.media-card,
.map-card {
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e5dcc7;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.media-card {
  aspect-ratio: 4 / 3;
}

.media-card img,
.map-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-card img {
  object-fit: contain;
}

.feature-grid,
.value-grid,
.info-grid,
.dimension-grid,
.video-grid,
.testimonial-grid,
.doc-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.feature-card,
.value-card,
.info-card,
.dimension-card,
.sector-detail {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(215, 178, 82, 0.34);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), var(--shadow-sm);
}

.feature-card > div,
.value-card > div,
.info-card > div,
.dimension-card > div {
  min-width: 0;
}

.feature-card h3,
.value-card h3,
.info-card h3 {
  margin: 0 0 5px;
  color: inherit;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.02rem;
}

.feature-card p,
.value-card p,
.info-card p {
  margin: 0;
  color: inherit;
  opacity: 0.86;
}

.light-card,
.value-card,
.info-card {
  background: #fff;
  color: var(--ink);
}

.light-card h3,
.value-card h3,
.info-card h3 {
  color: var(--green-700);
}

.value-card p,
.info-card p {
  color: var(--muted);
}

.icon3d,
.mini3d,
.play-medal,
.carousel-btn,
.insta-glyph,
.drive-symbol {
  position: relative;
  display: grid;
  flex: none;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 238, 184, 0.95);
  outline: 1px solid rgba(135, 86, 11, 0.34);
  outline-offset: -3px;
  background: linear-gradient(145deg, #fff9df 0%, #efcf78 27%, #c68a1d 64%, #8f580d 100%);
  box-shadow: inset 1px 2px 2px rgba(255, 255, 255, 0.95), inset -3px -6px 11px rgba(91, 55, 5, 0.26), 0 9px 18px rgba(77, 48, 7, 0.23);
}

.icon3d::after,
.mini3d::after {
  content: "";
  position: absolute;
  inset: 2px 2px 55%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), transparent);
  pointer-events: none;
}

.icon3d {
  width: 54px;
  height: 54px;
  border-radius: 17px;
}

.mini3d {
  width: 42px;
  height: 42px;
  border-radius: 13px;
}

.icon3d svg,
.mini3d svg,
.drive-symbol svg {
  z-index: 1;
  width: 26px;
  height: 26px;
  fill: none;
  stroke: #124b2a;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 2px 1px rgba(255, 255, 255, 0.42));
}

.mini3d svg {
  width: 21px;
  height: 21px;
}

.subhero {
  padding-block: 52px 38px;
  background: radial-gradient(circle at 80% 12%, #356b45, #0a2314 58%, #06120a);
  color: #fff;
}

.subhero h2 {
  color: #fff;
}

.subhero p {
  max-width: 900px;
  color: #e4eee7;
  font-size: clamp(1.02rem, 2vw, 1.15rem);
}

.dimension-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.08rem;
}

.dimension-card p {
  margin: 0;
  color: #d7e4da;
}

.sector-index {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.sector-chip {
  min-width: 0;
  min-height: 118px;
  display: grid;
  place-items: center;
  padding: 10px;
  border: 1px solid #e5dcc8;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 246, 237, 0.98));
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.sector-chip:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(16, 50, 27, 0.13);
}

.sector-chip img {
  max-width: 96%;
  max-height: 96px;
  object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(32, 39, 28, 0.2));
}

.sector-block {
  border-top: 1px solid #e3dac5;
  scroll-margin-top: calc(var(--header-height) + 12px);
}

.sector-logo-stage {
  min-width: 0;
  min-height: 220px;
  display: grid;
  place-items: center;
  padding: 22px;
  border: 1px solid #e5dac3;
  border-radius: 26px;
  background: radial-gradient(circle at 50% 45%, #fff 0, #fbf8ef 72%, #f0eadc 100%);
  box-shadow: var(--shadow-lg);
}

.sector-logo-stage img {
  max-width: 94%;
  max-height: 205px;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(20, 30, 20, 0.23));
}

.sector-head h3 {
  margin: 0.15rem 0 0.3rem;
  color: var(--sector);
  font-size: clamp(2.35rem, 11vw, 4rem);
  line-height: 0.98;
}

.sector-sub {
  margin-bottom: 14px;
  color: #59655d;
  font-size: 1.1rem;
}

.sector-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 20px;
}

.pill {
  padding: 8px 11px;
  border: 1px solid #e2d9c5;
  border-radius: 999px;
  background: #fff;
  color: #37443b;
  font-size: 0.82rem;
}

.sector-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
}

.sector-detail {
  align-items: center;
  padding: 12px;
  background: color-mix(in srgb, var(--sector) 8%, #fff);
  border-color: color-mix(in srgb, var(--sector) 22%, #e4ddce);
  color: #344339;
  font-weight: 700;
}

.sector-detail > span:last-child {
  min-width: 0;
}

.sector-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.sector-gallery button,
.photo-grid button,
.map-zoom {
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 16px;
  background: none;
  box-shadow: var(--shadow-sm);
}

.sector-gallery img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  transition: transform 0.2s;
}

.sector-gallery button:hover img {
  transform: scale(1.02);
}

.map-panel {
  min-width: 0;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid #e4dbc6;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.map-zoom {
  width: 100%;
  display: block;
  border-radius: 0;
  box-shadow: none;
}

.map-panel img {
  width: 100%;
  max-height: 650px;
  object-fit: contain;
  background: #faf8f2;
}

.map-caption {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
}

.map-caption > div {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.map-caption strong,
.map-caption small {
  display: block;
}

.map-caption small {
  color: #667168;
}

.text-link {
  min-height: 44px;
  padding: 6px 0;
  border: 0;
  background: none;
  color: var(--green-700);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--gold-600);
  text-underline-offset: 4px;
}

.location-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.location-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 17px 8px;
  border: 1px solid var(--border);
  border-radius: 19px;
  background: linear-gradient(180deg, #fff, #f8f4e9);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.location-card strong {
  color: var(--green-700);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.38rem;
  line-height: 1.05;
}

.location-card em {
  color: var(--gold-700);
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 800;
}

.location-card span {
  color: #69746b;
  font-size: 0.88rem;
}

.video-card,
.instagram-preview-card {
  position: relative;
  min-width: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(230, 203, 133, 0.28);
  border-radius: 20px;
  background: #0b1b11;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.84;
}

.video-card::after,
.instagram-preview-card::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  z-index: 1;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
}

.play-medal {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.play-medal svg {
  width: 28px;
  height: 28px;
  fill: #0f4a2a;
  stroke: none;
}

.video-label {
  position: absolute;
  bottom: 14px;
  left: 16px;
  z-index: 2;
  color: #fff;
  font-weight: 800;
  text-shadow: 0 3px 10px #000;
}

.testimonial-link {
  min-height: 210px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #e1d7c1;
  border-radius: 22px;
  background: linear-gradient(145deg, #fff, #f6f1e4);
  box-shadow: var(--shadow-lg);
}

.testimonial-link .platform {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--green-700);
  font-weight: 800;
}

.testimonial-link .platform img {
  width: 26px;
  height: 26px;
}

.testimonial-link p {
  color: #556258;
  font-size: 1.03rem;
}

.premium-media-grid {
  align-items: stretch;
}

.insta-preview-window {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: linear-gradient(145deg, #f7f1df, #fff);
}

.insta-preview-window iframe {
  width: 190%;
  height: 190%;
  border: 0;
  background: #fff;
  pointer-events: none;
  transform: scale(0.526);
  transform-origin: top left;
}

.media-note {
  max-width: 900px;
  margin-top: 14px;
  color: #718076;
  font-size: 0.82rem;
}

.section-heading-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.section-heading-row h2 {
  margin-bottom: 0;
}

.carousel-controls {
  display: flex;
  align-self: flex-end;
  gap: 8px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 14px;
  color: #174b2a;
  font-size: 1.65rem;
  line-height: 1;
}

.reel-carousel {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 4px 2px 14px;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--gold-600) #efe6d3;
  scrollbar-width: thin;
}

.reel-preview-card {
  flex: 0 0 min(78vw, 215px);
  overflow: hidden;
  padding: 0;
  border: 1px solid #decfae;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  scroll-snap-align: start;
  text-align: left;
}

.reel-embed-viewport {
  position: relative;
  height: 270px;
  display: block;
  overflow: hidden;
  background: linear-gradient(145deg, #faf5e8, #ece1c7);
}

.reel-embed-viewport iframe {
  width: 190%;
  height: 700px;
  border: 0;
  background: #fff;
  pointer-events: none;
  transform: scale(0.526);
  transform-origin: top left;
}

.reel-card-footer {
  height: 62px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 10px;
  color: #174c2a;
}

.insta-glyph {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.insta-glyph svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: #174b2a;
  stroke-width: 1.8;
}

.reel-card-footer strong {
  font-size: 0.9rem;
}

.reel-arrow {
  margin-left: auto;
  color: #a66d12;
  font-size: 1.55rem;
}

.photo-grid {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 2px 2px 14px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--gold-600) #e9dfca;
  scrollbar-width: thin;
}

.photo-grid button {
  position: relative;
  min-height: 138px;
  height: 138px;
  flex: 0 0 min(72vw, 190px);
  scroll-snap-align: start;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.photo-grid button::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
}

.photo-grid span {
  position: absolute;
  bottom: 11px;
  left: 12px;
  z-index: 2;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  text-shadow: 0 2px 8px #000;
}

.gallery-drive-cta {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.drive-symbol {
  width: 36px;
  height: 36px;
  border-radius: 11px;
}

.drive-symbol svg {
  width: 20px;
  height: 20px;
}

.doc-card {
  min-width: 0;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid #e1d7c1;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.doc-media {
  height: clamp(285px, 105vw, 370px);
  display: grid;
  overflow: hidden;
  padding: 16px;
  place-items: center;
  background: linear-gradient(180deg, #f3ecdb, #fff);
}

.doc-media.doc-book {
  padding: 16px;
  background: linear-gradient(180deg, #f7f1e3, #fff);
}

.doc-media img,
.doc-media.doc-book img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  object-fit: contain;
  object-position: center;
}

.doc-body {
  position: relative;
  z-index: 3;
  padding: 20px;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 9px;
  border-top: 1px solid #eee5d1;
  background: #fff;
}

.doc-body h3 {
  margin: 2px 0 3px;
  color: var(--green-700);
  font-size: 1.32rem;
  line-height: 1.18;
}

.doc-body p {
  margin: 0;
  color: #59655d;
}

.doc-body .btn {
  margin-top: auto;
}

.doc-body .icon3d {
  width: 50px;
  height: 50px;
  margin-bottom: 4px;
  border-radius: 15px;
}

.faq {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.faq details {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
}

.faq summary {
  color: var(--green-700);
  cursor: pointer;
  font-weight: 800;
}

.faq p {
  color: #58645b;
}

.contact-wrap {
  align-items: start;
}

.contact-panel,
.form {
  min-width: 0;
  padding: 22px 18px;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.contact-panel {
  border: 1px solid rgba(235, 203, 116, 0.22);
  background: linear-gradient(145deg, #0b2a17, #1d4f29 58%, #326e44);
  color: #fff;
}

.contact-panel p {
  color: #e5eee8;
}

.email-box {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 24px;
  padding: 12px;
  overflow: hidden;
  border: 1px solid rgba(238, 207, 127, 0.22);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.08);
}

.email-box a {
  min-width: 0;
  color: #f1cc70;
  font-size: clamp(0.82rem, 3.8vw, 1.2rem);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-mini {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.contact-mini a {
  min-width: 0;
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.contact-mini a span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.contact-mini img {
  width: 25px;
  height: 25px;
  flex: none;
}

.form {
  border: 1px solid #e1d7c1;
  background: #fff;
}

.form h3 {
  margin: 0 0 8px;
  color: var(--green-700);
  font-size: clamp(1.65rem, 7vw, 2rem);
}

.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 13px;
}

.field {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  color: #35513e;
  font-size: 0.9rem;
  font-weight: 800;
}

.field input,
.field textarea {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid #d9cfba;
  border-radius: 13px;
  outline: none;
  background: #fbfaf6;
  color: var(--ink);
}

.field input:focus,
.field textarea:focus {
  border-color: var(--gold-600);
  box-shadow: 0 0 0 3px rgba(189, 137, 42, 0.12);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.footer {
  padding: 52px 0 24px;
  border-top: 2px solid #b98524;
  background: radial-gradient(circle at 18% 0%, #173a22, #07110b 66%);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 30px;
}

.footer-logo {
  width: auto;
  max-width: min(260px, 100%);
  max-height: 108px;
  margin-bottom: 14px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.34));
}

.footer p {
  color: #d7e3da;
}

.footer h4 {
  margin: 0 0 12px;
  color: #efca6e;
}

.footer a {
  width: fit-content;
  max-width: 100%;
  display: block;
  margin: 7px 0;
  color: #dce6df;
  overflow-wrap: anywhere;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.footer-socials a {
  width: 46px;
  height: 46px;
  display: grid;
  margin: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.footer-socials img {
  width: 23px;
  height: 23px;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #b9c8bd;
  font-size: 0.84rem;
}

.floatbar {
  position: fixed;
  right: auto;
  bottom: max(10px, env(safe-area-inset-bottom));
  left: 50%;
  z-index: 900;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 7px;
  border: 1px solid rgba(189, 137, 42, 0.22);
  border-radius: 22px;
  background: rgba(249, 247, 239, 0.9);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  transform: translateX(-50%);
}

.social-float {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(237, 210, 137, 0.55);
  border-radius: 14px;
  background: linear-gradient(155deg, #244d31, #0c2918);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.16);
}

.social-float svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #f2ce70;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-float.facebook svg {
  fill: #f2ce70;
  stroke: none;
}

.social-float.wa {
  width: 58px;
  height: 58px;
  border-color: #6fe099;
  border-radius: 18px;
  background: linear-gradient(160deg, #37cf70, #0c8b3c);
  box-shadow: inset 0 2px 2px rgba(255, 255, 255, 0.35), 0 10px 22px rgba(0, 0, 0, 0.22), 0 0 0 6px rgba(50, 196, 100, 0.1);
}

.social-float.wa svg {
  width: 32px;
  height: 32px;
  stroke: #fff;
}

.lightbox,
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 68px 12px 82px;
  background: rgba(0, 0, 0, 0.9);
}

.lightbox.open,
.video-modal.open {
  display: flex;
}

.modal-close {
  position: absolute;
  top: max(12px, env(safe-area-inset-top));
  right: 12px;
  z-index: 4;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.56);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}

.lb-stage {
  position: relative;
  max-width: 100%;
  max-height: 78vh;
  display: grid;
  place-items: center;
}

.lightbox .lb-stage img {
  max-width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.lb-arrow {
  position: fixed;
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 3;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid rgba(245, 215, 137, 0.55);
  border-radius: 16px;
  background: linear-gradient(155deg, #d9aa40, #81510d);
  color: #fff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.38);
  font-size: 2.3rem;
  line-height: 1;
}

.lb-prev {
  left: calc(50% - 62px);
}

.lb-next {
  right: calc(50% - 62px);
}

.lb-counter {
  position: absolute;
  bottom: 8px;
  left: 50%;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(4, 18, 10, 0.78);
  color: #f7d77e;
  font-size: 0.78rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
  transform: translateX(-50%);
}

.media-modal-card {
  width: min(1000px, 100%);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: grid;
  overflow: hidden;
  place-items: center;
  border-radius: 16px;
  background: #060c08;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-frame.instagram-frame {
  width: min(420px, 100%);
  max-height: 72vh;
  margin: auto;
  align-self: center;
  aspect-ratio: 9 / 16;
}

.media-modal-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  color: #fff;
}

.media-modal-actions a {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid #e6c467;
  border-radius: 999px;
  background: linear-gradient(180deg, #d9aa40, #91600f);
  color: #fff;
  font-weight: 800;
}

@media (min-width: 480px) {
  .container {
    width: min(calc(100% - 32px), var(--content));
  }

  .actions {
    width: fit-content;
    max-width: 100%;
    flex-flow: row wrap;
  }

  .btn {
    width: auto;
  }

  .hero .btn {
    flex: 0 1 auto;
    padding-inline: 18px;
    font-size: 1rem;
  }

  .sector-detail-grid,
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .field.full {
    grid-column: 1 / -1;
  }
}

@media (min-width: 600px) {
  :root {
    --title-size: clamp(2.55rem, 7.5vw, 4rem);
  }

  .feature-grid,
  .value-grid,
  .info-grid,
  .dimension-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .stat:nth-child(n) {
    border-right: 1px solid #eee6d6;
    border-bottom: 1px solid #eee6d6;
  }

  .stat:nth-child(3n) {
    border-right: 0;
  }

  .stat:nth-last-child(-n + 3) {
    border-bottom: 0;
  }

  .sector-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .location-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .doc-media {
    height: 390px;
  }
}

@media (min-width: 768px) {
  :root {
    --header-height: 96px;
  }

  body {
    padding-bottom: 0;
  }

  .container {
    width: min(calc(100% - 40px), var(--content));
  }

  .section,
  .sector-block {
    padding-block: 80px;
  }

  .brand {
    width: 220px;
    height: 76px;
  }

  .brand img {
    max-height: 72px;
  }

  .hero-content {
    padding-block: 76px 54px;
  }

  .hero-copy {
    padding: 30px;
    border-radius: 30px;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 10vw, 6.4rem);
    line-height: 0.92;
  }

  .hero p {
    font-size: clamp(1.05rem, 2vw, 1.22rem);
  }

  .stats-wrap {
    margin-top: -34px;
  }

  .stat {
    padding: 22px 12px;
  }

  .stat strong {
    font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  }

  .stat span {
    font-size: 0.72rem;
  }

  .sector-index {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .sector-chip {
    min-height: 145px;
    padding: 16px;
  }

  .sector-chip img {
    max-height: 118px;
  }

  .sector-logo-stage {
    min-height: 290px;
    padding: 28px;
  }

  .sector-logo-stage img {
    max-height: 250px;
  }

  .map-caption {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
  }

  .video-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading-row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
  }

  .carousel-controls {
    align-self: auto;
  }

  .reel-preview-card {
    flex-basis: 235px;
  }

  .photo-grid button {
    height: 160px;
    min-height: 160px;
    flex-basis: 220px;
  }

  .contact-panel,
  .form {
    padding: 30px;
    border-radius: 30px;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
  }

  .floatbar {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(16px, env(safe-area-inset-bottom));
    left: auto;
    padding: 0;
    flex-direction: column;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: none;
  }

  .social-float {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.16), 0 12px 26px rgba(0, 0, 0, 0.24);
  }

  .social-float.wa {
    width: 70px;
    height: 70px;
    border-radius: 22px;
  }

  .lightbox,
  .video-modal {
    padding: 28px 84px;
  }

  .lb-stage {
    max-width: calc(100vw - 220px);
    max-height: 92vh;
  }

  .lightbox .lb-stage img {
    max-height: 88vh;
    border-radius: 16px;
  }

  .lb-arrow {
    top: 50%;
    bottom: auto;
    width: 60px;
    height: 60px;
    border-radius: 19px;
    transform: translateY(-50%);
  }

  .lb-prev {
    left: 18px;
  }

  .lb-next {
    right: 18px;
  }

  .modal-close {
    top: 20px;
    right: 24px;
  }
}

@media (min-width: 900px) {
  .grid2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px;
  }

  .sector-head {
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
    gap: 48px;
  }

  .location-stage {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 44px;
  }

  .contact-wrap {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 28px;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(150px, 0.8fr) minmax(0, 0.8fr);
    gap: 30px;
  }
}

@media (min-width: 1024px) {
  :root {
    --title-size: clamp(3rem, 5.2vw, 4.85rem);
  }

  .section,
  .sector-block {
    padding-block: 92px;
  }

  .feature-grid,
  .value-grid,
  .info-grid,
  .dimension-grid,
  .video-grid,
  .testimonial-grid,
  .doc-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .stats {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .stat:nth-child(n) {
    border-right: 1px solid #eee6d6;
    border-bottom: 0;
  }

  .stat:last-child {
    border-right: 0;
  }

  .sector-index {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
  }

  .location-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
  }

  .doc-media {
    height: 430px;
  }

  .contact-panel,
  .form {
    padding: 32px;
  }
}

@media (min-width: 1240px) {
  :root {
    --header-height: 108px;
  }

  .nav {
    gap: 20px;
  }

  .brand {
    width: 235px;
    height: 86px;
  }

  .brand img {
    max-height: 80px;
  }

  .hamb {
    display: none;
  }

  .navlinks {
    position: static;
    max-height: none;
    margin-left: auto;
    display: flex;
    overflow: visible;
    padding: 0;
    flex-direction: row;
    align-items: center;
    gap: 3px;
    background: none;
    border: 0;
    box-shadow: none;
    font-size: 0.75rem;
  }

  .navlinks a {
    min-height: 40px;
    padding: 8px 7px;
    white-space: nowrap;
  }

  .nav-cta {
    min-height: 44px !important;
    margin: 0 0 0 3px;
    padding: 9px 12px !important;
  }

  .hero {
    min-height: 86vh;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(4, 18, 10, 0.9) 0%, rgba(4, 18, 10, 0.7) 38%, rgba(4, 18, 10, 0.26) 70%, rgba(4, 18, 10, 0.18) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(5, 18, 10, 0.55));
  }

  .hero-content {
    padding-block: 120px 72px;
  }

  .hero-copy {
    padding: 36px 38px;
    border-radius: 36px;
  }

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

  .sector-gallery {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
  }

  .doc-media {
    height: 455px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
