/* ── Variables ── */
:root {
  --burnt:  #C4622D;
  --brown:  #8B4513;
  --amber:  #E8A838;
  --dark:   #1E0F0A;
  --cream:  #FBF5EC;
  --alt:    #F0E5D0;
  --text:   #3D2B1F;
  --muted:  #7A6458;
  --green:  #3D6B4F;
  --white:  #FFFFFF;
  --ff-h:   'Playfair Display', Georgia, serif;
  --ff-b:   'Lato', system-ui, sans-serif;
  --r:      12px;
  --shadow: 0 4px 28px rgba(30,15,10,.10);
  --t:      .3s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--ff-b); background: var(--cream); color: var(--text); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button { cursor: pointer; font-family: var(--ff-b); }

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 1.25rem 0;
  transition: background var(--t), padding var(--t), box-shadow var(--t);
}
.nav.scrolled {
  background: rgba(30,15,10,.96);
  backdrop-filter: blur(10px);
  padding: .85rem 0;
  box-shadow: 0 2px 24px rgba(0,0,0,.3);
}
.nav__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo {
  display: flex; align-items: center; gap: .65rem;
  color: var(--white); text-decoration: none;
  font-family: var(--ff-h); font-size: 1.2rem; font-weight: 600;
  letter-spacing: .02em;
}
.nav__links { list-style: none; display: flex; align-items: center; gap: 2rem; }
.nav__links a {
  color: rgba(255,255,255,.82); text-decoration: none;
  font-size: .9rem; letter-spacing: .04em;
  transition: color var(--t);
}
.nav__links a:hover { color: var(--amber); }
.nav__toggle {
  display: none; background: none; border: none; padding: .25rem;
  flex-direction: column; gap: 5px;
}
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--t); }
.nav__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav__toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── Buttons ── */
.btn {
  display: inline-block; padding: .875rem 2rem;
  font-family: var(--ff-b); font-weight: 700; font-size: .82rem;
  letter-spacing: .1em; text-transform: uppercase; text-decoration: none;
  border-radius: 4px; border: 2px solid transparent;
  transition: all var(--t);
}
.btn--primary { background: var(--burnt); color: var(--white); border-color: var(--burnt); }
.btn--primary:hover { background: var(--brown); border-color: var(--brown); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(196,98,45,.35); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,.1); transform: translateY(-2px); }
.btn--amber { background: var(--amber); color: var(--dark); border-color: var(--amber); }
.btn--amber:hover { background: #d4922a; border-color: #d4922a; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,168,56,.4); }
.btn--nav { background: var(--burnt); color: var(--white) !important; padding: .55rem 1.4rem; font-size: .78rem; }
.btn--nav:hover { background: var(--brown) !important; transform: none; }
.btn--full { width: 100%; text-align: center; display: block; }

/* ── Hero ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 2rem;
  background:
    linear-gradient(to bottom, rgba(15,6,2,.6) 0%, rgba(15,6,2,.22) 45%, rgba(15,6,2,.68) 100%),
    url('https://images.unsplash.com/photo-1557944447-eba6c82816ab?w=1920&q=80&auto=format&fit=crop') center/cover no-repeat;
}
.hero__content { position: relative; z-index: 1; max-width: 820px; }
.hero__eyebrow {
  font-size: .78rem; font-weight: 700; letter-spacing: .35em;
  text-transform: uppercase; color: var(--amber); margin-bottom: .9rem;
}
.hero__title {
  font-family: var(--ff-h); font-size: clamp(3rem, 8vw, 6rem);
  color: var(--white); line-height: 1.08; margin-bottom: 1.25rem;
  text-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.hero__title em { font-style: italic; color: var(--amber); }
.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.3rem); color: rgba(255,255,255,.82);
  font-weight: 300; letter-spacing: .06em; margin-bottom: 2.5rem;
}
.hero__ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 2.25rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.5); font-size: .72rem; letter-spacing: .2em;
  text-transform: uppercase; text-decoration: none;
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ── Section base ── */
.section { padding: 6rem 0; }
.section--alt { background: var(--alt); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section__label {
  display: block; font-size: .75rem; font-weight: 700;
  letter-spacing: .3em; text-transform: uppercase; color: var(--burnt); margin-bottom: .7rem;
}
.section__title {
  font-family: var(--ff-h); font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark); line-height: 1.18; margin-bottom: 1.75rem;
}
.section__head { margin-bottom: 1rem; }
.section__head--center { text-align: center; }
.section__sub { color: var(--muted); font-size: 1.05rem; margin-top: -.75rem; margin-bottom: 1.5rem; }

/* ── About ── */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about__text p { color: var(--muted); margin-bottom: 1.1rem; font-size: 1.05rem; }
.about__cta { margin-top: 1.25rem; display: inline-block; }
.about__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.stat {
  background: var(--white); border-radius: var(--r); padding: 2rem 1.5rem;
  text-align: center; box-shadow: var(--shadow); border-top: 3px solid var(--burnt);
  transition: transform var(--t);
}
.stat:hover { transform: translateY(-4px); }
.stat__num { display: block; font-family: var(--ff-h); font-size: 2.4rem; color: var(--burnt); }
.stat__label { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }

/* ── Amenities ── */
.amenities__grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px,1fr));
  gap: 1.35rem; margin-top: 3rem;
}
.amenity-card {
  background: var(--white); border-radius: var(--r); padding: 2rem 1.75rem;
  box-shadow: var(--shadow); border-bottom: 3px solid transparent;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.amenity-card:hover { transform: translateY(-5px); box-shadow: 0 10px 36px rgba(30,15,10,.14); border-bottom-color: var(--burnt); }
.amenity-card__icon { font-size: 2.25rem; margin-bottom: .9rem; }
.amenity-card h3 { font-family: var(--ff-h); font-size: 1.15rem; color: var(--dark); margin-bottom: .4rem; }
.amenity-card p { color: var(--muted); font-size: .95rem; }

/* ── Rates ── */
.rates__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px,1fr)); gap: 1.75rem; margin-top: 3rem; }
.rate-card {
  background: var(--white); border-radius: var(--r); padding: 2.5rem 2rem;
  box-shadow: var(--shadow); text-align: center; position: relative; overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
}
.rate-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(30,15,10,.16); }
.rate-card--featured { background: var(--dark); }
.rate-card--featured .rate-card__name,
.rate-card--featured .rate-card__price { color: var(--white); }
.rate-card--featured .rate-card__desc,
.rate-card--featured .rate-card__features li { color: rgba(255,255,255,.7); }
.rate-card--featured .rate-card__features li::before { color: var(--amber); }
.rate-card__badge {
  position: absolute; top: 1.1rem; right: 1.1rem;
  background: var(--amber); color: var(--dark);
  font-size: .68rem; font-weight: 700; text-transform: uppercase;
  padding: .25rem .8rem; border-radius: 20px; letter-spacing: .1em;
}
.rate-card__name { font-family: var(--ff-h); font-size: 1.35rem; color: var(--dark); margin-bottom: .9rem; }
.rate-card__price { font-size: 3rem; font-weight: 700; color: var(--burnt); line-height: 1; margin-bottom: .75rem; }
.rate-card__price--sm { font-size: 1.6rem; }
.rate-card__price span { font-size: 1rem; font-weight: 400; color: var(--muted); }
.rate-card--featured .rate-card__price { color: var(--amber); }
.rate-card__desc { color: var(--muted); margin-bottom: 1.25rem; font-size: .95rem; }
.rate-card__features { list-style: none; text-align: left; margin-bottom: 1.75rem; }
.rate-card__features li { padding: .35rem 0; font-size: .95rem; color: var(--muted); }
.rate-card__features li::before { content: '✓ '; color: var(--green); font-weight: 700; }
.rates__note { text-align: center; color: var(--muted); margin-top: 2rem; font-size: .9rem; }

