/* =====================================================
   THE LEWIS HOUSE — styles.css
   Design: Warm terracotta / deep walnut / cream
   Fonts: Rufina (display) + Montserrat (body)
   Palette derived from logo: burnt terracotta #B5612A
   ===================================================== */

/* 1. GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Rufina:wght@400;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* 2. DESIGN TOKENS */
:root {
  --dark:        #1C1108;
  --bg-alt:      #2A1C0F;
  --accent:      #B5612A;
  --highlight:   #C8895A;
  --cream:       #F5EEE3;
  --cream-dim:   rgba(245,238,227,0.65);
  --accent-dim:  rgba(181,97,42,0.14);
  --border:      rgba(181,97,42,0.22);

  --ff-display: 'Rufina', Georgia, serif;
  --ff-body:    'Montserrat', sans-serif;

  --max-w: 1200px;
  --nav-h: 72px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --trans: 0.3s var(--ease);
}

/* 3. RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* 4. UTILITY CLASSES */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--dark { background: var(--dark); color: var(--cream); }
.section--alt  { background: var(--bg-alt); color: var(--cream); }
.section--tinted { background: #EFE7D8; }

.eyebrow {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section--dark .eyebrow,
.section--alt .eyebrow { color: var(--highlight); }

h1, h2, h3, h4 { font-family: var(--ff-display); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* 5. BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 2px;
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: var(--trans);
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: var(--cream);
  border: 2px solid var(--accent);
}
.btn--primary:hover {
  background: #9B4F20;
  border-color: #9B4F20;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(181,97,42,0.35);
}
.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(245,238,227,0.55);
}
.btn--outline:hover {
  background: rgba(245,238,227,0.12);
  border-color: var(--cream);
  transform: translateY(-2px);
}
.btn--dark {
  background: var(--dark);
  color: var(--cream);
  border: 2px solid var(--dark);
}
.btn--dark:hover {
  background: var(--bg-alt);
  transform: translateY(-2px);
}

/* 6. NAVBAR */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--trans), box-shadow var(--trans);
}
.navbar.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.35);
}
.navbar__inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.navbar__logo img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
}
.navbar__logo-text {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  color: var(--cream);
  line-height: 1.1;
}
.navbar__logo-sub {
  font-family: var(--ff-body);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--highlight);
  display: block;
}
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.navbar__nav a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.85;
  transition: opacity var(--trans);
  position: relative;
}
.navbar__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--trans);
}
.navbar__nav a:hover { opacity: 1; }
.navbar__nav a:hover::after,
.navbar__nav a.active::after { transform: scaleX(1); }
.navbar__nav a.active { opacity: 1; }
.navbar__book {
  flex-shrink: 0;
  padding: 10px 22px;
  font-size: 0.7rem;
}
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
}
.navbar__hamburger span {
  display: block;
  height: 2px;
  background: var(--cream);
  transition: var(--trans);
  border-radius: 2px;
}
.navbar__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--dark);
  padding: 24px;
  z-index: 999;
  flex-direction: column;
  gap: 20px;
  border-top: 1px solid var(--border);
}
.navbar__mobile a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.85;
}
.navbar__mobile a:hover { opacity: 1; color: var(--highlight); }
.navbar__mobile.open { display: flex; }

/* 7. HERO */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero.loaded .hero__bg { transform: scale(1); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28,17,8,0.38) 0%,
    rgba(28,17,8,0.55) 60%,
    rgba(28,17,8,0.72) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  color: var(--cream);
  max-width: 740px;
  padding: 0 24px;
}
.hero__content .eyebrow { color: var(--highlight); }
.hero__content h1 { margin-bottom: 16px; text-shadow: 0 2px 12px rgba(0,0,0,0.4); }
.hero__subtitle {
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,238,227,0.8);
  margin-bottom: 12px;
}
.hero__tagline {
  font-family: var(--ff-display);
  font-size: clamp(1rem, 2.4vw, 1.4rem);
  font-style: italic;
  color: var(--highlight);
  margin-bottom: 36px;
  display: block;
}
.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* 8. FEATURES STRIP */
.features-strip {
  background: var(--accent);
  padding: 20px 0;
}
.features-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.features-strip__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  padding: 10px 28px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-right: 1px solid rgba(245,238,227,0.3);
}
.features-strip__item:last-child { border-right: none; }
.features-strip__item svg { flex-shrink: 0; opacity: 0.85; }

/* 9. SECTION HEADERS */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header p {
  max-width: 600px;
  margin: 16px auto 0;
  color: rgba(28,17,8,0.65);
  font-size: 0.95rem;
}
.section--dark .section-header p,
.section--alt .section-header p { color: rgba(245,238,227,0.65); }

/* 10. GRID / OFFERINGS */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.tile {
  border-radius: 4px;
  overflow: hidden;
  background: var(--dark);
  position: relative;
}
.tile__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.tile:hover .tile__img { transform: scale(1.05); }
.tile__body {
  padding: 18px 20px 20px;
}
.tile__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 6px;
  display: block;
}
.tile__title {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 4px;
}
.tile__desc {
  font-size: 0.78rem;
  color: rgba(245,238,227,0.6);
  line-height: 1.6;
  margin: 0;
}

