:root {
  --color-primary: #8b6f5c;
  --color-secondary: #c4a882;
  --color-accent: #a4707a;
  --color-background: #faf8f5;
  --color-surface: #ffffff;
  --color-text: #3a3230;
  --color-muted: #8a7e78;
  --color-hero-overlay: rgba(42, 35, 30, 0.55);
  --color-footer-bg: #3a3230;
  --color-footer-text: #e8e0d8;
  --color-border: #e8e0d8;
  --color-input-bg: #f5f0eb;

  --font-heading: "Playfair Display", "Georgia", "Times New Roman", serif;
  --font-body: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;

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

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 3px rgba(58, 50, 48, 0.06), 0 1px 2px rgba(58, 50, 48, 0.04);
  --shadow-md: 0 4px 12px rgba(58, 50, 48, 0.08), 0 2px 6px rgba(58, 50, 48, 0.04);
  --shadow-lg: 0 12px 32px rgba(58, 50, 48, 0.12), 0 4px 12px rgba(58, 50, 48, 0.06);

  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;

  --max-width: 1160px;
  --nav-height: 72px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-accent);
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-text);
}

h1 {
  font-size: 2.25rem;
  letter-spacing: -0.01em;
}

h2 {
  font-size: 1.75rem;
  letter-spacing: -0.005em;
}

h3 {
  font-size: 1.35rem;
}

h4 {
  font-size: 1.125rem;
}

p {
  margin-bottom: var(--space-md);
}

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

/* === Utility === */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
}

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

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.section-title {
  margin-bottom: var(--space-md);
}

.section-subtitle {
  color: var(--color-muted);
  font-size: 1.05rem;
  max-width: 620px;
  line-height: 1.7;
}

.section-header {
  margin-bottom: var(--space-xl);
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* === Navigation === */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background-color: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: background-color var(--transition-base), box-shadow var(--transition-base);
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.navbar-brand:hover {
  color: var(--color-primary);
}

.navbar-nav {
  display: none;
  align-items: center;
  gap: var(--space-lg);
}

.navbar-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-muted);
  text-decoration: none;
  letter-spacing: 0.03em;
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition-fast);
}

.navbar-nav a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--color-accent);
  transition: width var(--transition-base);
}

.navbar-nav a:hover {
  color: var(--color-text);
}

.navbar-nav a:hover::after {
  width: 100%;
}

.navbar-nav a.active {
  color: var(--color-text);
}

.navbar-nav a.active::after {
  width: 100%;
  background-color: var(--color-primary);
}

.navbar-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
  padding: var(--space-sm);
}

.navbar-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-text);
  border-radius: 1px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.navbar-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-background);
  padding: var(--space-xl) var(--space-lg);
  z-index: 999;
  overflow-y: auto;
}

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

.navbar-menu a {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-text);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border);
  transition: color var(--transition-fast), padding-left var(--transition-base);
}

.navbar-menu a:hover {
  color: var(--color-accent);
  padding-left: var(--space-sm);
}

/* === Hero Section === */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(42, 35, 30, 0.3) 0%,
    var(--color-hero-overlay) 50%,
    rgba(42, 35, 30, 0.7) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
  max-width: 780px;
}

.hero-content .section-label {
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-surface);
  line-height: 1.15;
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

/* === Buttons === */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-surface);
}

.btn-primary:hover {
  background-color: var(--color-accent);
  color: var(--color-surface);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-surface);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
  background-color: var(--color-surface);
  color: var(--color-text);
  border-color: var(--color-surface);
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-surface);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-sm {
  font-size: 0.8rem;
  padding: 0.55rem 1.2rem;
}

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

/* === About / Introduction Section === */

.about-section {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

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

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

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

.about-text {
  max-width: 560px;
}

.about-text .section-label {
  margin-bottom: var(--space-sm);
}

.about-text h2 {
  margin-bottom: var(--space-md);
}

.about-text p {
  color: var(--color-muted);
  margin-bottom: var(--space-md);
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.about-feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
}

.about-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--color-input-bg);
  border-radius: var(--radius-sm);
  color: var(--color-accent);
  font-size: 1rem;
}

/* === Services / Cards Section === */

.services-section {
  background-color: var(--color-surface);
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.service-card {
  background-color: var(--color-background);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.service-card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-card-image img {
  transform: scale(1.04);
}

.service-card-body {
  padding: var(--space-lg);
}

.service-card-body h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.2rem;
}

.service-card-body p {
  color: var(--color-muted);
  font-size: 0.925rem;
  margin-bottom: var(--space-md);
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.service-card-link:hover {
  gap: var(--space-sm);
  color: var(--color-accent);
}

.service-card-link::after {
  content: "\2192";
  transition: transform var(--transition-fast);
}

.service-card-link:hover::after {
  transform: translateX(2px);
}

/* === Suites Section === */

.suites-section {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

.suites-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.suite-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  cursor: pointer;
}

.suite-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.suite-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(42, 35, 30, 0.75) 0%,
    rgba(42, 35, 30, 0.1) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-lg);
  transition: background var(--transition-base);
}

