:root {
  --bg: #f6efe4;
  --bg-soft: #fffaf2;
  --surface: rgba(255, 251, 245, 0.9);
  --surface-strong: #fffdf8;
  --text: #1f2a22;
  --muted: #5f6d64;
  --line: rgba(31, 42, 34, 0.1);
  --brand: #dd5f28;
  --brand-deep: #8f3d1b;
  --accent: #1e8570;
  --accent-soft: #e1f6f0;
  --shadow: 0 20px 60px rgba(64, 42, 23, 0.12);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(221, 95, 40, 0.18), transparent 24%),
    radial-gradient(circle at top right, rgba(30, 133, 112, 0.16), transparent 22%),
    linear-gradient(180deg, #fff7ed 0%, var(--bg) 36%, #fffdfa 100%);
  min-height: 100vh;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(255, 248, 239, 0.82);
  border-bottom: 1px solid rgba(31, 42, 34, 0.08);
}

.site-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand__mark {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 14px 26px rgba(143, 61, 27, 0.16);
}

.brand__name {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: 0.04em;
}

.brand__tag {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-toggle {
  display: none;
  appearance: none;
  border: 0;
  background: #fff;
  color: var(--text);
  width: 48px;
  height: 48px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  font-size: 1.4rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  color: var(--muted);
  padding: 11px 15px;
  border-radius: 999px;
  transition: 0.2s ease;
  font-size: 0.96rem;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.9);
}

.button-row,
.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #f28d3e);
  box-shadow: 0 18px 28px rgba(221, 95, 40, 0.26);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(31, 42, 34, 0.1);
}

.button--ghost {
  background: rgba(30, 133, 112, 0.09);
  color: var(--accent);
}

.hero {
  padding: 56px 0 40px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: stretch;
}

.hero__copy,
.hero__panel,
.page-hero__copy,
.page-hero__card,
.feature-card,
.section-panel,
.gallery-card,
.contact-card,
.footer-card,
.stat-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
}

.hero__copy {
  padding: 42px;
  position: relative;
  overflow: hidden;
}

.hero__copy::after,
.page-hero__copy::after {
  content: "";
  position: absolute;
  inset: auto -80px -90px auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(30, 133, 112, 0.18), transparent 68%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(30, 133, 112, 0.1);
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.section-title {
  margin: 18px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(2.7rem, 6vw, 4.7rem);
  max-width: 11ch;
}

.hero p,
.page-hero p,
.section-copy,
.mini-copy {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.stat-card {
  padding: 18px;
}

.stat-card strong {
  display: block;
  font-size: 1.6rem;
  font-family: Georgia, "Times New Roman", serif;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero__panel {
  padding: 20px;
  display: grid;
  gap: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 243, 231, 0.92)),
    var(--surface);
}

.showcase {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: 210px;
}

.showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase__label {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 14px 16px;
  color: #fff;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(31, 42, 34, 0.05), rgba(31, 42, 34, 0.8));
  font-weight: 700;
}

.section {
  padding: 20px 0 42px;
}

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

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
}

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

.feature-card {
  padding: 18px;
  overflow: hidden;
}

.feature-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
}

.feature-card h3 {
  margin: 16px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.feature-card p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.75;
}

.feature-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--brand-deep);
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 20px;
}

.section-panel {
  padding: 28px;
}

.list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
}

.list div {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
}

.list strong {
  display: block;
  margin-bottom: 4px;
}

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

.gallery-preview img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 22px;
}

.page-hero {
  padding: 52px 0 28px;
}

.page-hero__grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 22px;
}

.page-hero__copy,
.page-hero__card {
  padding: 34px;
  position: relative;
  overflow: hidden;
}

.page-hero__card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 22px;
  margin-bottom: 16px;
}

.page-hero__badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 12px;
  color: var(--brand-deep);
  font-weight: 700;
}

.breadcrumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumbs span {
  color: rgba(95, 109, 100, 0.55);
}

.gallery {
  columns: 3 280px;
  column-gap: 18px;
  margin-top: 8px;
}

.gallery-card {
  break-inside: avoid;
  margin: 0 0 18px;
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  height: auto;
}

.gallery-card__body {
  padding: 14px 16px 16px;
}

.gallery-card__body strong {
  display: block;
  margin-bottom: 4px;
}

.gallery-card__body span {
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-card {
  padding: 28px;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  align-items: center;
}

.contact-card img {
  width: 100%;
  border-radius: 22px;
}

.contact-card h2 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.site-footer {
  padding: 14px 0 38px;
}

.footer-card {
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-card p {
  margin: 0;
  color: var(--muted);
}

.footer-card strong {
  display: block;
  margin-bottom: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.redirect-note {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.redirect-note__card {
  width: min(620px, 100%);
  text-align: center;
  padding: 34px;
  background: var(--surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

@media (max-width: 1024px) {
  .hero__grid,
  .page-hero__grid,
  .split {
    grid-template-columns: 1fr;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header__row {
    min-height: 74px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    display: none;
    width: 100%;
    padding-bottom: 16px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-header__row {
    flex-wrap: wrap;
    padding: 10px 0;
  }

  .site-nav a {
    width: 100%;
    text-align: left;
  }

  .hero__copy,
  .page-hero__copy,
  .page-hero__card,
  .section-panel,
  .contact-card,
  .footer-card {
    padding: 24px;
  }

  .hero__meta,
  .card-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-card {
    grid-template-columns: 1fr;
  }

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