:root {
  --on-primary-fixed-variant: #344c3b;
  --secondary-container: #fed39f;
  --inverse-on-surface: #f3f0f0;
  --secondary-fixed: #ffddb7;
  --on-primary: #ffffff;
  --on-surface-variant: #424843;
  --secondary: #78582f;
  --on-surface: #1b1c1c;
  --primary-container: #2a4231;
  --tertiary: #491700;
  --background: #fcf9f8;
  --surface-container-lowest: #ffffff;
  --on-primary-container: #93ae98;
  --primary: #142c1c;
  --surface-container-high: #eae7e7;
  --surface-variant: #e4e2e1;
  --outline: #737972;
  --outline-variant: #c2c8c1;
  --surface-container-low: #f6f3f2;
  --surface: #fcf9f8;
  --primary-fixed: #cdead2;
  --radius: 8px;
  --shadow: 0 8px 30px rgba(45, 45, 45, 0.08);
  --soft-shadow: 0 4px 20px rgba(45, 45, 45, 0.05);
  --container-max: 1280px;
  --header-height: 80px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--on-surface);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: var(--header-height);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--secondary-container);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  background: var(--primary);
  color: var(--on-primary);
  padding: 10px 14px;
  border-radius: var(--radius);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 64px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(252, 249, 248, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(194, 200, 193, 0.45);
  box-shadow: 0 2px 12px rgba(45, 45, 45, 0.04);
}

.header-inner {
  height: var(--header-height);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--primary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
}

.brand img,
.footer-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.desktop-nav > a,
.nav-dropdown > a,
.header-contact {
  color: var(--on-surface-variant);
  font-weight: 600;
  padding: 10px 6px;
  border-bottom: 2px solid transparent;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--primary);
  border-bottom-color: var(--tertiary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-contact {
  font-size: 14px;
}

.header-contact-group {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.2;
}

.header-contact-group .header-contact {
  padding: 2px 6px;
  font-size: 13px;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--primary);
  color: var(--on-primary);
}

.btn-primary:hover {
  background: var(--on-primary-fixed-variant);
}

.btn-secondary {
  color: var(--on-primary);
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn-outline {
  color: var(--secondary);
  border-color: var(--secondary);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(120, 88, 47, 0.08);
}

.mobile-menu-button {
  display: none;
  border: 1px solid var(--outline-variant);
  background: var(--surface-container-lowest);
  color: var(--primary);
  border-radius: var(--radius);
  min-height: 44px;
  padding: 10px 14px;
  font-weight: 700;
}

.nav-dropdown {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  width: 680px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  background: var(--surface-container-lowest);
  border: 1px solid rgba(194, 200, 193, 0.6);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, top 160ms ease;
}

.nav-dropdown:hover .mega-menu,
.nav-dropdown:focus-within .mega-menu {
  top: calc(100% + 8px);
  opacity: 1;
  pointer-events: auto;
}

.mega-group {
  display: grid;
  gap: 8px;
}

.mega-group strong {
  color: var(--primary);
  font-size: 14px;
}

.mega-group a {
  color: var(--on-surface-variant);
  font-size: 14px;
}

.mega-group a:hover {
  color: var(--primary);
}

.mobile-panel {
  display: none;
}

.hero {
  position: relative;
  min-height: 740px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(0deg, rgba(20, 44, 28, 0.86), rgba(20, 44, 28, 0.16));
}

.hero-content {
  position: relative;
  color: var(--on-primary);
  text-align: center;
  max-width: 960px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--secondary);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero .eyebrow,
.surface-dark .eyebrow {
  color: var(--secondary-fixed);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--primary);
  line-height: 1.15;
}

h1 {
  font-size: 56px;
  font-weight: 700;
}

h2 {
  font-size: 40px;
  font-weight: 600;
}

h3 {
  font-size: 26px;
  font-weight: 600;
}

.hero h1 {
  color: var(--on-primary);
  max-width: 900px;
  margin: 0 auto 22px;
}

.hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-home {
  min-height: min(760px, calc(100svh - var(--header-height)));
  align-items: center;
  background: #142c1c;
  isolation: isolate;
}

.hero-home .hero-bg {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.04) contrast(1.03);
  z-index: 1;
}

.hero-home .hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 28, 16, 0.9) 0%, rgba(8, 28, 16, 0.72) 38%, rgba(8, 28, 16, 0.28) 68%, rgba(8, 28, 16, 0.12) 100%),
    linear-gradient(0deg, rgba(7, 17, 10, 0.52) 0%, rgba(7, 17, 10, 0.06) 42%, rgba(7, 17, 10, 0.18) 100%);
  z-index: 2;
}

.hero-home .hero-content {
  max-width: var(--container-max);
  text-align: left;
  z-index: 3;
}

.hero-home .hero-content h1 {
  max-width: 650px;
  margin: 0 0 22px;
  font-size: clamp(42px, 4.7vw, 66px);
}

.hero-home .hero-content p:not(.eyebrow) {
  max-width: 610px;
  margin: 0 0 32px;
}

.hero-home .hero-actions {
  justify-content: flex-start;
}

.section {
  padding: 80px 0;
}

.section.no-top {
  padding-top: 0;
}

.surface-low {
  background: var(--surface-container-low);
}

.surface-dark {
  background: var(--primary);
  color: var(--on-primary);
}

.section-heading {
  text-align: center;
  margin-bottom: 42px;
}

.section-heading h2 {
  max-width: 760px;
  margin: 0 auto 14px;
}

.section-heading p:not(.eyebrow) {
  max-width: 700px;
  margin: 0 auto;
  color: var(--on-surface-variant);
}

.card-grid {
  display: grid;
  gap: 24px;
}

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

.model-card,
.article-card,
.benefit-card {
  background: var(--surface-container-lowest);
  border: 1px solid rgba(194, 200, 193, 0.45);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--soft-shadow);
}

.model-card,
.article-card {
  display: flex;
  flex-direction: column;
}

.card-image {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface-container-high);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.model-card:hover .card-image img,
.article-card:hover .card-image img {
  transform: scale(1.045);
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.card-kicker {
  margin: 0 0 8px;
  color: var(--secondary);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.card-body h3 {
  margin-bottom: 12px;
  font-size: 25px;
}

.card-body p {
  color: var(--on-surface-variant);
  margin: 0 0 20px;
}

.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: auto 0 20px;
}

.chips span,
.feature-list span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(120, 88, 47, 0.1);
  border: 1px solid rgba(120, 88, 47, 0.18);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
}

.text-link {
  color: var(--primary);
  font-weight: 800;
}

.text-link:hover {
  color: var(--secondary);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.category-card {
  min-height: 180px;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 180ms ease, transform 180ms ease;
}

.category-card:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-2px);
}

.category-card span {
  display: block;
  color: var(--secondary-fixed);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 12px;
}

.category-card p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 56px;
}

.lead {
  color: var(--on-surface-variant);
  font-size: 18px;
  line-height: 1.65;
  margin: 18px 0 0;
}

.steps {
  display: grid;
  gap: 16px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--surface-container-lowest);
  border: 1px solid rgba(194, 200, 193, 0.5);
  border-radius: var(--radius);
  padding: 20px;
}

.step > span {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--on-primary);
  font-weight: 800;
}

.step strong {
  display: block;
  color: var(--primary);
  margin-bottom: 4px;
}

.step p {
  margin: 0;
  color: var(--on-surface-variant);
}

.page-header {
  padding: 76px 0 52px;
  text-align: center;
  background: var(--surface-container-low);
  border-bottom: 1px solid rgba(194, 200, 193, 0.45);
}

.page-header h1 {
  max-width: 900px;
  margin: 0 auto 18px;
}

