:root {
  color-scheme: dark;
  --bg: #041611;
  --bg-soft: #08231c;
  --panel: rgba(10, 38, 30, 0.8);
  --panel-strong: rgba(7, 28, 22, 0.96);
  --text: #f4ead2;
  --muted: #bba77f;
  --gold: #c9a24a;
  --gold-bright: #f1d07a;
  --line: rgba(201, 162, 74, 0.24);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  background:
    radial-gradient(circle at top, rgba(201, 162, 74, 0.12), transparent 26%),
    radial-gradient(circle at 20% 20%, rgba(54, 120, 88, 0.2), transparent 30%),
    linear-gradient(180deg, #071f18 0%, var(--bg) 42%, #03110d 100%);
}

main,
header,
.content-section,
.hero,
.section-heading,
.contact-card {
  text-align: center;
}

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

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

main {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto 4rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(3, 16, 12, 0.8);
  border-bottom: 1px solid rgba(201, 162, 74, 0.18);
}

.header-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-mark {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(241, 208, 122, 0.4);
  box-shadow: 0 0 0 4px rgba(201, 162, 74, 0.08);
}

.brand-copy {
  display: grid;
  gap: 0.1rem;
}

.brand-name {
  font-size: 1.08rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  flex-wrap: wrap;
  justify-content: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 0.1rem;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.section-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(15, 50, 40, 0.85), rgba(4, 19, 15, 0.92));
  box-shadow: var(--shadow);
}

.section-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(241, 208, 122, 0.08), transparent 32%),
    radial-gradient(circle at top right, rgba(201, 162, 74, 0.1), transparent 28%);
  pointer-events: none;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  margin-top: 1.5rem;
  justify-items: center;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0.75rem;
  font-size: clamp(3rem, 9vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.lead {
  max-width: 32rem;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.7;
  color: #e8dcc2;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.5rem 0 1.4rem;
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
}

.button:hover,
.button:focus-visible {
  outline: 1px solid rgba(241, 208, 122, 0.45);
  outline-offset: 2px;
}

.button-gold {
  color: #201500;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border-color: rgba(241, 208, 122, 0.45);
}

.button-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(201, 162, 74, 0.28);
}

.button-large {
  min-width: min(100%, 320px);
  min-height: 104px;
}

.button-small {
  min-width: min(100%, 150px);
  min-height: 84px;
}

.icon-button {
  padding: 1rem;
}

.icon-button img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.button-large.icon-button img {
  width: 54px;
  height: 54px;
}

.mini-card,
.contact-card,
.featured-copy,
.gallery-item {
  background: var(--panel);
  border: 1px solid rgba(241, 208, 122, 0.16);
}

.mini-card {
  max-width: 30rem;
  padding: 1.1rem 1.2rem;
  border-radius: 20px;
  margin-left: auto;
  margin-right: auto;
}

.mini-label {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: var(--gold-bright);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
}

.mini-card p {
  margin-bottom: 0;
  color: #e9dcc2;
  line-height: 1.65;
}

.content-section {
  padding: clamp(1.35rem, 3vw, 2.25rem);
  margin-top: 1.25rem;
}

.section-heading {
  display: grid;
  gap: 0.2rem;
  margin-bottom: 1.2rem;
  justify-items: center;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(1.7rem, 3.5vw, 2.7rem);
  line-height: 1.08;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.5rem;
  color: #eadfc5;
  line-height: 1.85;
  justify-items: center;
}

.featured-layout {
  display: grid;
  justify-items: center;
}

.featured-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(201, 162, 74, 0.18);
  background: rgba(2, 14, 11, 0.45);
  justify-self: center;
}

.featured-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.featured-copy {
  padding: 1.4rem;
  display: grid;
  align-content: center;
  justify-items: center;
}

.featured-copy h3 {
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
  color: var(--gold-bright);
}

.featured-copy p,
.contact-card p {
  line-height: 1.8;
  color: #e9dcc2;
  margin-bottom: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  justify-items: center;
}

.gallery-item {
  margin: 0;
  padding: 0.8rem;
  border-radius: 22px;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 0.85rem;
}

.gallery-item figcaption {
  color: var(--gold-bright);
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.contact-layout {
  display: grid;
  justify-items: center;
}

.contact-card {
  padding: 1.35rem;
  border-radius: 24px;
  display: grid;
  gap: 1rem;
  max-width: 44rem;
  justify-items: center;
}

.contact-buttons {
  display: grid;
  gap: 0.9rem;
  justify-items: center;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: nowrap;
  justify-content: center;
}

.contact-row .button-small {
  flex: 1 1 150px;
}

@media (max-width: 960px) {
  .header-shell,
  .hero,
  .featured-card {
    grid-template-columns: 1fr;
  }

  .header-shell {
    align-items: center;
    flex-direction: column;
  }

  .nav-links {
    justify-content: center;
  }

  .featured-card img {
    min-height: 280px;
  }

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

@media (max-width: 640px) {
  main {
    width: min(100% - 1rem, 1180px);
  }

  .header-shell {
    width: min(100% - 1rem, 1180px);
    min-height: auto;
  }

  .site-header {
    position: sticky;
  }

  .nav-links {
    gap: 0.7rem 0.95rem;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-tag {
    font-size: 0.84rem;
  }

  .hero {
    margin-top: 1rem;
  }

  h1 {
    font-size: clamp(2.45rem, 15vw, 4rem);
  }
}