.suite-card:hover .suite-card-overlay {
  background: linear-gradient(
    to top,
    rgba(42, 35, 30, 0.85) 0%,
    rgba(42, 35, 30, 0.2) 60%,
    transparent 100%
  );
}

.suite-card-overlay h3 {
  font-family: var(--font-heading);
  color: var(--color-surface);
  font-size: 1.35rem;
  margin-bottom: var(--space-xs);
  letter-spacing: 0.04em;
}

.suite-card-overlay p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  margin-bottom: 0;
}

/* === Highlight / Feature Strip === */

.highlight-section {
  background-color: var(--color-primary);
  color: var(--color-surface);
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.highlight-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  text-align: center;
}

.highlight-item h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-surface);
  margin-bottom: var(--space-xs);
}

.highlight-item p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.04em;
}

/* === Gallery Section === */

.gallery-section {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  background-color: var(--color-surface);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item.featured {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

/* === Testimonial Section === */

.testimonial-section {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  background-color: var(--color-background);
}

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

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
  position: relative;
}

.testimonial-quote::before {
  content: "\201C";
  font-size: 4rem;
  color: var(--color-secondary);
  line-height: 0;
  position: relative;
  top: 0.3em;
  margin-right: var(--space-xs);
}

.testimonial-author {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-muted);
  letter-spacing: 0.03em;
}

/* === Info / Practical Details === */

.info-section {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.info-card {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base);
}

.info-card:hover {
  box-shadow: var(--shadow-md);
}

.info-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--color-input-bg);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  font-size: 1.25rem;
  color: var(--color-accent);
}

.info-card h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.1rem;
}

.info-card p {
  color: var(--color-muted);
  font-size: 0.9rem;
}

/* === Contact Section === */

.contact-section {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  background-color: var(--color-surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-block {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.contact-block-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  background-color: var(--color-input-bg);
  border-radius: var(--radius-md);
  color: var(--color-accent);
  font-size: 1.1rem;
}

.contact-block h4 {
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: var(--space-xs);
  font-size: 0.95rem;
}

.contact-block p {
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-block a {
  color: var(--color-primary);
  font-weight: 500;
}

.contact-block a:hover {
  color: var(--color-accent);
}

/* === Contact Form === */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-body);
  font-size: 0.925rem;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background-color: var(--color-input-bg);
  color: var(--color-text);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(139, 111, 92, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-muted);
  opacity: 0.6;
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

/* === Map Container === */

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 9;
  background-color: var(--color-input-bg);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* === CTA Banner Section === */

.cta-section {
  position: relative;
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  overflow: hidden;
}

.cta-background {
  position: absolute;
  inset: 0;
}

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

.cta-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-hero-overlay);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--font-heading);
  color: var(--color-surface);
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

.cta-content p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-lg);
  font-size: 1.05rem;
}

/* === Boutique Section === */

.boutique-section {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

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

.boutique-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.boutique-images img {
  border-radius: var(--radius-md);
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.boutique-images img:first-child {
  grid-row: span 2;
  aspect-ratio: 3 / 4;
}

.boutique-images img:nth-child(2),
.boutique-images img:nth-child(3) {
  aspect-ratio: 1 / 1;
}

/* === Guide Section === */

.guide-section {
  background-color: var(--color-surface);
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

.guide-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.guide-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background-color: var(--color-background);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.guide-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.guide-card-image {
  width: 80px;
  height: 80px;
  min-width: 80px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.guide-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-card-body h3 {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.guide-card-body p {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 0;
}

/* === History Section === */

.history-section {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  background-color: var(--color-background);
}

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

.history-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}

.history-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

.history-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(42, 35, 30, 0.7), transparent);
  padding: var(--space-lg) var(--space-md) var(--space-md);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  font-style: italic;
}

/* === Food Spots / Listings === */

.listings-section {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

.listings-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.listing-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.listing-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.listing-item h3 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
}

.listing-item span {
  color: var(--color-muted);
  font-size: 0.85rem;
}

/* === Divider === */

.divider {
  width: 60px;
  height: 2px;
  background-color: var(--color-secondary);
  border: none;
  margin: var(--space-lg) 0;
}

.divider-center {
  margin-left: auto;
  margin-right: auto;
}

/* === Footer === */

.footer {
  background-color: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-surface);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  display: block;
}

.footer-description {
  color: rgba(232, 224, 216, 0.7);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
}

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

.footer-links a {
  color: rgba(232, 224, 216, 0.7);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-surface);
  padding-left: var(--space-xs);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  color: rgba(232, 224, 216, 0.7);
  font-size: 0.9rem;
}