/* ── Gallery ── */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: .85rem; margin-top: 3rem;
}
.gallery__item { border-radius: var(--r); overflow: hidden; position: relative; }
.gallery__item--wide { grid-column: span 2; }
.gp { width: 100%; height: 100%; transition: transform .5s ease; }
.gallery__item:hover .gp { transform: scale(1.04); }
.g1 { background: url('https://images.unsplash.com/photo-1508193638397-1c4234db14d8?w=900&q=80&auto=format&fit=crop') center/cover; }
.g2 { background: url('https://images.unsplash.com/photo-1445307806294-bff7f67ff225?w=600&q=80&auto=format&fit=crop') center/cover; }
.g3 { background: url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=600&q=80&auto=format&fit=crop') center/cover; }
.g4 { background: url('https://images.unsplash.com/photo-1532339142463-fd0a8979791a?w=600&q=80&auto=format&fit=crop') center/cover; }
.g5 { background: url('https://images.unsplash.com/photo-1419242902214-272b3f66ee7a?w=600&q=80&auto=format&fit=crop') center/cover; }
.g6 { background: url('https://images.unsplash.com/photo-1537225228614-56cc3556d7ed?w=600&q=80&auto=format&fit=crop') center/cover; }
.gallery__caption {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; padding: 1.25rem 1.5rem;
  background: linear-gradient(to top, rgba(15,6,2,.72) 0%, transparent 55%);
  opacity: 0; transition: opacity var(--t);
}
.gallery__item:hover .gallery__caption { opacity: 1; }
.gallery__caption span { color: var(--white); font-family: var(--ff-h); font-size: 1.05rem; }
.gallery__note { text-align: center; color: var(--muted); font-size: .82rem; margin-top: 1.25rem; font-style: italic; }

/* ── Contact ── */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 3rem; }
.contact__form { display: flex; flex-direction: column; gap: .9rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.form-field { display: flex; flex-direction: column; gap: .25rem; }
.form-label { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.contact__form input,
.contact__form textarea,
.contact__form select {
  width: 100%; padding: .875rem 1rem; border-radius: 8px;
  border: 1.5px solid #D4C4B0; background: var(--white);
  font-family: var(--ff-b); font-size: .95rem; color: var(--text);
  transition: border-color var(--t), box-shadow var(--t); outline: none;
  appearance: none;
}
.contact__form input:focus,
.contact__form textarea:focus,
.contact__form select:focus { border-color: var(--burnt); box-shadow: 0 0 0 3px rgba(196,98,45,.12); }
.contact__form textarea { resize: vertical; min-height: 120px; }
.contact-info { display: flex; flex-direction: column; gap: 1.75rem; padding-top: .5rem; }
.ci { display: flex; gap: 1rem; align-items: flex-start; }
.ci__icon { font-size: 1.4rem; flex-shrink: 0; line-height: 1; margin-top: .1rem; }
.ci__label { font-size: .72rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--burnt); margin-bottom: .2rem; }
.ci__value { color: var(--text); line-height: 1.55; }

/* ── Footer ── */
.footer { background: var(--dark); color: rgba(255,255,255,.65); padding: 4rem 0 1.75rem; }
.footer__inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.footer__top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer__logo {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--ff-h); font-size: 1.35rem; color: var(--white); margin-bottom: .75rem;
}
.footer__tagline { font-size: .9rem; line-height: 1.65; }
.footer__col h4 { color: var(--white); font-family: var(--ff-h); margin-bottom: 1rem; font-size: .95rem; }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer__links a { color: rgba(255,255,255,.55); text-decoration: none; font-size: .9rem; transition: color var(--t); }
.footer__links a:hover { color: var(--amber); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .75rem; font-size: .82rem;
}

