


.pace .pace-progress {
  background: linear-gradient(90deg, #c0834a, #e8a96e);
  height: 3px;
}


:root {
  
  --clr-primary: #8B4513;
  --clr-primary-dark: #6B3410;
  --clr-primary-light: #c0834a;
  --clr-secondary: #2D5016;
  --clr-secondary-light: #4a7a28;
  --clr-accent: #e8a96e;
  --clr-accent-warm: #d4845a;
  --clr-accent-gold: #C9A84C;

  --clr-bg: #faf8f5;
  --clr-bg-alt: #f4f0ea;
  --clr-bg-dark: #1a1208;
  --clr-surface: #ffffff;
  --clr-surface-glass: rgba(255,255,255,0.72);

  --clr-text: #2a1f0f;
  --clr-text-muted: #6b5a42;
  --clr-text-light: #f5f0e8;

  
  --grad-primary: linear-gradient(135deg, #8B4513 0%, #c0834a 40%, #e8a96e 70%, #C9A84C 100%);
  --grad-secondary: linear-gradient(135deg, #2D5016 0%, #4a7a28 60%, #8B9556 100%);
  --grad-hero: linear-gradient(135deg, #1a1208 0%, #3d2010 25%, #8B4513 55%, #c0834a 80%, #e8d5b0 100%);
  --grad-section: linear-gradient(160deg, #faf8f5 0%, #f0e8d8 50%, #e8dcc8 100%);
  --grad-footer: linear-gradient(135deg, #1a1208 0%, #2d1a08 50%, #3d2a10 100%);
  --grad-card-hover: linear-gradient(135deg, rgba(139,69,19,0.08), rgba(201,168,76,0.08));

  
  --grad-text: linear-gradient(135deg, #8B4513, #e8a96e, #C9A84C);

  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  
  --shadow-sm: 2px 4px 8px rgba(42,31,15,0.08), 0 1px 2px rgba(42,31,15,0.04);
  --shadow-md: 4px 8px 24px rgba(42,31,15,0.12), 2px 4px 8px rgba(42,31,15,0.06);
  --shadow-lg: 8px 16px 48px rgba(42,31,15,0.16), 4px 8px 16px rgba(42,31,15,0.08);
  --shadow-xl: 12px 24px 64px rgba(42,31,15,0.22), 6px 12px 24px rgba(42,31,15,0.10);
  --shadow-glow: 0 0 40px rgba(192,131,74,0.25), 4px 8px 24px rgba(42,31,15,0.12);

  
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;

  
  --header-h: 72px;
}


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

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

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

a { color: inherit; text-decoration: none; transition: color 0.25s ease; }

ul { list-style: none; }


h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--clr-text);
}

.text-gradient {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.container {
  container-type: inline-size;
  container-name: main-container;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: 760px;
}


.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  min-height: 44px;
}

.btn--primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: var(--shadow-md), 0 0 0 0 rgba(192,131,74,0);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(192,131,74,0.3);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--clr-text-light);
  border-color: rgba(255,255,255,0.4);
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
  color: #fff;
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn--outline-white:hover {
  background: #fff;
  color: var(--clr-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--sm {
  font-size: 0.82rem;
  padding: 0.55rem 1.2rem;
  min-height: 38px;
}

.btn--lg {
  font-size: 1rem;
  padding: 1rem 2.4rem;
}

.btn--submit {
  white-space: nowrap;
}


.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.header__inner {
  height: 100%;
}

.header.header--scrolled {
  background: rgba(250,248,245,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.header.header--scrolled .header__brand-name { color: var(--clr-text); }
.header.header--scrolled .nav__link { color: var(--clr-text-muted); }
.header.header--scrolled .nav__link:hover { color: var(--clr-primary); }
.header.header--scrolled .header__hamburger-line { background: var(--clr-text); }


.header__flip-container {
  height: var(--header-h);
  perspective: 1200px;
}

.header__flip-card {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.77, 0, 0.175, 1);
}

.header__flip-card.is-flipped {
  transform: rotateX(-180deg);
}

.header__front,
.header__back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  align-items: center;
  padding: 0 var(--space-md);
}

.header__front {
  justify-content: space-between;
}

.header__back {
  transform: rotateX(180deg);
  background: var(--clr-bg-dark);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-md);
}

.header__back-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: var(--space-xs);
}

.header__brand {
  display: flex;
  align-items: center;
}

.header__logo-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.header__logo { width: 36px; height: 36px; }

.header__brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--clr-text-light);
  transition: color 0.3s;
}

.header__brand-name--back {
  color: var(--clr-accent);
}

.header__brand-name--light { color: #fff; }

.nav__list {
  display: none;
  gap: var(--space-md);
}

.nav__link {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.03em;
  transition: color 0.25s ease;
  padding: 0.25rem 0;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--grad-primary);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav__link:hover::after,
.nav__link--active::after { width: 100%; }

.nav__link--active { color: var(--clr-accent); }

.nav__link--light { color: rgba(255,255,255,0.85); }
.nav__link--light:hover { color: #fff; }


.nav__list--mobile {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  width: 100%;
}

.nav__link--mobile {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  padding: 0.6rem 0;
  display: block;
  transition: color 0.2s, padding-left 0.2s;
}

.nav__link--mobile:hover {
  color: var(--clr-accent);
  padding-left: 0.5rem;
}


.header__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}

.header__hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: background 0.3s;
}

.header__hamburger--light .header__hamburger-line { background: #fff; }

.header__close-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.header__close-btn:hover { color: var(--clr-accent); }


.section {
  padding: var(--space-2xl) 0;
}

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-xl);
}

.section__label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-primary-light);
  margin-bottom: 0.6rem;
  display: block;
}

