/* ============================================================
   KATIJA CORTEZ — Independent Companion
   Light theme — silk / champagne / radiant
   ============================================================ */

/* --- CSS Custom Properties --------------------------------- */
:root {
  --bg: #faf7f3;
  --bg-alt: #f3ede6;
  --bg-card: #ffffff;
  --text: #3d3028;
  --text-muted: #8a7e72;
  --accent: #b76e79;
  --accent-glow: #d4959e;
  --border: #e8e0d6;
  --border-light: #d9d0c6;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-hand: 'Caveat', cursive;
  --max-width: 1100px;
  --nav-height: 70px;
  --transition: 0.3s ease;
  --radius: 2px;
}

/* --- Atmosphere Grain -------------------------------------- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* --- Reset & Base ------------------------------------------ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
  position: relative;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

/* --- Typography -------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(44px, 6vw, 72px); line-height: 1.08; }
h2 { font-size: clamp(34px, 4.5vw, 48px); line-height: 1.15; }
h3 { font-size: 1.35rem; }

.text-accent { color: var(--accent); }

/* --- Utility Classes --------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-glow);
  border-color: var(--accent-glow);
  box-shadow: 0 0 24px rgba(183, 110, 121, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border-light);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* --- Section Headers --------------------------------------- */
.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.section--alt {
  background: var(--bg-alt);
}

/* --- Navigation -------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: rgba(250, 247, 243, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: background var(--transition);
}

.navbar.scrolled {
  background: rgba(250, 247, 243, 0.96);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 24px;
  position: relative;
}

/* Logo — centered */
.logo {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--text);
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  line-height: 1.15;
  flex-shrink: 0;
  padding: 0 16px;
}

.logo span {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 2px;
}

/* Desktop nav — split left/right of logo */
.nav-left,
.nav-right {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-left {
  position: absolute;
  left: 24px;
}

.nav-right {
  position: absolute;
  right: 24px;
}

.nav-left a,
.nav-right a {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  position: relative;
}

.nav-left a::after,
.nav-right a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-left a:hover,
.nav-right a:hover,
.nav-left a.active,
.nav-right a.active {
  color: var(--accent);
}

.nav-left a:hover::after,
.nav-right a:hover::after,
.nav-left a.active::after,
.nav-right a.active::after {
  width: 100%;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
  position: absolute;
  right: 24px;
}

.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: 0.3s;
}

/* Mobile overlay nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 999;
  padding: 32px 24px;
  overflow-y: auto;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  transition: color var(--transition);
}

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

/* --- Touring Banner ---------------------------------------- */
.tour-banner {
  text-align: center;
  padding: 14px 24px;
  background: rgba(183, 110, 121, 0.08);
  border-bottom: 1px solid rgba(183, 110, 121, 0.12);
}

.tour-banner p {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

/* --- Hero — Split Layout ----------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 0;
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.hero-text {
  padding-right: 24px;
}

.hero-label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero-text h1 {
  font-family: var(--font-heading);
  font-size: clamp(52px, 7vw, 80px);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 12px;
}

.hero-location {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 40px;
  max-width: 420px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(61, 48, 40, 0.08);
}

.hero-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  pointer-events: none;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
}

.hero-scroll span {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.scroll-indicator {
  width: 1px;
  height: 48px;
  background: var(--border-light);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}

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

/* --- About ------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.about-image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  transition: filter var(--transition);
  filter: brightness(0.92);
}

.about-image:hover img {
  filter: brightness(1);
}

.about-text .lead {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 28px;
  line-height: 1.5;
}

.about-text p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-text p:last-of-type {
  margin-bottom: 0;
}

/* Stats grid */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.stat-item {
  text-align: center;
  padding: 20px 12px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.stat-item:hover {
  border-color: var(--accent);
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* --- Gallery — Polaroid Style (Signature Move) ------------- */
.polaroid-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px 28px;
  padding: 12px 0;
}

.polaroid {
  background: #ffffff;
  padding: 14px 14px 50px 14px;
  box-shadow:
    0 2px 8px rgba(61, 48, 40, 0.06),
    0 6px 20px rgba(61, 48, 40, 0.04);
  transition:
    transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.45s ease;
  cursor: pointer;
  border-radius: 1px;
}

.polaroid:nth-child(1)  { transform: rotate(-2deg); }
.polaroid:nth-child(2)  { transform: rotate(1.5deg); }
.polaroid:nth-child(3)  { transform: rotate(-1deg); }
.polaroid:nth-child(4)  { transform: rotate(2.5deg); }
.polaroid:nth-child(5)  { transform: rotate(-1.5deg); }
.polaroid:nth-child(6)  { transform: rotate(3deg); }
.polaroid:nth-child(7)  { transform: rotate(-2.5deg); }
.polaroid:nth-child(8)  { transform: rotate(1deg); }
.polaroid:nth-child(9)  { transform: rotate(-0.5deg); }
.polaroid:nth-child(10) { transform: rotate(2deg); }

.polaroid:hover {
  transform: rotate(0deg) translateY(-10px) !important;
  box-shadow:
    0 4px 12px rgba(61, 48, 40, 0.08),
    0 12px 36px rgba(61, 48, 40, 0.06);
  z-index: 2;
}

.polaroid-frame {
  width: 220px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f0ece7;
}

.polaroid-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.polaroid:hover .polaroid-frame img {
  transform: scale(1.03);
}

.polaroid-caption {
  display: block;
  text-align: center;
  font-family: var(--font-hand);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1;
}

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

.rate-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 44px 28px;
  text-align: center;
  transition: all var(--transition);
  border-radius: var(--radius);
  position: relative;
}

.rate-card.featured {
  border-color: var(--accent);
  background: rgba(183, 110, 121, 0.03);
}

.rate-card.featured::before {
  content: 'POPULAR';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  padding: 4px 16px;
  border-radius: var(--radius);
}

.rate-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 32px rgba(183, 110, 121, 0.06);
}

