/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --terracotta: #C0603A;
  --terracotta-dark: #A04E2E;
  --terracotta-light: #D4845E;
  --sand: #F5E6D3;
  --sand-light: #FBF5ED;
  --sand-dark: #E8D5BF;
  --cream: #FFFDF9;
  --brown-dark: #3D2B1F;
  --brown-mid: #6B4C3B;
  --brown-light: #96745F;
  --green: #2D6A4F;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(61, 43, 31, 0.06);
  --shadow-md: 0 8px 30px rgba(61, 43, 31, 0.10);
  --shadow-lg: 0 20px 60px rgba(61, 43, 31, 0.12);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-body);
  color: var(--brown-dark);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 253, 249, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(192, 96, 58, 0.08);
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(255, 253, 249, 0.95);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--brown-dark);
  transition: var(--transition);
}

.nav__logo:hover { color: var(--terracotta); }

.nav__logo-icon { flex-shrink: 0; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__links a {
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--brown-mid);
  transition: var(--transition);
}

.nav__links a:hover {
  color: var(--terracotta);
  background: rgba(192, 96, 58, 0.08);
}

.nav__cta {
  background: var(--terracotta) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
}

.nav__cta:hover {
  background: var(--terracotta-dark) !important;
  color: var(--white) !important;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__burger span {
  width: 24px;
  height: 2px;
  background: var(--brown-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn--primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(192, 96, 58, 0.3);
}

.btn--primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(192, 96, 58, 0.4);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.btn--ghost:hover {
  background: var(--white);
  color: var(--terracotta);
  border-color: var(--white);
}

.btn--full { width: 100%; justify-content: center; }

/* ===== SECTION EYEBROW & TITLE ===== */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}

.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--terracotta);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: var(--brown-dark);
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--terracotta);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--sand-light) 0%, var(--cream) 50%, var(--sand) 100%);
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle at 2px 2px, var(--terracotta) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--terracotta);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.hero__eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--terracotta);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--brown-dark);
  margin-bottom: 24px;
}

.hero__headline em {
  font-style: italic;
  color: var(--terracotta);
}

.hero__sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--brown-mid);
  max-width: 480px;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

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

.hero__stat {
  display: flex;
  flex-direction: column;
}

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--terracotta);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.8rem;
  color: var(--brown-light);
  margin-top: 4px;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--sand-dark);
}

/* Hero Image Stack */
.hero__right {
  position: relative;
}

.hero__img-stack {
  position: relative;
  height: 600px;
}

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

.hero__img--main {
  width: 100%;
  height: 520px;
}

.hero__img--main img,
.hero__img--float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__img--float {
  position: absolute;
  bottom: 0;
  left: -40px;
  width: 240px;
  height: 180px;
  border-radius: var(--radius-md);
  border: 5px solid var(--cream);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.hero__badge {
  position: absolute;
  top: 20px;
  right: -20px;
  background: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--brown-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== ABOUT ===== */
.about {
  padding: 120px 0;
  background: var(--white);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__images {
  position: relative;
  height: 640px;
}

.about__img-main {
  width: 75%;
  height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

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

.about__img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 280px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 5px solid var(--white);
  z-index: 3;
}

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

.about__img-accent {
  position: absolute;
  top: -20px;
  right: 40%;
  width: 120px;
  height: 120px;
  background: var(--sand);
  border-radius: var(--radius-md);
  z-index: 1;
  opacity: 0.6;
}

.about__content { max-width: 520px; }

.about__content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--brown-mid);
  margin-bottom: 16px;
}

.about__highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.highlight {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.highlight svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.highlight strong {
  display: block;
  font-size: 1rem;
  color: var(--brown-dark);
  margin-bottom: 2px;
}

.highlight span {
  font-size: 0.9rem;
  color: var(--brown-light);
  line-height: 1.5;
}

/* ===== AMENITIES ===== */
.amenities {
  padding: 120px 0;
  background: var(--sand-light);
}

.amenities__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.amenities__desc {
  font-size: 1.05rem;
  color: var(--brown-mid);
  line-height: 1.7;
}

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

.amenity-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
  border: 1px solid transparent;
}

.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(192, 96, 58, 0.15);
}

.amenity-card__icon {
  width: 56px;
  height: 56px;
  background: var(--sand);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.amenity-card:hover .amenity-card__icon {
  background: var(--terracotta);
}

.amenity-card:hover .amenity-card__icon svg {
  stroke: var(--white);
}

.amenity-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--brown-dark);
  margin-bottom: 8px;
}

.amenity-card p {
  font-size: 0.9rem;
  color: var(--brown-light);
  line-height: 1.6;
}

/* ===== SITES / GALLERY ===== */
.sites {
  padding: 120px 0;
  background: var(--white);
}

.sites__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.sites__desc {
  font-size: 1.05rem;
  color: var(--brown-mid);
  line-height: 1.7;
}

