/* ── RESET & BASE ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #2a2a2a;
  background: #fdf8f6;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ── PALETTE ─────────────────────────────────────────── */
:root {
  --burgundy:    #7B2D3B;
  --burgundy-dk: #5e222d;
  --blush:       #F5D5CC;
  --blush-lt:    #FDF0EC;
  --cream:       #fdf8f6;
  --charcoal:    #2a2a2a;
  --mid:         #555;
  --light:       #f0e6e2;
  --white:       #fff;
  --radius:      10px;
  --shadow:      0 4px 24px rgba(123,45,59,.08);
  --shadow-lg:   0 12px 48px rgba(123,45,59,.12);
}

/* ── TYPOGRAPHY ──────────────────────────────────────── */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; line-height: 1.2; color: var(--burgundy); }
.section-eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: .5rem;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 580px;
}
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-desc { margin: 0 auto; }

/* ── LAYOUT ──────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .8rem 1.6rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  transition: background .25s, color .25s, transform .2s, box-shadow .25s;
  white-space: nowrap;
}
.btn--primary {
  background: var(--burgundy);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--burgundy-dk);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn--accent {
  background: var(--blush);
  color: var(--burgundy);
}
.btn--accent:hover {
  background: #f0c4b8;
  transform: translateY(-2px);
}
.btn--outline {
  border: 2px solid var(--white);
  color: var(--white);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--burgundy);
}
.btn--full { width: 100%; }

/* ── HEADER ──────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253,248,246,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--light);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--burgundy);
  line-height: 1.2;
}
.logo-text--light { color: var(--white); }

/* ── NAV ─────────────────────────────────────────────── */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.main-nav a {
  padding: .5rem .9rem;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: background .2s, color .2s;
}
.main-nav a:hover { background: var(--blush-lt); color: var(--burgundy); }

/* mobile toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: .5rem; }
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--burgundy);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(42,42,42,.55) 0%,
    rgba(123,45,59,.45) 60%,
    rgba(94,34,45,.7) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding-top: 72px;
  color: var(--white);
}
.hero-eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: .75rem;
}
.hero-headline {
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.88);
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 2.5rem;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50px;
  padding: .4rem .85rem;
  font-size: .8rem;
  color: var(--white);
  backdrop-filter: blur(4px);
}
.badge svg { flex-shrink: 0; }

/* ── ROOMS ───────────────────────────────────────────── */
.rooms { background: var(--white); }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.room-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.room-card-img { overflow: hidden; }
.room-card-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform .5s;
}
.room-card:hover .room-card-img img { transform: scale(1.05); }
.room-card-body { padding: 1.5rem; }
.room-card-title {
  font-size: 1.3rem;
  margin-bottom: .5rem;
  color: var(--burgundy);
}
.room-card-desc {
  font-size: .95rem;
  color: var(--mid);
  margin-bottom: 1rem;
  line-height: 1.65;
}
.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem .75rem;
}
.room-features li {
  font-size: .82rem;
  font-weight: 500;
  color: var(--burgundy);
  background: var(--blush-lt);
  padding: .3rem .65rem;
  border-radius: 50px;
}
.rooms-note {
  text-align: center;
  font-size: .95rem;
  color: var(--mid);
}
.rooms-note a {
  color: var(--burgundy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── ABOUT ───────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-images {
  position: relative;
  min-height: 500px;
}
.about-img-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-sub {
  position: absolute;
  bottom: -2rem;
  right: -1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}
.about-img-sub img { width: 100%; height: 100%; object-fit: cover; }
.about-content .section-title { margin-bottom: 1.25rem; }
.about-content p {
  color: var(--mid);
  margin-bottom: 1rem;
  line-height: 1.75;
}
.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--light);
}
.stat-number {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--burgundy);
}
.stat-label {
  font-size: .82rem;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ── AREA ────────────────────────────────────────────── */
.area { background: var(--white); }
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.area-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
}
.area-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.area-card-img { overflow: hidden; }
.area-card-img img { width: 100%; height: 220px; object-fit: cover; transition: transform .5s; }
.area-card:hover .area-card-img img { transform: scale(1.05); }
.area-card-body { padding: 1.5rem; }
.area-card-title {
  font-size: 1.2rem;
  margin-bottom: .5rem;
  color: var(--burgundy);
}
.area-card-body p {
  font-size: .93rem;
  color: var(--mid);
  line-height: 1.7;
}

/* ── TESTIMONIALS ────────────────────────────────────── */
.testimonials {
  background: var(--burgundy);
  padding: 4rem 0;
  overflow: hidden;
}
.testimonials-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.testimonials blockquote {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 1.75rem;
  backdrop-filter: blur(4px);
}
.testimonials blockquote p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,.92);
  font-style: italic;
  margin-bottom: 1rem;
}
.testimonials blockquote footer {
  font-size: .82rem;
  font-style: normal;
  font-weight: 600;
  color: var(--blush);
  letter-spacing: .04em;
}

/* ── CONTACT ─────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-intro {
  color: var(--mid);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item dt {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--burgundy);
  margin-bottom: .25rem;
}
.contact-item dt svg { flex-shrink: 0; }
.contact-item dd a,
.contact-item dd {
  font-size: 1rem;
  color: var(--charcoal);
  transition: color .2s;
  word-break: break-word;
}
.contact-item dd a:hover { color: var(--burgundy); text-decoration: underline; }

/* form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.form-title {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: var(--burgundy);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--burgundy);
  margin-bottom: .4rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--light);
  border-radius: 8px;
  font-family: inherit;
  font-size: .95rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(123,45,59,.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #aaa; }
.form-success {
  margin-top: 1rem;
  padding: 1rem;
  background: #e8f5e9;
  border-radius: 8px;
  color: #2e7d32;
  font-size: .9rem;
  text-align: center;
}

/* ── FOOTER ──────────────────────────────────────────── */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.7);
  padding: 3rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}
.footer-brand { max-width: 320px; }
.footer-tagline {
  margin-top: .75rem;
  font-size: .9rem;
  line-height: 1.65;
  color: rgba(255,255,255,.55);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.footer-links a {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  transition: color .2s;
}
.footer-links a:hover { color: var(--blush); }
.footer-copy {
  grid-column: 1 / -1;
  padding-top: 2rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  display: flex;
  flex-wrap: wrap;
  gap: .25rem 1.5rem;
}
.footer-copy a { color: rgba(255,255,255,.55); transition: color .2s; }
.footer-copy a:hover { color: var(--blush); }

/* ── ANIMATIONS ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── MOBILE NAV ──────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(253,248,246,.98);
    backdrop-filter: blur(12px);
    padding: 1rem 1.5rem 1.5rem;
    border-bottom: 1px solid var(--light);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    transition: transform .35s ease;
    z-index: 99;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: .25rem; }
  .main-nav a { padding: .75rem 1rem; border-radius: 8px; }
  .main-nav li:last-child a { margin-top: .5rem; text-align: center; }
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .about-images { min-height: 360px; }
  .about-img-sub { right: 1rem; bottom: -1.5rem; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .section { padding: 3.5rem 0; }
  .hero-content { padding-top: 96px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .about-stats { flex-direction: column; gap: 1.25rem; }
  .footer-copy { flex-direction: column; gap: .25rem; }
}