.page-header p:not(.eyebrow) {
  max-width: 760px;
  margin: 0 auto;
  color: var(--on-surface-variant);
  font-size: 18px;
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  padding-top: 22px;
  color: var(--on-surface-variant);
  font-size: 14px;
}

.breadcrumbs a {
  color: var(--primary);
  font-weight: 700;
}

.product-hero {
  padding-top: 54px;
}

.product-copy h1 {
  margin-bottom: 18px;
}

.product-copy .hero-actions {
  justify-content: flex-start;
  margin-top: 30px;
}

.feature-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--surface-container-high);
}

.feature-image img {
  width: 100%;
  height: 100%;
  max-height: 620px;
  object-fit: cover;
}

.specs-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: var(--surface-container-lowest);
  border: 1px solid rgba(194, 200, 193, 0.55);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.specs-bar div {
  padding: 24px;
  text-align: center;
  border-right: 1px solid rgba(194, 200, 193, 0.5);
}

.specs-bar div:last-child {
  border-right: 0;
}

.specs-bar strong,
.stats-grid strong {
  display: block;
  color: var(--primary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
  line-height: 1.2;
}

.specs-bar span,
.stats-grid span {
  display: block;
  margin-top: 6px;
  color: var(--on-surface-variant);
  font-size: 14px;
}

.gallery-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 260px;
  gap: 18px;
}

.gallery-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.gallery-strip img:first-child {
  grid-row: span 2;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
}

.benefit-card {
  padding: 28px;
}

.benefit-card h3 {
  margin-bottom: 12px;
}

.benefit-card p {
  margin: 0;
  color: var(--on-surface-variant);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding-top: 34px;
}

.filter-bar button,
.filter-pills a {
  min-height: 40px;
  border: 1px solid rgba(194, 200, 193, 0.75);
  background: var(--surface-container-lowest);
  color: var(--on-surface-variant);
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 800;
  cursor: pointer;
}

.filter-bar button.active,
.filter-bar button:hover,
.filter-pills a:hover {
  background: var(--primary);
  color: var(--on-primary);
  border-color: var(--primary);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 300px;
  gap: 24px;
}

.gallery-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  background: var(--surface-container-high);
}

.gallery-tile.wide {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease;
}

.gallery-tile:hover img {
  transform: scale(1.045);
}

.gallery-tile span {
  position: absolute;
  inset: auto 0 0 0;
  padding: 26px;
  color: var(--on-primary);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
  font-weight: 600;
}

.gallery-tile small {
  display: block;
  margin-bottom: 4px;
  color: var(--secondary-fixed);
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
  gap: 40px;
  align-items: start;
}

.form-card,
.support-panel,
.contact-card,
.faq-list details,
.featured-article,
.legal-page,
.article-prose,
.toc {
  border: 1px solid rgba(194, 200, 193, 0.55);
  border-radius: var(--radius);
  background: var(--surface-container-lowest);
  box-shadow: var(--soft-shadow);
}

.form-card,
.support-panel,
.legal-page {
  padding: 30px;
}

.quote-form {
  display: grid;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.quote-form label,
.search-form label {
  display: grid;
  gap: 8px;
  color: var(--on-surface);
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea,
.search-form input,
.article-content textarea {
  width: 100%;
  border: 1px solid rgba(115, 121, 114, 0.28);
  border-radius: var(--radius);
  background: #f2f1ee;
  color: var(--on-surface);
  padding: 13px 14px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus,
.search-form input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(178, 205, 182, 0.55);
  outline: none;
}

.form-status {
  margin: 0;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  line-height: 1.5;
}

.form-status[data-state="success"] {
  background: var(--primary-fixed);
  color: var(--primary);
}

.form-status[data-state="error"] {
  background: #fde7e6;
  color: #5b1a1a;
}

.support-panel {
  display: grid;
  gap: 20px;
}

.support-panel h2 {
  font-size: 30px;
}

.support-item {
  border-bottom: 1px solid rgba(194, 200, 193, 0.5);
  padding-bottom: 18px;
}

.support-item strong {
  color: var(--primary);
}

.support-item p {
  color: var(--on-surface-variant);
  margin: 6px 0 0;
}

.contact-card {
  display: grid;
  gap: 8px;
  padding: 20px;
  background: var(--primary-container);
  color: var(--primary-fixed);
}

.contact-card strong {
  color: var(--on-primary);
}

.contact-card-address,
.footer-address {
  font-size: 13px;
  opacity: 0.78;
}

.faq-list {
  max-width: 880px;
}

.faq-list details {
  margin-bottom: 12px;
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--primary);
  font-weight: 800;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--on-surface-variant);
}

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