.section__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: var(--space-sm);
  line-height: 1.15;
}

.section__desc {
  color: var(--clr-text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}


.strip {
  height: 24px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.strip--dots {
  background-image: radial-gradient(circle, rgba(139,69,19,0.18) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  background-color: var(--clr-bg);
}

.strip--gradient {
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(139,69,19,0.15) 20%,
    rgba(192,131,74,0.35) 50%,
    rgba(201,168,76,0.15) 80%,
    transparent 100%
  );
}

.strip--lines {
  background-image: repeating-linear-gradient(
    90deg,
    rgba(139,69,19,0.08) 0px,
    rgba(139,69,19,0.08) 1px,
    transparent 1px,
    transparent 24px
  );
  background-color: var(--clr-bg);
}


.hero {
  min-height: 100vh;
  background: var(--grad-hero);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  padding: calc(var(--header-h) + var(--space-xl)) var(--space-md) var(--space-2xl);
  position: relative;
  overflow: hidden;
  flex-wrap: wrap;
}

.hero__pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.04) 1px, transparent 1px),
    radial-gradient(circle at 60% 60%, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px, 60px 60px;
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(192,131,74,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  flex: 1 1 320px;
}

.hero__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--space-sm);
  display: block;
}

.hero__title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: var(--space-md);
}

.hero__title-highlight {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  color: rgba(255,255,255,0.78);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: var(--space-lg);
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}


.hero__image-wrap {
  position: relative;
  z-index: 2;
  flex: 1 1 300px;
  max-width: 500px;
}

.hero__card-stack {
  position: relative;
  width: 100%;
  padding-bottom: 75%;
}

.hero__card-back,
.hero__card-mid,
.hero__card-front {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero__card-back {
  inset: 16px 0 0 16px;
  background: rgba(201,168,76,0.25);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-lg);
}

.hero__card-mid {
  inset: 8px 8px 8px 8px;
  background: rgba(192,131,74,0.2);
  border: 1px solid rgba(192,131,74,0.25);
  border-radius: var(--radius-lg);
}

.hero__card-front {
  inset: 0 16px 16px 0;
  box-shadow: var(--shadow-xl);
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}