/* ── Toast ── */
.toast {
  position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(120%);
  background: var(--green); color: var(--white);
  padding: 1rem 2rem; border-radius: 8px; font-weight: 700;
  box-shadow: 0 8px 32px rgba(0,0,0,.25); transition: transform .4s ease;
  white-space: nowrap; z-index: 9999; font-size: .95rem;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ── Scroll animations ── */
.fade-in { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px 220px; }
  .gallery__item--wide { grid-column: span 2; }
}

@media (max-width: 640px) {
  .section { padding: 4rem 0; }
  .nav__links {
    display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(20,9,4,.97); padding: 2rem; gap: 1.5rem; border-top: 1px solid rgba(255,255,255,.08);
  }
  .nav__links.open { display: flex; }
  .nav__toggle { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .rates__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
  .gallery__grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery__item { height: 200px; }
  .gallery__item--wide { grid-column: span 1; }
  .hero__ctas { flex-direction: column; align-items: center; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ── Team ── */
.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.team-card {
  text-align: center;
}
.team-card__photo {
  width: 160px; height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.1rem;
  box-shadow: 0 6px 24px rgba(30,15,10,.15);
  border: 4px solid var(--white);
  outline: 3px solid var(--burnt);
  transition: transform var(--t), box-shadow var(--t);
}
.team-card:hover .team-card__photo {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(196,98,45,.25);
}
.team-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.team-card__name {
  font-family: var(--ff-h); font-size: 1.15rem;
  color: var(--dark); margin-bottom: .2rem;
}
.team-card__role {
  font-size: .78rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--burnt);
}
@media (max-width: 900px) {
  .team__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .team__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .team-card__photo { width: 120px; height: 120px; }
}

/* ── Testimonials ── */
.testimonials__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.75rem; margin-top: 3rem; }
.testimonial-card {
  background: var(--white); border-radius: var(--r); padding: 2rem;
  box-shadow: var(--shadow); border-left: 4px solid var(--burnt);
  transition: transform var(--t), box-shadow var(--t);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 10px 36px rgba(30,15,10,.14); }
.testimonial-card__stars { color: var(--amber); font-size: 1.05rem; letter-spacing: .1em; margin-bottom: .85rem; }
.testimonial-card__quote {
  font-family: var(--ff-h); font-size: 1rem; font-style: italic;
  color: var(--dark); line-height: 1.7; margin-bottom: 1.1rem;
}
.testimonial-card__quote::before { content: '\201C'; font-size: 2.5rem; color: var(--burnt); line-height: 0; vertical-align: -1rem; margin-right: .1rem; }
.testimonial-card__author { font-weight: 700; font-size: .9rem; color: var(--text); }
.testimonial-card__location { font-size: .82rem; color: var(--muted); margin-top: .2rem; }

/* ── Map ── */
.map-embed { margin-top: 2.5rem; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); }
.map-embed iframe { display: block; width: 100%; height: 300px; border: none; }