.footer-contact-item a {
  color: rgba(232, 224, 216, 0.7);
}

.footer-contact-item a:hover {
  color: var(--color-surface);
}

.footer-bottom {
  border-top: 1px solid rgba(232, 224, 216, 0.15);
  padding-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(232, 224, 216, 0.5);
  margin-bottom: 0;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

.footer-legal a {
  font-size: 0.8rem;
  color: rgba(232, 224, 216, 0.5);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--color-surface);
}

/* === Page Header (Inner Pages) === */

.page-header {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-xl);
  background-color: var(--color-background);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(196, 168, 130, 0.06) 0%,
    transparent 50%,
    rgba(164, 112, 122, 0.04) 100%
  );
  z-index: 0;
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  margin-bottom: var(--space-sm);
}

.page-header p {
  color: var(--color-muted);
  font-size: 1.05rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-bottom: var(--space-lg);
}

.breadcrumb a {
  color: var(--color-muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--color-primary);
}

.breadcrumb span {
  color: var(--color-border);
}

/* === Image with Text Rows === */

.image-text-section {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

.image-text-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin-bottom: var(--space-2xl);
}

.image-text-row:last-child {
  margin-bottom: 0;
}

.image-text-row-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.image-text-row-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* === Scroll Indicator === */

.scroll-indicator {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-indicator-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 1;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.3;
    transform: scaleY(0.6);
  }
}

/* === Spacer for fixed nav === */

.nav-spacer {
  height: var(--nav-height);
}

/* === Loading / Fade-in Support === */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Responsive: 480px === */

@media (min-width: 480px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 2.75rem;
  }

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

  .suite-card {
    aspect-ratio: 3 / 4;
  }

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

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    gap: var(--space-md);
  }
}

/* === Responsive: 768px === */

@media (min-width: 768px) {
  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-title {
    font-size: 3.25rem;
  }

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

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

  .service-card-image {
    height: 240px;
  }

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

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

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

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

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

  .image-text-row {
    grid-template-columns: 1fr 1fr;
  }

  .image-text-row.reverse .image-text-row-image {
    order: 2;
  }

  .highlight-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item.featured {
    grid-column: span 2;
    aspect-ratio: 2 / 1;
  }

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

  .navbar-nav {
    display: flex;
  }

  .navbar-toggle {
    display: none;
  }

  .navbar-menu {
    display: none;
  }
}

/* === Responsive: 1024px === */

@media (min-width: 1024px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .hero-title {
    font-size: 3.75rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-card-image {
    height: 260px;
  }

  .suites-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .suite-card {
    aspect-ratio: 3 / 4;
  }

  .info-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }

  .guide-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery-item.featured {
    grid-column: span 2;
  }

  .cta-content h2 {
    font-size: 2.5rem;
  }
}

/* === Responsive: 1200px+ === */

@media (min-width: 1200px) {
  .container {
    padding-left: var(--space-xl);
    padding-right: var(--space-xl);
  }

  .section {
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-3xl);
  }

  .about-grid {
    gap: var(--space-2xl);
  }

  .hero-title {
    font-size: 4rem;
  }
}

/* === Print Styles === */

@media print {
  .navbar,
  .navbar-menu,
  .scroll-indicator,
  .hero-overlay,
  .hero-background {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }

  .hero {
    min-height: auto;
    padding: var(--space-lg) 0;
  }

  .hero-content {
    color: #000;
  }

  .hero-title,
  .hero-subtitle {
    color: #000;
  }

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

  .service-card,
  .info-card {
    box-shadow: none;
    border: 1px solid #ddd;
  }

  .footer {
    background: #f5f5f5;
    color: #333;
  }
}

/* === Accessibility: Focus Styles === */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* === Accessibility: Reduced Motion === */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .service-card:hover,
  .suite-card:hover img,
  .gallery-item:hover img,
  .btn-primary:hover,
  .btn-secondary:hover,
  .btn-outline:hover {
    transform: none;
  }
}

/* === Skip Link === */

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  background-color: var(--color-primary);
  color: var(--color-surface);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 10000;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: var(--space-md);
}

/* === Selection === */

::selection {
  background-color: rgba(164, 112, 122, 0.2);
  color: var(--color-text);
}

/* === Scrollbar (Webkit) === */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-background);
}

::-webkit-scrollbar-thumb {
  background-color: var(--color-border);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-muted);
}