:root {
  --bg: #0f1419;
  --surface: #1a2332;
  --surface-2: #243044;
  --text: #f4f0ea;
  --muted: #a8b0bc;
  --accent: #e8a838;
  --accent-hover: #f0bc5a;
  --accent-ink: #1a1208;
  --ring: rgba(232, 168, 56, 0.4);
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(3rem, 12vw, 6rem) 1.5rem clamp(2.5rem, 8vw, 4rem);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(15, 20, 25, 0.82) 0%, rgba(15, 20, 25, 0.92) 60%, var(--bg) 100%),
    radial-gradient(120% 80% at 50% 0%, rgba(232, 168, 56, 0.12) 0%, transparent 60%),
    url("img/hero.jpg") center 30% / cover no-repeat,
    linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  overflow: hidden;
}

.hero-inner { max-width: 40rem; margin: 0 auto; position: relative; }

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

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 12vw, 4.75rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}

.lead {
  max-width: 32rem;
  margin: 0 auto 2rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 3.5vw, 1.2rem);
}

/* ---------- Buttons ---------- */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, border-color 0.2s, box-shadow 0.2s;
  min-height: 48px;
}

.btn:focus-visible { outline: none; box-shadow: 0 0 0 3px var(--ring); }

.btn .icon { width: 20px; height: 20px; fill: currentColor; }

.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); }

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
}
.btn-secondary:hover { border-color: var(--text); background: rgba(255, 255, 255, 0.08); transform: translateY(-2px); }

/* ---------- Main ---------- */
main {
  max-width: 40rem;
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 3.5rem) 1.5rem 3rem;
}

section { margin-bottom: clamp(2.5rem, 7vw, 3.5rem); }

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4.5vw, 1.7rem);
  font-weight: 600;
  margin-bottom: 1.1rem;
  color: var(--accent);
}

.about p { margin-bottom: 1.1rem; color: var(--muted); font-size: 1.05rem; }
.about p:last-child { margin-bottom: 0; }

.callout {
  margin-top: 1.5rem;
  padding: 1.1rem 1.25rem;
  background: var(--surface);
  border-left: 3px solid var(--accent);
  border-radius: 0.5rem;
  color: var(--text) !important;
}
.callout strong { color: var(--accent); }

/* ---------- Link list ---------- */
.link-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }

.link-list a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.85rem;
  color: var(--text);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  min-height: 64px;
}

.link-list a:hover { background: var(--surface-2); border-color: var(--ring); transform: translateY(-1px); }
.link-list a:focus-visible { outline: none; box-shadow: 0 0 0 3px var(--ring); }

.link-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(232, 168, 56, 0.14);
}
.link-icon .icon { width: 22px; height: 22px; fill: var(--accent); }

.link-text { display: flex; flex-direction: column; line-height: 1.3; flex: 1 1 auto; }
.link-text strong { font-size: 1.02rem; }
.link-text em { font-style: normal; color: var(--muted); font-size: 0.88rem; }

.link-arrow { color: var(--muted); font-size: 1.2rem; transition: transform 0.2s; }
.link-list a:hover .link-arrow { transform: translateX(3px); color: var(--accent); }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.2s;
}
.gallery-grid img:hover { transform: scale(1.02); }

@media (max-width: 30rem) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid img:first-child { grid-column: 1 / -1; aspect-ratio: 16 / 10; }
}

/* ---------- Footer ---------- */
footer {
  text-align: center;
  padding: 2.5rem 1.5rem;
  color: var(--muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--surface);
}
footer .tag { font-family: var(--font-display); font-style: italic; margin-top: 0.35rem; opacity: 0.8; }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