/* ── Animation stagger ── */
.amenities__grid .fade-in:nth-child(2) { transition-delay: .08s; }
.amenities__grid .fade-in:nth-child(3) { transition-delay: .16s; }
.amenities__grid .fade-in:nth-child(4) { transition-delay: .24s; }
.amenities__grid .fade-in:nth-child(5) { transition-delay: .32s; }
.amenities__grid .fade-in:nth-child(6) { transition-delay: .4s; }
.amenities__grid .fade-in:nth-child(7) { transition-delay: .48s; }
.amenities__grid .fade-in:nth-child(8) { transition-delay: .56s; }
.rates__grid .fade-in:nth-child(2) { transition-delay: .12s; }
.rates__grid .fade-in:nth-child(3) { transition-delay: .24s; }
.team__grid .fade-in:nth-child(2) { transition-delay: .1s; }
.team__grid .fade-in:nth-child(3) { transition-delay: .2s; }
.team__grid .fade-in:nth-child(4) { transition-delay: .3s; }
.testimonials__grid .fade-in:nth-child(2) { transition-delay: .12s; }
.testimonials__grid .fade-in:nth-child(3) { transition-delay: .24s; }

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .hero__scroll { animation: none; }
  .fade-in { opacity: 1; transform: none; transition: none; }
}