/* Offerings 9-grid */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.offering-cell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: default;
}
.offering-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.offering-cell:hover img { transform: scale(1.08); }
.offering-cell__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 16px 14px;
  background: linear-gradient(to top, rgba(28,17,8,0.82) 0%, transparent 100%);
  color: var(--cream);
}
.offering-cell__label span {
  font-family: var(--ff-display);
  font-size: 0.92rem;
  display: block;
}
.offering-cell__label small {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--highlight);
}

/* 11. SPLIT LAYOUT */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split--reverse .split__img { order: 2; }
.split--reverse .split__text { order: 1; }
.split__img {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.split__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}
.split__text h2 { margin-bottom: 20px; }
.split__text p { color: rgba(28,17,8,0.72); font-size: 0.92rem; }
.section--dark .split__text p { color: rgba(245,238,227,0.72); }
.split__text .btn { margin-top: 28px; }

/* 12. STATS */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.stat-cell {
  text-align: center;
  padding: 48px 24px;
  background: var(--bg-alt);
}
.stat-cell__number {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--highlight);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.stat-cell__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,238,227,0.55);
}

/* 13. REVIEWS */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px 28px;
  position: relative;
}
.review-card__quote {
  font-family: var(--ff-display);
  font-size: 2.8rem;
  color: var(--accent);
  line-height: 0.7;
  margin-bottom: 12px;
  display: block;
}
.review-card p {
  font-size: 0.9rem;
  color: rgba(28,17,8,0.8);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 16px;
}
.section--dark .review-card p { color: rgba(245,238,227,0.8); }
.section--dark .review-card { background: rgba(181,97,42,0.12); border-color: rgba(181,97,42,0.28); }
.review-card__attr {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.section--dark .review-card__attr { color: var(--highlight); }

/* 14. SOCIAL LINKS */
.social-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  transition: var(--trans);
  background: rgba(245,238,227,0.06);
}
.social-link:hover {
  background: rgba(245,238,227,0.14);
  border-color: rgba(245,238,227,0.4);
  transform: translateY(-2px);
}
.social-link svg { flex-shrink: 0; }

/* 15. FEED GRID */
.feed-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3px;
}
.feed-cell {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}
.feed-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease), filter 0.5s var(--ease);
}
.feed-cell:hover img {
  transform: scale(1.08);
  filter: brightness(0.8);
}
.feed-cell__overlay {
  position: absolute;
  inset: 0;
  background: rgba(181,97,42,0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--trans);
}
.feed-cell:hover .feed-cell__overlay {
  background: rgba(181,97,42,0.18);
}

/* 16. PAGE HERO (inner pages) */
.page-hero {
  position: relative;
  height: 52vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(28,17,8,0.25) 0%, rgba(28,17,8,0.72) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 2;
  color: var(--cream);
  padding: 40px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.page-hero__content h1 { margin-bottom: 8px; }
.page-hero__content p {
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  color: rgba(245,238,227,0.75);
  text-transform: uppercase;
}

/* 17. TIMELINE */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 2px;
  background: var(--border);
}
.timeline__item {
  position: relative;
  margin-bottom: 36px;
}
.timeline__item::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 8px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--cream);
}
.timeline__year {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  color: var(--accent);
  margin-bottom: 4px;
  display: block;
}
.timeline__text {
  font-size: 0.88rem;
  color: rgba(28,17,8,0.72);
}

/* 18. ROOMS PAGE */
.room-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.room-section:last-child { border-bottom: none; }
.room-section--flip .room-img { order: 2; }
.room-section--flip .room-info { order: 1; }
.room-img {
  border-radius: 4px;
  overflow: hidden;
}
.room-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: 3/2;
  display: block;
}
.room-info__specs {
  display: flex;
  gap: 20px;
  margin: 12px 0 20px;
  flex-wrap: wrap;
}
.room-info__spec {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.room-info__spec svg { opacity: 0.7; }
.room-info p { font-size: 0.9rem; color: rgba(28,17,8,0.72); margin-bottom: 20px; }
.room-inclusions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.room-inclusion-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--accent);
  background: var(--accent-dim);
}

/* Café menu section */
.cafe-section { background: var(--dark); color: var(--cream); padding: 80px 0; }
.menu-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.menu-cat h4 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--highlight);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.menu-cat li {
  font-size: 0.84rem;
  color: rgba(245,238,227,0.78);
  padding: 5px 0;
  border-bottom: 1px solid rgba(181,97,42,0.12);
  line-height: 1.5;
}
.menu-cat li:last-child { border-bottom: none; }

/* 19. GALLERY */
.gallery-controls {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.gallery-filter {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 9px 20px;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--dark);
  cursor: pointer;
  transition: var(--trans);
  background: transparent;
}
.gallery-filter:hover,
.gallery-filter.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--cream);
}