.card {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card--featured {
  background: linear-gradient(160deg, #fff 0%, #fdf8f0 100%);
  box-shadow: var(--shadow-lg);
}

.card__number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(139,69,19,0.08);
  position: absolute;
  top: var(--space-sm);
  right: var(--space-md);
  line-height: 1;
}

.card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
  box-shadow: 4px 4px 12px rgba(139,69,19,0.25);
}

.card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--clr-text);
}

.card__body {
  color: var(--clr-text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}


.section--how {
  background: var(--clr-bg);
}

.how__grid {
  container-type: inline-size;
  container-name: how-grid;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@container how-grid (min-width: 600px) {
  .how__grid { grid-template-columns: repeat(2, 1fr); }
}

@container how-grid (min-width: 900px) {
  .how__grid { grid-template-columns: repeat(4, 1fr); }
}

.how__card {
  animation-delay: var(--card-delay, 0ms);
}


.section--properties {
  background: var(--grad-section);
}

.properties__stack {
  container-type: inline-size;
  container-name: properties-stack;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@container properties-stack (min-width: 700px) {
  .properties__stack { grid-template-columns: repeat(2, 1fr); }
}

@container properties-stack (min-width: 1000px) {
  .properties__stack { grid-template-columns: repeat(3, 1fr); }
  .property__card:first-child { grid-column: span 1; }
}


.property__card.card--featured::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: var(--grad-primary);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.property__card.card--featured::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  background: linear-gradient(var(--clr-surface), var(--clr-surface)) padding-box,
              var(--grad-primary) border-box;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.property__card.card--featured:hover::before { opacity: 1; }
.property__card.card--featured:hover::after { opacity: 1; }


@keyframes border-draw {
  0% { clip-path: inset(0 100% 100% 0); }
  25% { clip-path: inset(0 0 100% 0); }
  50% { clip-path: inset(0 0 0 0); }
  75% { clip-path: inset(0 0 0 0); }
  100% { clip-path: inset(0 0 0 0); }
}

.property__card.card--featured:hover .property__image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid transparent;
  border-radius: var(--radius-md);
  background: linear-gradient(transparent, transparent) padding-box,
              var(--grad-primary) border-box;
  animation: border-draw 0.6s ease forwards;
}

.property__image-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  margin-bottom: var(--space-md);
}

.property__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.property__card:hover .property__img { transform: scale(1.04); }

.property__badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  background: var(--grad-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.property__name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.property__desc {
  color: var(--clr-text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.property__details {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

.property__detail {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.property__detail i { color: var(--clr-primary-light); }


.section--about {
  background: var(--clr-bg);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 768px) {
  .about__grid { grid-template-columns: 1fr 1fr; }
}

.about__card-stack {
  position: relative;
  padding-bottom: 80%;
}

.about__card-back {
  position: absolute;
  inset: 12px 0 0 12px;
  background: var(--grad-primary);
  border-radius: var(--radius-lg);
  opacity: 0.25;
}

.about__card-front {
  position: absolute;
  inset: 0 12px 12px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

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

.about__text {
  color: var(--clr-text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: var(--space-md);
}


.section--certs {
  background: linear-gradient(160deg, #1a1208 0%, #3d2010 40%, #5a3018 100%);
}

.section--certs .section__label { color: var(--clr-accent); }
.section--certs .section__title { color: #fff; }
.section--certs .section__desc { color: rgba(255,255,255,0.65); }

.certs__grid {
  container-type: inline-size;
  container-name: certs-grid;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@container certs-grid (min-width: 500px) {
  .certs__grid { grid-template-columns: repeat(2, 1fr); }
}

@container certs-grid (min-width: 900px) {
  .certs__grid { grid-template-columns: repeat(5, 1fr); }
}

.cert__card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: var(--space-md);
  text-align: center;
}

.cert__card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(192,131,74,0.4);
}

.cert__icon {
  font-size: 2rem;
  color: var(--clr-accent);
  margin-bottom: var(--space-sm);
}

.cert__title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.cert__desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
}


.section--gallery { background: var(--grad-section); }

.gallery__grid {
  container-type: inline-size;
  container-name: gallery-grid;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-sm);
}

@container gallery-grid (min-width: 700px) {
  .gallery__grid {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 260px 260px;
  }
  .gallery__item--tall { grid-row: span 2; }
  .gallery__item--wide { grid-column: span 2; }
}

.gallery__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}

@container gallery-grid (min-width: 700px) {
  .gallery__item { aspect-ratio: unset; height: 100%; }
}

.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery__item:hover .gallery__img { transform: scale(1.05); }


.section--location { background: var(--clr-bg); }

.location__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}

@media (min-width: 768px) {
  .location__grid { grid-template-columns: 1fr 1.5fr; }
}

.location__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin: var(--space-md) 0 var(--space-lg);
}

.location__detail-item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.location__icon {
  color: var(--clr-primary-light);
  font-size: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.location__detail-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: var(--clr-text);
}

.location__detail-item p {
  color: var(--clr-text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.location__detail-item a {
  color: var(--clr-primary-light);
  transition: color 0.2s;
}

.location__detail-item a:hover { color: var(--clr-primary); }

.location__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.location__iframe {
  display: block;
  border-radius: var(--radius-lg);
}


.page-hero {
  padding: calc(var(--header-h) + var(--space-2xl)) var(--space-md) var(--space-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero--about {
  background: linear-gradient(160deg, #1a1208 0%, #3d2010 35%, #8B4513 70%, #c0834a 100%);
}

.page-hero--schedule {
  background: linear-gradient(160deg, #0f1a08 0%, #1a3010 35%, #2D5016 65%, #4a7a28 100%);
}

.page-hero--packing {
  background: linear-gradient(160deg, #1a1208 0%, #4a2a10 40%, #8B6513 70%, #C9A84C 100%);
}

.page-hero--contact {
  background: linear-gradient(160deg, #08101a 0%, #102030 35%, #1a4060 65%, #2a6080 100%);
}

.page-hero--legal {
  background: linear-gradient(160deg, #1a1208 0%, #2d1a0a 50%, #3d2010 100%);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.03) 1px, transparent 1px),
                    radial-gradient(circle at 70% 30%, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px, 55px 55px;
  pointer-events: none;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.page-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: var(--space-md);
  line-height: 1.1;
}

.page-hero__subtitle {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}


.section--story { background: var(--clr-bg); }

.story__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 768px) {
  .story__grid { grid-template-columns: 1fr 1fr; }
}

.story__content .section__title { text-align: left; }

.story__text {
  color: var(--clr-text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: var(--space-md);
}


.section--values {
  background: var(--grad-section);
}

.values__grid {
  container-type: inline-size;
  container-name: values-grid;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@container values-grid (min-width: 600px) {
  .values__grid { grid-template-columns: repeat(2, 1fr); }
}

@container values-grid (min-width: 900px) {
  .values__grid { grid-template-columns: repeat(4, 1fr); }
}

.value__icon {
  background: var(--grad-secondary);
}


.section--timeline { background: var(--clr-bg); }

.timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 72px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--clr-primary-light), var(--clr-accent-gold), transparent);
}

.timeline__item {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
  position: relative;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: 64px;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--grad-primary);
  box-shadow: 0 0 0 4px rgba(192,131,74,0.2);
  z-index: 1;
}

.timeline__year {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--clr-primary-light);
  min-width: 52px;
  padding-top: 0.1rem;
  flex-shrink: 0;
}

.timeline__content {
  padding-left: var(--space-md);
}

.timeline__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.timeline__text {
  color: var(--clr-text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}


.section--schedule { background: var(--clr-bg); }

.schedule__info-grid {
  container-type: inline-size;
  container-name: schedule-info;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@container schedule-info (min-width: 600px) {
  .schedule__info-grid { grid-template-columns: repeat(2, 1fr); }
}

@container schedule-info (min-width: 900px) {
  .schedule__info-grid { grid-template-columns: repeat(4, 1fr); }
}

.section--schedule-cards { background: var(--grad-section); }

.schedule__cards {
  container-type: inline-size;
  container-name: schedule-cards;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@container schedule-cards (min-width: 700px) {
  .schedule__cards { grid-template-columns: repeat(2, 1fr); }
}

.schedule__card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.schedule__region {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.schedule__region i { color: var(--clr-primary-light); }

.schedule__status {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
}

.schedule__status--open {
  background: rgba(45,80,22,0.12);
  color: var(--clr-secondary);
}

.schedule__status--limited {
  background: rgba(201,168,76,0.15);
  color: #8a6a00;
}

.schedule__property-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.schedule__desc {
  color: var(--clr-text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.schedule__meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: var(--space-md);
}

.schedule__meta span {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.schedule__meta i { color: var(--clr-primary-light); }

.section--season { background: var(--clr-bg); }

.season__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  max-width: 760px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .season__grid { grid-template-columns: repeat(2, 1fr); }
}

.season__icon {
  font-size: 2rem;
  color: var(--clr-accent);
  margin-bottom: var(--space-sm);
}


.section--mindset { background: var(--clr-bg); }

.mindset__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 768px) {
  .mindset__grid { grid-template-columns: 1fr 1fr; }
}

.mindset__text {
  color: var(--clr-text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.section--packing { background: var(--grad-section); }

.packing__grid {
  container-type: inline-size;
  container-name: packing-grid;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@container packing-grid (min-width: 600px) {
  .packing__grid { grid-template-columns: repeat(2, 1fr); }
}

.packing__cat-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.packing__cat-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}

.packing__cat-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
}

.packing__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.packing__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--clr-text-muted);
}

.packing__item i {
  color: var(--clr-secondary-light);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.section--dont-bring { background: var(--clr-bg); }

.dont__grid {
  container-type: inline-size;
  container-name: dont-grid;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@container dont-grid (min-width: 600px) {
  .dont__grid { grid-template-columns: repeat(3, 1fr); }
}

.dont__icon {
  font-size: 2rem;
  color: var(--clr-accent-warm);
  margin-bottom: var(--space-sm);
}

.section--culture { background: var(--grad-section); }

.culture__grid {
  container-type: inline-size;
  container-name: culture-grid;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@container culture-grid (min-width: 600px) {
  .culture__grid { grid-template-columns: repeat(2, 1fr); }
}

@container culture-grid (min-width: 900px) {
  .culture__grid { grid-template-columns: repeat(4, 1fr); }
}

.culture__item {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.culture__icon {
  font-size: 1.8rem;
  color: var(--clr-accent-gold);
}

.culture__text {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
}


.section--contact { background: var(--clr-bg); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: start;
}

@media (min-width: 768px) {
  .contact__grid { grid-template-columns: 1.4fr 1fr; }
}

.contact__form-card,
.contact__info-card {
  height: 100%;
}

.contact__form-title,
.contact__info-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.contact__form-desc {
  color: var(--clr-text-muted);
  font-size: 0.9rem;
  margin-bottom: var(--space-lg);
}


.form__row {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form__row--inline {
  flex-direction: column;
  gap: var(--space-sm);
}

@media (min-width: 600px) {
  .form__row--inline { flex-direction: row; }
  .form__row--inline .form__group { flex: 1; }
}

.form__row--bottom {
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

@media (min-width: 600px) {
  .form__row--bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: var(--space-sm);
}

.form__label {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-text);
}

.form__required { color: var(--clr-primary); }

.form__input,
.form__textarea {
  width: 100%;
  padding: 0.7rem var(--space-sm);
  border: 1.5px solid rgba(139,69,19,0.2);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--clr-text);
  background: var(--clr-bg);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  min-height: 44px;
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--clr-primary-light);
  box-shadow: 0 0 0 3px rgba(192,131,74,0.15);
}

.form__textarea {
  resize: vertical;
  min-height: 90px;
}

.form__group--checkbox { justify-content: center; }

.form__checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--clr-text-muted);
}

.form__checkbox { display: none; }

.form__checkbox-custom {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(139,69,19,0.3);
  border-radius: 4px;
  display: inline-block;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}

.form__checkbox:checked + .form__checkbox-custom {
  background: var(--clr-primary-light);
  border-color: var(--clr-primary-light);
}

.form__checkbox:checked + .form__checkbox-custom::after {
  content: '';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3 4 7-8' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/12px no-repeat;
}

.form__link {
  color: var(--clr-primary-light);
  text-decoration: underline;
}

.contact__detail-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.contact__detail-item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.contact__detail-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.contact__detail-content strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.contact__detail-content p {
  font-size: 0.92rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
}

.contact__detail-content a {
  color: var(--clr-primary-light);
  transition: color 0.2s;
}

.contact__detail-content a:hover { color: var(--clr-primary); }


.section--map { background: var(--grad-section); }

.map__header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.map__wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.map__iframe { display: block; }


.section--service-area { background: var(--clr-bg); }

.service-area__grid {
  container-type: inline-size;
  container-name: service-area;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@container service-area (min-width: 600px) {
  .service-area__grid { grid-template-columns: repeat(2, 1fr); }
}

@container service-area (min-width: 900px) {
  .service-area__grid { grid-template-columns: repeat(4, 1fr); }
}


.thanks__main {
  flex: 1;
}

.thanks__hero {
  min-height: calc(100vh - var(--header-h) - 300px);
  background: var(--grad-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + var(--space-2xl)) var(--space-md) var(--space-2xl);
}

.thanks__content {
  text-align: center;
  max-width: 600px;
}

.thanks__icon {
  font-size: 4rem;
  color: var(--clr-accent);
  margin-bottom: var(--space-lg);
}

.thanks__title {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.thanks__text {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: var(--space-xl);
}


.section--legal { background: var(--clr-bg); }

.legal__body {
  padding: var(--space-lg) 0;
}

.legal__intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--clr-text-muted);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(139,69,19,0.1);
}

.legal__heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
  padding-left: var(--space-sm);
  border-left: 3px solid var(--clr-primary-light);
}

.legal__body p {
  color: var(--clr-text-muted);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.legal__body code {
  background: var(--clr-bg-alt);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.88rem;
  color: var(--clr-primary);
}


.footer {
  background: var(--grad-footer);
  color: rgba(255,255,255,0.75);
  position: relative;
}

.footer__gradient-bar {
  height: 4px;
  background: var(--grad-primary);
}

.footer .container {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-lg);
}

.footer__grid {
  container-type: inline-size;
  container-name: footer-grid;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@container footer-grid (min-width: 600px) {
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@container footer-grid (min-width: 900px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer__logo-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: var(--space-sm);
}

.footer__logo { width: 32px; height: 32px; }

.footer__brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
}

.footer__tagline {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: var(--space-sm);
  color: rgba(255,255,255,0.55);
}

.footer__address {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.45);
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--space-sm);
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.25s ease;
}

.footer__link:hover { color: var(--clr-accent); }

.footer__contact-item {
  margin-bottom: 0.4rem;
}

.footer__bottom {
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer__copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
}


.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}


@media (min-width: 768px) {
  .nav__list { display: flex; }
  .header__hamburger { display: none; }
}

@media (max-width: 767px) {
  .hero {
    flex-direction: column;
    padding-top: calc(var(--header-h) + var(--space-lg));
    padding-bottom: var(--space-xl);
    min-height: unset;
  }

  .hero__image-wrap { max-width: 100%; width: 100%; }
  .hero__card-stack { padding-bottom: 65%; }

  .section { padding: var(--space-xl) 0; }

  .about__grid { gap: var(--space-lg); }

  .timeline::before { left: 44px; }
  .timeline__item::before { left: 36px; }
  .timeline__year { min-width: 32px; font-size: 0.82rem; }
  .timeline__content { padding-left: var(--space-sm); }

  .location__grid { gap: var(--space-lg); }

  .gallery__grid { grid-template-columns: 1fr 1fr; }
  .gallery__item--tall,
  .gallery__item--wide { grid-column: span 1; grid-row: span 1; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .contact__grid { grid-template-columns: 1fr; }

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