:root {
  --bg: #0b0d10;
  --bg-soft: #0f1115;
  --bg-card: rgba(17, 20, 25, 0.78);
  --bg-card-2: rgba(255, 255, 255, 0.04);
  --line: rgba(255, 255, 255, 0.08);
  --text: #f3f5f7;
  --text-soft: #c0c7d0;
  --text-muted: #9ca5b0;
  --accent: #b7a58a;
  --accent-soft: rgba(183, 165, 138, 0.18);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 20%, rgba(183, 165, 138, 0.12), transparent 24%),
    radial-gradient(circle at 82% 15%, rgba(255, 255, 255, 0.05), transparent 18%),
    radial-gradient(circle at 50% 100%, rgba(183, 165, 138, 0.08), transparent 25%),
    linear-gradient(180deg, #0a0c0f 0%, #0e1115 52%, #0b0d10 100%);
}

body,
a,
button,
input,
textarea,
select {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
}

#dust,
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

#dust {
  z-index: 0;
  opacity: 0.65;
}

.noise {
  z-index: 1;
  opacity: 0.05;
  mix-blend-mode: soft-light;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px),
    radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px);
  background-size: 24px 24px, 32px 32px, 20px 20px;
}

.page,
.footer {
  position: relative;
  z-index: 2;
}

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

.section {
  padding: 32px 0;
}

.hero {
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center;
}

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 28%, transparent 72%, rgba(183, 165, 138, 0.08));
  pointer-events: none;
}

.hero-card {
  padding: 34px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: stretch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-soft);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(183, 165, 138, 0.9);
}

.hero-title {
  margin: 20px 0 14px;
  font-size: clamp(44px, 7vw, 90px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: transparent;
  background: linear-gradient(180deg, #ffffff 0%, #d4d9df 45%, #a9b1bc 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-subtitle {
  margin: 0;
  max-width: 760px;
  font-size: clamp(18px, 2.1vw, 28px);
  line-height: 1.45;
  color: var(--text-muted);
}

.hero-subtitle strong {
  color: var(--text);
  font-weight: 650;
}

.hero-text {
  margin: 28px 0 0;
  max-width: 690px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 650;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

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

.button-primary {
  color: #fff;
  border-color: rgba(183, 165, 138, 0.32);
  background: linear-gradient(180deg, rgba(183, 165, 138, 0.28), rgba(125, 108, 88, 0.18));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.button-secondary {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.button-icon {
  font-size: 18px;
}

.info-panel {
  display: flex;
}

.info-list {
  width: 100%;
  display: grid;
  gap: 14px;
}

.info-card {
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
}

.info-label-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.icon-box {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  flex-shrink: 0;
}

.info-label {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.info-value {
  font-size: 18px;
  line-height: 1.55;
  text-decoration: none;
  color: #fff;
  word-break: break-word;
}

.map-card {
  padding: 24px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.section-label {
  margin: 0 0 8px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.section-title {
  margin: 0;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.05;
}

.map-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  color: var(--text);
  white-space: nowrap;
}

.map-frame-wrap {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.map-frame-wrap iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  filter: grayscale(1) contrast(1.08) brightness(0.82);
}

.footer {
  padding: 0 0 28px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 18px;
  color: #8892a0;
  font-size: 13px;
}

.footer-inner p {
  margin: 0;
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  pointer-events: none;
  opacity: 0.3;
}

.glow-1 {
  width: 260px;
  height: 260px;
  top: -60px;
  left: -60px;
  background: rgba(183, 165, 138, 0.18);
}

.glow-2 {
  width: 240px;
  height: 240px;
  right: -70px;
  bottom: -60px;
  background: rgba(255, 255, 255, 0.06);
}

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

  .hero-card,
  .map-card {
    padding: 22px;
  }

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

  .section-heading {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 18px, var(--container));
  }

  .section {
    padding: 18px 0;
  }

  .hero-card,
  .map-card {
    padding: 16px;
    border-radius: 22px;
  }

  .eyebrow {
    font-size: 12px;
    letter-spacing: 0.08em;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .hero-text {
    font-size: 15px;
  }

  .button {
    width: 100%;
  }

  .info-value {
    font-size: 16px;
  }

  .map-frame-wrap iframe {
    height: 300px;
  }

  .footer-inner {
    flex-direction: column;
  }
}

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

  .button {
    transition: none;
  }
}

.hero-shell {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(17, 20, 25, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.brand-name {
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}

.contact-strip {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-chip {
  display: flex;
  gap: 14px;
  align-items: center;
  text-decoration: none;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.contact-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.contact-label {
  display: block;
  margin-bottom: 4px;
  color: var(--text-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-value {
  display: block;
  color: var(--text);
  font-size: 17px;
  line-height: 1.45;
}

.gallery-shell {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255,255,255,0.018)),
    rgba(15, 17, 21, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.gallery-heading {
  align-items: start;
}

.gallery-note {
  max-width: 430px;
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

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

.gallery-card {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.18));
  pointer-events: none;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(4, 7, 10, 0.86);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-image {
  max-width: min(1100px, 92vw);
  max-height: 84vh;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 24px 70px rgba(0,0,0,0.45);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

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

  .section-heading {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 18px, var(--container));
  }

  .hero-shell,
  .gallery-shell {
    padding: 20px;
  }

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

  .contact-value {
    font-size: 15px;
  }
}