.stats-grid div {
  padding: 30px;
  border-radius: var(--radius);
  background: var(--surface-container-lowest);
  box-shadow: var(--soft-shadow);
  text-align: center;
}

.blog-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 64px;
  background: var(--surface-container-lowest);
  border: 1px solid rgba(194, 200, 193, 0.55);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.search-form {
  min-width: 280px;
}

.featured-article {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  overflow: hidden;
  align-items: center;
}

.featured-article img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.featured-article > div {
  padding: 32px 32px 32px 0;
}

.featured-article h2 {
  margin-bottom: 16px;
}

.featured-article p:not(.eyebrow) {
  color: var(--on-surface-variant);
  margin-bottom: 24px;
}

.article-shell {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 50px 64px 0;
}

.article-header {
  max-width: 880px;
  margin: 0 auto 44px;
  text-align: center;
}

.article-header h1 {
  margin-bottom: 20px;
}

.article-header img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: 34px;
}

.article-content {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.toc {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 10px;
  padding: 20px;
}

.toc strong {
  color: var(--primary);
}

.toc a {
  color: var(--on-surface-variant);
  font-size: 14px;
}

.article-prose {
  padding: 42px;
}

.article-prose h2 {
  font-size: 32px;
  margin: 32px 0 14px;
}

.article-prose h2:first-child {
  margin-top: 0;
}

.article-prose p {
  color: var(--on-surface-variant);
  font-size: 18px;
  line-height: 1.75;
  margin: 0 0 20px;
}

.article-prose blockquote {
  margin: 36px 0;
  padding: 22px 28px;
  border-left: 4px solid var(--tertiary);
  background: var(--surface-container-low);
  color: var(--primary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
  line-height: 1.35;
}

.inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 38px 0;
  padding: 26px;
  border-radius: var(--radius);
  background: rgba(42, 66, 49, 0.08);
  border: 1px solid rgba(42, 66, 49, 0.18);
}

.inline-cta h3 {
  margin-bottom: 8px;
}

.inline-cta p {
  margin: 0;
  font-size: 16px;
}

.legal-page {
  max-width: 860px;
}

.legal-page p {
  color: var(--on-surface-variant);
  font-size: 17px;
  line-height: 1.75;
}

.final-cta {
  text-align: center;
}

.final-cta-inner {
  padding: 64px;
  border-radius: var(--radius);
  background: var(--surface-variant);
  position: relative;
  overflow: hidden;
}

.final-cta-inner h2 {
  margin-bottom: 14px;
}

.final-cta-inner p {
  max-width: 620px;
  margin: 0 auto 26px;
  color: var(--on-surface-variant);
  font-size: 18px;
}

.site-footer {
  background: var(--primary);
  color: var(--primary-fixed);
  padding: 74px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
}

.footer-brand {
  color: var(--on-primary);
  margin-bottom: 18px;
}

.site-footer p {
  color: rgba(205, 234, 210, 0.78);
  margin: 0 0 18px;
}

.site-footer h2 {
  color: var(--secondary-fixed);
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.site-footer a {
  display: block;
  color: rgba(205, 234, 210, 0.82);
  margin-bottom: 10px;
}

.site-footer a:hover {
  color: var(--on-primary);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(205, 234, 210, 0.62);
  font-size: 14px;
}

@media (max-width: 1100px) {
  .header-contact,
  .header-contact-group {
    display: none;
  }

  .desktop-nav {
    gap: 14px;
  }

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

  .gallery-tile.wide {
    grid-column: span 2;
    grid-row: span 1;
  }

  .booking-grid,
  .featured-article {
    grid-template-columns: 1fr;
  }

  .featured-article > div {
    padding: 0 30px 30px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

  .container,
  .header-inner,
  .article-shell {
    padding-left: 20px;
    padding-right: 20px;
  }

  .desktop-nav,
  .header-actions .btn {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .brand {
    font-size: 21px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .mobile-panel {
    display: grid;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--surface-container-lowest);
    border-bottom: 1px solid rgba(194, 200, 193, 0.55);
    box-shadow: var(--shadow);
    max-height: calc(100svh - var(--header-height));
    overflow-y: auto;
    padding: 12px 20px 20px;
    gap: 8px;
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .mobile-panel.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-panel a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: var(--radius);
    color: var(--primary);
    font-weight: 800;
  }

  .mobile-panel a:hover {
    background: var(--surface-container-low);
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 31px;
  }

  h3 {
    font-size: 23px;
  }

  .hero {
    min-height: 640px;
  }

  .hero-home {
    min-height: 720px;
    align-items: flex-start;
    padding-top: 58px;
  }

  .hero-home .hero-bg {
    inset: 0;
    width: 100%;
    height: 100%;
    object-position: 64% center;
    opacity: 0.92;
  }

  .hero-home .hero-overlay {
    background:
      linear-gradient(180deg, rgba(8, 28, 16, 0.94) 0%, rgba(8, 28, 16, 0.8) 48%, rgba(8, 28, 16, 0.34) 100%),
      linear-gradient(90deg, rgba(8, 28, 16, 0.62) 0%, rgba(8, 28, 16, 0.22) 100%);
  }

  .hero p:not(.eyebrow),
  .lead,
  .page-header p:not(.eyebrow) {
    font-size: 16px;
  }

  .section {
    padding: 58px 0;
  }

  .split,
  .product-split,
  .article-content,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .toc {
    position: static;
  }

  .specs-bar,
  .stats-grid,
  .gallery-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-strip img:first-child {
    grid-row: span 1;
    grid-column: span 2;
  }

  .blog-tools {
    display: grid;
    padding: 18px;
  }

  .search-form {
    min-width: 0;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 66px;
  }

  body {
    font-size: 15px;
  }

  .container,
  .header-inner,
  .article-shell {
    padding-left: 16px;
    padding-right: 16px;
  }

  .header-inner {
    gap: 12px;
  }

  .brand {
    min-width: 0;
    gap: 8px;
    font-size: 18px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .brand span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-menu-button {
    min-height: 40px;
    padding: 8px 12px;
  }

  h1 {
    font-size: 32px;
    line-height: 1.12;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 21px;
  }

  .hero {
    min-height: 560px;
  }

  .hero-content {
    width: 100%;
  }

  .hero-home {
    min-height: min(620px, calc(100svh - var(--header-height)));
    padding-top: 42px;
  }

  .hero-home .hero-content h1 {
    max-width: 100%;
    margin-bottom: 16px;
    font-size: 35px;
    line-height: 1.08;
  }

  .hero-home .hero-content p:not(.eyebrow) {
    max-width: 100%;
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-actions,
  .product-copy .hero-actions,
  .inline-cta {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .btn {
    width: 100%;
    min-height: 46px;
    padding: 12px 16px;
  }

  .card-grid.three,
  .category-grid,
  .bento-grid,
  .form-row,
  .specs-bar,
  .stats-grid,
  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .gallery-strip img:first-child,
  .gallery-tile.wide {
    grid-column: span 1;
  }

  .bento-grid {
    grid-auto-rows: 230px;
    gap: 16px;
  }

  .page-header {
    padding: 42px 0 36px;
  }

  .hero-home .hero-bg {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    max-height: none;
    aspect-ratio: auto;
    object-position: 68% center;
  }

  .section {
    padding: 46px 0;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2 {
    margin-bottom: 10px;
  }

  .card-grid,
  .steps,
  .support-panel,
  .quote-form {
    gap: 14px;
  }

  .card-body,
  .category-card,
  .benefit-card,
  .step,
  .stats-grid div,
  .specs-bar div {
    padding: 18px;
  }

  .card-body h3 {
    font-size: 21px;
  }

  .card-image {
    aspect-ratio: 16 / 11;
  }

  .category-card {
    min-height: auto;
  }

  .category-card span {
    font-size: 22px;
  }

  .step {
    gap: 12px;
  }

  .step > span {
    width: 38px;
    height: 38px;
  }

  .product-hero {
    padding-top: 38px;
  }

  .product-copy .hero-actions {
    margin-top: 22px;
  }

  .specs-bar strong,
  .stats-grid strong {
    font-size: 22px;
  }

  .gallery-strip {
    grid-auto-rows: 220px;
    gap: 14px;
  }

  .gallery-tile span {
    padding: 18px;
    font-size: 21px;
  }

  .filter-bar {
    justify-content: flex-start;
    padding-top: 24px;
  }

  .filter-bar button,
  .filter-pills a {
    padding: 8px 12px;
    font-size: 13px;
  }

  .blog-tools {
    gap: 14px;
    padding: 16px;
  }

  .filter-pills {
    gap: 8px;
  }

  .featured-article > div {
    padding: 0 18px 22px;
  }

  .article-shell {
    padding-top: 34px;
  }

  .article-header {
    margin-bottom: 28px;
  }

  .article-header img,
  .featured-article img {
    height: 250px;
  }

  .article-prose,
  .form-card,
  .support-panel,
  .legal-page,
  .toc {
    padding: 18px;
  }

  .article-prose h2 {
    font-size: 25px;
  }

  .article-prose p,
  .legal-page p {
    font-size: 16px;
    line-height: 1.65;
  }

  .article-prose blockquote {
    margin: 26px 0;
    padding: 18px;
    font-size: 21px;
  }

  .inline-cta {
    padding: 18px;
  }

  .final-cta-inner {
    padding: 30px 18px;
  }

  .final-cta-inner p {
    font-size: 16px;
  }

  .site-footer {
    padding: 48px 0 24px;
  }

  .footer-brand {
    font-size: 22px;
  }

  .footer-grid {
    gap: 22px;
  }

  .footer-bottom {
    margin-top: 28px;
  }
}

@media (max-width: 390px) {
  .container,
  .header-inner,
  .article-shell {
    padding-left: 14px;
    padding-right: 14px;
  }

  .brand {
    font-size: 16px;
  }

  .brand img {
    width: 32px;
    height: 32px;
  }

  .mobile-menu-button {
    padding: 8px 10px;
    font-size: 13px;
  }

  .hero-home {
    min-height: min(590px, calc(100svh - var(--header-height)));
    padding-top: 34px;
  }

  .hero-home .hero-content h1 {
    font-size: 31px;
  }

  .hero-home .hero-content p:not(.eyebrow) {
    font-size: 15px;
  }

  .eyebrow {
    font-size: 11px;
  }

  .section {
    padding: 40px 0;
  }

  .card-body,
  .category-card,
  .benefit-card,
  .step,
  .stats-grid div,
  .specs-bar div,
  .form-card,
  .support-panel,
  .article-prose,
  .legal-page {
    padding: 16px;
  }

  .gallery-strip {
    grid-auto-rows: 190px;
  }

  .bento-grid {
    grid-auto-rows: 210px;
  }

  .article-header img,
  .featured-article img {
    height: 220px;
  }
}

/* Chat assistant widget */
.thg-chat {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  font-family: "Inter", Arial, sans-serif;
}

.thg-chat__launcher {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: none;
  border-radius: 999px;
  background: var(--primary);
  color: var(--on-primary);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, background 0.2s ease;
}

.thg-chat__launcher:hover {
  background: var(--primary-container);
  transform: translateY(-1px);
}

.thg-chat__launcher-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.thg-chat.is-open .thg-chat__launcher {
  transform: scale(0.9);
  opacity: 0;
  pointer-events: none;
}

.thg-chat__panel {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(360px, calc(100vw - 32px));
  height: min(560px, calc(100vh - 120px));
  background: var(--surface-container-lowest);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(20, 44, 28, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  border: 1px solid var(--outline-variant);
}

.thg-chat.is-open .thg-chat__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.thg-chat__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  background: var(--primary);
  color: var(--on-primary);
}

.thg-chat__header strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
}

.thg-chat__header span {
  display: block;
  font-size: 12px;
  opacity: 0.85;
  margin-top: 2px;
}

.thg-chat__close {
  background: transparent;
  border: none;
  color: var(--on-primary);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.thg-chat__close:hover {
  background: rgba(255, 255, 255, 0.15);
}

.thg-chat__log {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--surface-container-low);
}

.thg-chat__msg {
  display: flex;
  max-width: 100%;
}

.thg-chat__msg--user {
  justify-content: flex-end;
}

.thg-chat__bubble {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.45;
  word-wrap: break-word;
}

.thg-chat__msg--assistant .thg-chat__bubble {
  background: var(--surface-container-lowest);
  border: 1px solid var(--outline-variant);
  color: var(--on-surface);
  border-bottom-left-radius: 4px;
}

.thg-chat__msg--user .thg-chat__bubble {
  background: var(--primary);
  color: var(--on-primary);
  border-bottom-right-radius: 4px;
}

.thg-chat__msg .thg-chat__bubble a {
  color: inherit;
  text-decoration: underline;
}

.thg-chat__msg.is-error .thg-chat__bubble {
  background: #fde7e6;
  border-color: #f3b6b3;
  color: #5b1a1a;
}

.thg-chat__msg--typing .thg-chat__bubble {
  display: inline-flex;
  gap: 4px;
  padding: 12px 14px;
}

.thg-chat__msg--typing .thg-chat__bubble span {
  width: 6px;
  height: 6px;
  background: var(--outline);
  border-radius: 50%;
  animation: thgChatTyping 1.2s infinite ease-in-out;
}

.thg-chat__msg--typing .thg-chat__bubble span:nth-child(2) {
  animation-delay: 0.15s;
}

.thg-chat__msg--typing .thg-chat__bubble span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes thgChatTyping {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.thg-chat__suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 14px 0;
  background: var(--surface-container-low);
}

.thg-chat__suggestions[hidden] {
  display: none;
}

.thg-chat__suggestions button {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--outline-variant);
  background: var(--surface-container-lowest);
  color: var(--on-surface);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.thg-chat__suggestions button:hover {
  background: var(--primary-fixed);
  border-color: var(--primary-fixed);
}

.thg-chat__form {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  background: var(--surface-container-low);
  border-top: 1px solid var(--outline-variant);
}

.thg-chat__form input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--outline-variant);
  background: var(--surface-container-lowest);
  color: var(--on-surface);
  font-size: 14px;
  outline: none;
}

.thg-chat__form input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-fixed);
}

.thg-chat__form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--primary);
  color: var(--on-primary);
  cursor: pointer;
  flex-shrink: 0;
}

.thg-chat__form button:hover {
  background: var(--primary-container);
}

.thg-chat__form button:disabled,
.thg-chat__form input:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.thg-chat__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 560px) {
  .thg-chat {
    right: 12px;
    bottom: 12px;
  }

  .thg-chat__launcher-label {
    display: none;
  }

  .thg-chat__launcher {
    width: 52px;
    height: 52px;
    padding: 0;
    justify-content: center;
  }

  .thg-chat__panel {
    width: calc(100vw - 24px);
    height: calc(100vh - 100px);
  }
}