.masonry {
  columns: 3;
  column-gap: 16px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s var(--ease), filter 0.5s var(--ease);
}
.masonry-item:hover img {
  transform: scale(1.04);
  filter: brightness(0.82);
}
.masonry-item.hidden { display: none; }

/* 20. CONTACT PAGE */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info { }
.contact-info h3 { margin-bottom: 24px; }
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.contact-item__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
  display: block;
}
.contact-item p, .contact-item a {
  font-size: 0.88rem;
  color: rgba(28,17,8,0.8);
  line-height: 1.55;
  transition: color var(--trans);
  margin: 0;
}
.contact-item a:hover { color: var(--accent); }

/* Contact form */
.contact-form { }
.contact-form h3 { margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(28,17,8,0.6);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(28,17,8,0.2);
  border-radius: 2px;
  background: #fff;
  font-family: var(--ff-body);
  font-size: 0.88rem;
  color: var(--dark);
  transition: border-color var(--trans), box-shadow var(--trans);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(181,97,42,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M6 8L0 0h12z' fill='%23B5612A'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  text-align: left;
  font-family: var(--ff-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  transition: color var(--trans);
}
.faq-question:hover { color: var(--accent); }
.faq-question svg {
  flex-shrink: 0;
  transition: transform var(--trans);
  color: var(--accent);
}
.faq-question.open svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s;
}
.faq-answer.open {
  max-height: 300px;
  padding-bottom: 20px;
}
.faq-answer p {
  font-size: 0.88rem;
  color: rgba(28,17,8,0.72);
  line-height: 1.7;
}

/* 21. FOOTER */
.footer {
  background: var(--dark);
  color: var(--cream);
  padding: 64px 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer__brand {}
.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer__brand-logo img {
  width: 44px; height: 44px;
  object-fit: cover;
  border-radius: 50%;
}
.footer__brand-name {
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--cream);
  line-height: 1.1;
}
.footer__brand-name small {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--highlight);
}
.footer__tagline {
  font-size: 0.8rem;
  color: rgba(245,238,227,0.55);
  font-style: italic;
  font-family: var(--ff-display);
  line-height: 1.5;
  margin-bottom: 20px;
}
.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(245,238,227,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: var(--trans);
}
.footer__social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.footer__col h5 {
  font-family: var(--ff-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 16px;
}
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul li a {
  font-size: 0.82rem;
  color: rgba(245,238,227,0.65);
  transition: color var(--trans);
}
.footer__col ul li a:hover { color: var(--cream); }
.footer__col p {
  font-size: 0.82rem;
  color: rgba(245,238,227,0.65);
  line-height: 1.6;
}

.footer__bottom {
  border-top: 1px solid rgba(245,238,227,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom p {
  font-size: 0.72rem;
  color: rgba(245,238,227,0.38);
  margin: 0;
}

/* 22. BREADCRUMB / PAGE-INTRO */
.page-intro {
  padding: 72px 0 48px;
  border-bottom: 1px solid var(--border);
}

/* ABOUT PAGE */
.about-story { max-width: 760px; }
.about-story p { font-size: 0.95rem; color: rgba(28,17,8,0.75); }
.press-logos {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
  align-items: center;
}
.press-logo {
  font-family: var(--ff-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(28,17,8,0.4);
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: var(--trans);
}
.press-logo:hover { color: var(--accent); border-color: var(--accent); }

/* ROOM CATEGORIES strip */
.room-types-nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.room-type-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--dark);
  transition: var(--trans);
}
.room-type-tag:hover,
.room-type-tag.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--cream);
}

/* =====================================================
   RESPONSIVE BREAKPOINTS
   ===================================================== */

/* 1024px */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .feed-grid { grid-template-columns: repeat(3, 1fr); }
  .offerings-grid { grid-template-columns: repeat(3, 1fr); }
  .menu-columns { grid-template-columns: repeat(2, 1fr); }
  .split { gap: 40px; }
}

/* 768px */
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .navbar__nav { display: none; }
  .navbar__book { display: none; }
  .navbar__hamburger { display: flex; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split--reverse .split__img { order: 0; }
  .split--reverse .split__text { order: 0; }
  .room-section { grid-template-columns: 1fr; gap: 32px; }
  .room-section--flip .room-img,
  .room-section--flip .room-info { order: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
  .masonry { columns: 2; }
  .menu-columns { grid-template-columns: 1fr; }
  .features-strip__item {
    border-right: none;
    border-bottom: 1px solid rgba(245,238,227,0.2);
    width: 100%;
    justify-content: center;
  }
  .features-strip__item:last-child { border-bottom: none; }
}

/* 480px */
@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .offerings-grid { grid-template-columns: repeat(2, 1fr); }
  .feed-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry { columns: 1; }
  .stats-row { grid-template-columns: 1fr; }
  .hero__ctas { flex-direction: column; align-items: center; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .room-info__specs { gap: 12px; }
  .social-links { flex-direction: column; }
}
