:root {
  --ink: #18201d;
  --ink-soft: #46524d;
  --white: #ffffff;
  --paper: #f7f5ef;
  --sage: #516b5a;
  --sage-dark: #253b31;
  --gold: #c09a55;
  --terracotta: #a35c43;
  --line: rgba(24, 32, 29, 0.12);
  --shadow: 0 24px 70px rgba(24, 32, 29, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--ink);
  background: var(--white);
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.7;
}

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

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.navbar {
  min-height: 84px;
  padding: 0;
}

.navbar-brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}

.brand-mark {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--sage-dark), var(--sage));
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  font-weight: 800;
  letter-spacing: 0;
}

.navbar-brand strong {
  display: block;
  font-size: 1rem;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.navbar-brand small {
  display: block;
  color: var(--ink-soft);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.navbar-nav {
  gap: 4px;
}

.nav-link {
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 650;
  padding: 10px 12px !important;
}

.nav-link:hover,
.nav-link.active {
  color: var(--sage-dark);
}

.nav-cta {
  color: var(--white) !important;
  background: var(--sage-dark);
  border-radius: 6px;
  margin-left: 6px;
  padding-inline: 18px !important;
}

.nav-cta:hover,
.nav-cta.active {
  background: var(--terracotta);
}

.hero-section {
  position: relative;
  min-height: calc(100vh - 84px);
  overflow: hidden;
  color: var(--white);
}

.min-vh-hero {
  min-height: calc(100vh - 84px);
  padding: 76px 0;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1800&q=85");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(20, 29, 24, 0.86) 0%, rgba(20, 29, 24, 0.66) 45%, rgba(20, 29, 24, 0.22) 100%),
    linear-gradient(0deg, rgba(20, 29, 24, 0.36), rgba(20, 29, 24, 0.06));
}

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

.eyebrow,
.section-kicker {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.12;
}

.hero-section h1,
.page-hero h1 {
  color: var(--white);
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5.85rem);
  max-width: 980px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
  font-size: 1.28rem;
}

.hero-copy {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.18rem;
  margin: 24px 0 32px;
}

.hero-actions,
.hero-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.btn {
  min-height: 48px;
  border-radius: 6px;
  border-width: 1px;
  font-weight: 750;
  padding: 12px 22px;
}

.btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #1f211b;
}

.btn-primary:hover,
.btn-primary:focus {
  background: #d2ad66;
  border-color: #d2ad66;
  color: #1f211b;
}

.btn-dark {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
}

.btn-outline-light:hover {
  color: var(--ink);
}

.section-pad {
  padding: 96px 0;
}

.intro-band {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.lead {
  color: var(--ink-soft);
}

p {
  color: var(--ink-soft);
}

.feature-card,
.statement-card,
.contact-form {
  height: 100%;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(24, 32, 29, 0.06);
}

.feature-card i {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--sage-dark);
  background: rgba(81, 107, 90, 0.1);
  border-radius: 6px;
  font-size: 1.35rem;
  margin-bottom: 24px;
}

.feature-card p {
  margin-bottom: 0;
}

.muted-section {
  background: #eef1ed;
}

.image-panel {
  min-height: 500px;
  background-position: center;
  background-size: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-panel-primary {
  background-image: url("https://images.unsplash.com/photo-1448630360428-65456885c650?auto=format&fit=crop&w=1200&q=85");
}

.image-panel-secondary {
  background-image: url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1200&q=85");
}

.stat-row {
  margin-top: 28px;
}

.stat-box {
  min-height: 104px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(24, 32, 29, 0.08);
  border-radius: 8px;
}

.stat-box strong {
  display: block;
  color: var(--terracotta);
  font-size: 1.55rem;
  line-height: 1;
}

.stat-box span {
  display: block;
  color: var(--ink);
  font-weight: 700;
  margin-top: 8px;
}

.cta-strip {
  color: var(--white);
  background: linear-gradient(120deg, var(--sage-dark), #2e493c 60%, #5f5644);
}

.cta-strip h2,
.cta-strip p {
  color: var(--white);
}

.page-hero {
  position: relative;
  min-height: 410px;
  display: flex;
  align-items: end;
  padding: 92px 0;
  background-color: var(--sage-dark);
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(20, 29, 24, 0.82), rgba(20, 29, 24, 0.38));
}

.page-hero-about {
  background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=85");
}

.page-hero-vision {
  background-image: url("https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=1800&q=85");
}

.page-hero-gallery {
  background-image: url("https://images.unsplash.com/photo-1475855581690-80accde3ae2b?auto=format&fit=crop&w=1800&q=85");
}

.page-hero-contact {
  background-image: url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1800&q=85");
}

.statement-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.statement-card span {
  color: var(--gold);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: auto;
}

.statement-card-dark {
  background: var(--sage-dark);
}

.statement-card-dark h2,
.statement-card-dark p {
  color: var(--white);
}

.value-list {
  display: grid;
  gap: 16px;
}

.value-list div,
.contact-panel div {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.value-list i,
.contact-panel i {
  color: var(--terracotta);
  font-size: 1.2rem;
}

.value-list span,
.contact-panel span {
  color: var(--ink);
  font-weight: 650;
}

.gallery-grid img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(24, 32, 29, 0.12);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20, 29, 24, 0.68), transparent 56%);
}

.gallery-item span {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 1;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 760;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

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

.contact-form {
  background: var(--paper);
}

.form-label {
  color: var(--ink);
  font-weight: 720;
}

.form-control,
.form-select {
  min-height: 48px;
  border-color: rgba(24, 32, 29, 0.16);
  border-radius: 6px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 0.22rem rgba(81, 107, 90, 0.16);
}

.blank-template {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.blank-template .site-footer {
  margin-top: auto;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: #121916;
  padding: 72px 0 28px;
}

.footer-brand {
  color: var(--white);
  font-weight: 800;
  margin-bottom: 18px;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 360px;
}

.site-footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 18px;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 10px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a:hover {
  color: var(--gold);
}

.contact-list i {
  color: var(--gold);
  margin-right: 8px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
}

.back-top {
  white-space: nowrap;
}

@media (max-width: 991.98px) {
  .navbar {
    min-height: 74px;
    padding: 12px 0;
  }

  .navbar-collapse {
    padding: 16px 0 8px;
  }

  .nav-cta {
    display: inline-block;
    margin: 8px 0 0;
  }

  .hero-section,
  .min-vh-hero {
    min-height: 720px;
  }

  .section-pad {
    padding: 72px 0;
  }

  .image-panel {
    min-height: 380px;
  }
}

@media (max-width: 575.98px) {
  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .navbar-brand strong {
    font-size: 0.92rem;
  }

  .navbar-brand small {
    font-size: 0.68rem;
  }

  .hero-section,
  .min-vh-hero {
    min-height: 640px;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-actions {
    display: grid;
    width: 100%;
  }

  .hero-actions .btn,
  .btn {
    justify-content: center;
    width: 100%;
  }

  .feature-card,
  .statement-card,
  .contact-form {
    padding: 24px;
  }

  .page-hero {
    min-height: 340px;
    padding: 72px 0;
  }

  .gallery-grid img {
    height: 260px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