.sites__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.site-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.site-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-card:hover img {
  transform: scale(1.05);
}

.site-card--large {
  grid-row: span 2;
  min-height: 520px;
}

.site-card:not(.site-card--large) {
  min-height: 248px;
}

.site-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61, 43, 31, 0.85) 0%, rgba(61, 43, 31, 0.2) 50%, transparent 100%);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: var(--transition);
}

.site-card__tag {
  display: inline-block;
  background: var(--terracotta);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 10px;
}

.site-card__overlay h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 6px;
}

.site-card__overlay p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

/* ===== LOCATION ===== */
.location {
  padding: 120px 0;
  background: var(--sand-light);
}

.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.location__info { max-width: 520px; }

.location__info p {
  font-size: 1.05rem;
  color: var(--brown-mid);
  line-height: 1.7;
  margin-bottom: 28px;
}

.location__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.location__details li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--brown-dark);
}

.location__map {
  height: 260px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.location__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 600px;
}

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

.location__visual-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brown-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ===== CONTACT ===== */
.contact {
  padding: 120px 0;
  background: var(--white);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__left { max-width: 480px; }

.contact__left p {
  font-size: 1.05rem;
  color: var(--brown-mid);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact__methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--sand-light);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--brown-dark);
  transition: var(--transition);
}

.contact__method:hover {
  background: var(--sand);
  transform: translateX(4px);
}

.contact__method svg { flex-shrink: 0; }

/* Form */
.contact__form {
  background: var(--sand-light);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form__group {
  margin-bottom: 20px;
}

.form__group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--sand-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--brown-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form__group input::placeholder,
.form__group textarea::placeholder {
  color: var(--brown-light);
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(192, 96, 58, 0.1);
}

.form__group textarea {
  resize: vertical;
  min-height: 100px;
}

.form__success {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(45, 106, 79, 0.08);
  border-radius: var(--radius-sm);
  margin-top: 16px;
}

.form__success p {
  font-size: 0.9rem;
  color: var(--green);
  font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--brown-dark);
  color: var(--sand);
  padding: 80px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer__brand p {
  font-size: 0.9rem;
  color: rgba(245, 230, 211, 0.6);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 320px;
}

.footer__logo { color: var(--sand); }
.footer__logo:hover { color: var(--terracotta-light); }

.footer h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--sand);
  margin-bottom: 20px;
}

.footer address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(245, 230, 211, 0.6);
}

.footer address a {
  color: var(--terracotta-light);
  transition: var(--transition);
}

.footer address a:hover { color: var(--white); }

.footer ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer ul a {
  font-size: 0.9rem;
  color: rgba(245, 230, 211, 0.6);
  transition: var(--transition);
}

.footer ul a:hover {
  color: var(--terracotta-light);
  padding-left: 4px;
}

.footer__bottom {
  border-top: 1px solid rgba(245, 230, 211, 0.1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(245, 230, 211, 0.4);
}

/* ===== MOBILE MENU ===== */
.nav__links.mobile-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(255, 253, 249, 0.98);
  backdrop-filter: blur(20px);
  padding: 24px;
  gap: 4px;
  border-bottom: 1px solid rgba(192, 96, 58, 0.1);
  box-shadow: var(--shadow-md);
}

.nav__links.mobile-open a {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__right { order: -1; }

  .hero__img-stack {
    height: 400px;
    max-width: 500px;
  }

  .hero__img--float {
    left: -20px;
    width: 180px;
    height: 135px;
  }

  .hero__headline { font-size: clamp(2rem, 6vw, 3rem); }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__images { height: 450px; }

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

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

  .site-card--large {
    grid-row: span 1;
    min-height: 360px;
  }

  .site-card:not(.site-card--large) {
    min-height: 240px;
  }

  .location__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .location__visual {
    height: 400px;
    order: -1;
  }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .hero {
    padding: 100px 0 80px;
    min-height: auto;
  }

  .hero__inner { gap: 40px; }

  .hero__img-stack { height: 320px; }

  .hero__img--float { display: none; }

  .hero__stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero__stat-divider { display: none; }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn { width: 100%; justify-content: center; }

  .about__images { height: 360px; }

  .about__img-main { height: 320px; }

  .about__img-secondary { height: 200px; }

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

  .amenities { padding: 80px 0; }

  .sites { padding: 80px 0; }

  .location { padding: 80px 0; }

  .contact { padding: 80px 0; }

  .contact__form { padding: 28px; }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .nav__inner { padding: 0 16px; }

  .hero__headline { font-size: 1.9rem; }

  .section-title { font-size: 1.8rem; }

  .hero__img-stack { height: 260px; }

  .hero__img--main { height: 260px; }

  .about__images { height: 280px; }

  .about__img-main { height: 260px; width: 85%; }

  .about__img-secondary { width: 60%; height: 160px; }

  .location__visual { height: 280px; }
}
