:root {
  --bg: #0a0b0a;
  --bg-2: #121410;
  --ink: #f3efe6;
  --muted: #a8a295;
  --olive: #5c6b3a;
  --olive-deep: #2a3220;
  --gold: #e2b84a;
  --gold-hot: #f0c95a;
  --orange: #e07028;
  --asphalt: #161814;
  --line: rgba(226, 184, 74, 0.28);
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "Oswald", "Arial Narrow", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(224, 112, 40, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 30%, rgba(92, 107, 58, 0.18), transparent 50%),
    linear-gradient(180deg, #0c0d0b 0%, var(--bg) 40%, #0e100c 100%);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transform: scale(1.06);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 9, 7, 0.55) 0%, rgba(8, 9, 7, 0.35) 35%, rgba(8, 9, 7, 0.82) 78%, var(--bg) 100%),
    linear-gradient(90deg, rgba(8, 9, 7, 0.55) 0%, transparent 40%, transparent 70%, rgba(8, 9, 7, 0.4) 100%);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem clamp(1.25rem, 4vw, 3rem);
  position: relative;
  z-index: 2;
}

.nav__brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.nav__links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav__links a {
  opacity: 0.85;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav__links a:hover {
  color: var(--gold);
  opacity: 1;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 0 clamp(1.25rem, 4vw, 3rem) clamp(3.5rem, 8vh, 5.5rem);
  max-width: 56rem;
  animation: rise-in 0.9s ease-out both;
}

.hero__title {
  font-family: var(--font-display);
  line-height: 0.88;
  letter-spacing: 0.02em;
  font-weight: 400;
  font-size: clamp(4.2rem, 14vw, 9.5rem);
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.65);
}

.hero__title-line {
  display: block;
}

.hero__title-line--gold {
  color: var(--gold);
  text-shadow:
    0 0 40px rgba(226, 184, 74, 0.25),
    0 4px 40px rgba(0, 0, 0, 0.65);
}

.hero__tag {
  margin-top: 1rem;
  font-size: clamp(1.05rem, 2.4vw, 1.45rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.92;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.55rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn--gold {
  background: linear-gradient(180deg, var(--gold-hot), var(--gold));
  color: #1a1408;
  border-color: #c9a03a;
}

.btn--gold:hover {
  background: linear-gradient(180deg, #f5d270, var(--gold-hot));
}

.btn--ghost {
  background: rgba(10, 11, 10, 0.45);
  border-color: rgba(243, 239, 230, 0.35);
  color: var(--ink);
  backdrop-filter: blur(6px);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  width: 1.5rem;
  height: 2.4rem;
  border: 1px solid rgba(243, 239, 230, 0.35);
  border-radius: 999px;
  display: grid;
  place-items: start center;
  padding-top: 0.45rem;
  opacity: 0.7;
  animation: fade-up 1.2s 0.6s ease both;
}

.hero__scroll span {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--gold);
  animation: scroll-dot 1.6s ease-in-out infinite;
}

/* —— Sections —— */
main {
  position: relative;
  z-index: 1;
}

.section-head {
  text-align: center;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.5rem);
  letter-spacing: 0.06em;
  line-height: 1;
}

.section-head p {
  margin-top: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 400;
}

.gallery {
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1.25rem, 4vw, 3rem);
}

.gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.15rem;
  }

  .gallery__shot--wide {
    grid-column: 1 / -1;
  }
}

.gallery__shot {
  position: relative;
  overflow: hidden;
  background: var(--asphalt);
  border: 1px solid rgba(226, 184, 74, 0.12);
}

.gallery__shot img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery__shot--wide img {
  aspect-ratio: 21 / 10;
  max-height: 520px;
}

.gallery__shot:hover img {
  transform: scale(1.04);
}

/* —— CA —— */
.ca {
  padding: clamp(3rem, 7vw, 5rem) clamp(1.25rem, 4vw, 3rem);
  background:
    linear-gradient(180deg, transparent, rgba(42, 50, 32, 0.35), transparent);
}

.ca__box {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  padding: 1.35rem;
  background:
    linear-gradient(135deg, rgba(42, 50, 32, 0.55), rgba(16, 18, 14, 0.9));
  border: 1px solid var(--line);
}

@media (min-width: 720px) {
  .ca__box {
    flex-direction: row;
    align-items: center;
    padding: 1.15rem 1.15rem 1.15rem 1.5rem;
  }

  .ca__box .btn {
    flex-shrink: 0;
  }
}

.ca__address {
  flex: 1;
  font-family: ui-monospace, "Cascadia Code", "Segoe UI Mono", monospace;
  font-size: clamp(0.72rem, 2.1vw, 0.95rem);
  letter-spacing: 0.02em;
  word-break: break-all;
  color: var(--gold-hot);
  line-height: 1.45;
}

.ca__hint {
  text-align: center;
  margin-top: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 0.85rem;
  animation: rise-in 0.35s ease both;
}

/* —— Socials —— */
.socials {
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.25rem, 4vw, 3rem) clamp(3rem, 7vw, 5rem);
}

.socials__row {
  display: grid;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .socials__row {
    grid-template-columns: 1fr 1fr;
  }
}

.social {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.35rem 1.5rem;
  border-bottom: 2px solid var(--line);
  background: linear-gradient(180deg, rgba(226, 184, 74, 0.06), transparent);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.social:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.social__label {
  font-family: var(--font-display);
  font-size: 1.85rem;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.social__handle {
  letter-spacing: 0.06em;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer {
  padding: 2rem clamp(1.25rem, 4vw, 3rem) 2.5rem;
  text-align: center;
  border-top: 1px solid rgba(226, 184, 74, 0.12);
}

.footer p {
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  font-size: 1.15rem;
}

.footer__small {
  margin-top: 0.45rem;
  font-family: var(--font-body) !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}

@keyframes hero-drift {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-1.5%, -1%, 0); }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translate(-50%, 12px);
  }
  to {
    opacity: 0.7;
    transform: translate(-50%, 0);
  }
}

@keyframes scroll-dot {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero__bg img {
    transform: none;
  }
}