.rate-duration {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 14px;
}

.rate-price {
  font-family: var(--font-heading);
  font-size: 46px;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.rate-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.rate-note {
  font-size: 10px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 10px;
  font-weight: 500;
}

/* --- Services ---------------------------------------------- */
.services-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.service-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 16px;
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-align: center;
  transition: all var(--transition);
  border-radius: var(--radius);
  cursor: default;
  background: var(--bg-card);
}

.service-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(183, 110, 121, 0.03);
}

/* --- Availability ------------------------------------------ */
.availability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.avail-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 22px 16px;
  text-align: center;
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.avail-card:hover {
  border-color: var(--accent);
}

.avail-card .day {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 4px;
  font-weight: 500;
}

.avail-card .time {
  color: var(--accent);
  font-size: 13px;
  font-weight: 400;
}

/* --- Testimonials ------------------------------------------ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 32px 28px;
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.testimonial-card:hover {
  border-color: var(--accent);
}

.testimonial-stars {
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 20px;
}

.testimonial-author strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.testimonial-author span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* --- Contact / CTA ----------------------------------------- */
.cta-section {
  padding: 100px 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(183, 110, 121, 0.04), transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.contact-info h3 {
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-item svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--accent);
}

.contact-item .contact-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-item a {
  color: var(--text);
  font-size: 15px;
  transition: color var(--transition);
}

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

.contact-item span {
  color: var(--text);
  font-size: 15px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  margin-top: 12px;
  transition: all var(--transition);
}

.social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.contact-note h3 {
  margin-bottom: 14px;
}

.contact-note > p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.contact-note ul {
  margin-bottom: 16px;
}

.contact-note ul li {
  color: var(--text-muted);
  font-size: 0.88rem;
  padding: 4px 0 4px 18px;
  position: relative;
}

.contact-note ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 1px;
  background: var(--accent);
}

/* --- Footer ------------------------------------------------ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
  z-index: 1;
  position: relative;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}

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

.footer-bottom {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.footer-credit a {
  color: var(--accent);
  text-decoration: none;
}

.footer-credit a:hover {
  text-decoration: underline;
}

/* --- Lightbox ---------------------------------------------- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(250, 247, 243, 0.98);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox img {
  max-width: 85vw;
  max-height: 85vh;
  object-fit: contain;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--border-light);
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 2001;
  border-radius: var(--radius);
}

.lightbox-close:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--border-light);
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 2001;
  border-radius: var(--radius);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-prev:hover,
.lightbox-next:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* --- Animations -------------------------------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

/* --- Sticky Mobile Bar ------------------------------------- */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(250, 247, 243, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 10px 16px;
  z-index: 998;
  justify-content: center;
  gap: 12px;
}

.mobile-bar .btn {
  flex: 1;
  text-align: center;
  padding: 12px 20px;
  font-size: 11px;
  letter-spacing: 0.12em;
}

/* --- Responsive: 900px ------------------------------------- */
@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

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

  .hero-text {
    text-align: center;
    padding-right: 0;
    order: 2;
  }

  .hero-image-wrapper {
    order: 1;
    max-width: 420px;
    margin: 0 auto;
    padding-top: 80px;
  }

  .hero-tagline {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-scroll {
    display: none;
  }

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

  .about-image img {
    height: 400px;
  }

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

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

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

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

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
  }

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

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

  .polaroid-frame {
    width: 180px;
  }

  .polaroid {
    padding: 10px 10px 40px 10px;
  }
}

/* --- Responsive: 640px ------------------------------------- */
@media (max-width: 640px) {
  .hero {
    padding-top: 80px;
    min-height: auto;
  }

  .hero-image-wrapper {
    padding-top: 80px;
    max-width: 300px;
  }

  .hero-text h1 {
    font-size: 40px;
  }

  .hero-tagline {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  section {
    padding: 72px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .about-image img {
    height: 340px;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .stat-item {
    padding: 16px 8px;
  }

  .stat-value {
    font-size: 24px;
  }

  .stat-label {
    font-size: 9px;
  }

  .polaroid-gallery {
    gap: 24px 16px;
  }

  .polaroid-frame {
    width: 150px;
  }

  .polaroid {
    padding: 8px 8px 34px 8px;
  }

  .polaroid-caption {
    font-size: 1rem;
    margin-top: 8px;
  }

  .rates-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .rate-card {
    padding: 34px 24px;
  }

  .rate-price {
    font-size: 38px;
  }

  .services-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .service-tag {
    padding: 12px 14px;
    font-size: 10px;
  }

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

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

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

  .mobile-bar {
    display: flex;
  }

  body {
    padding-bottom: 70px;
  }

  .footer-links {
    gap: 14px;
  }

  .lightbox-prev,
  .lightbox-next {
    display: none;
  }
}

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

  section {
    padding: 56px 0;
  }

  .hero-text h1 {
    font-size: 34px;
  }

  .hero-image-wrapper {
    max-width: 260px;
    padding-top: 70px;
  }

  .about-image img {
    height: 280px;
  }

  .polaroid-frame {
    width: 130px;
  }

  .polaroid-gallery {
    gap: 20px 12px;
  }
}
