/* ============================================================
   STUDIO 433 — Global Stylesheet
   Brand: #C9A84C warm gold / #111 deep charcoal / Playfair Display + Inter
   Visual overhaul: real studio photos, warm editorial feel
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --gold: rgb(201, 168, 76);
  --gold-hex: #C9A84C;
  --gold-light: rgba(201, 168, 76, 0.10);
  --gold-mid: rgba(201, 168, 76, 0.30);
  --bg: #111111;
  --bg-surface: #161412;
  --bg-card: #1a1714;
  --bg-warm: #1c1916;
  --text: #ede8e0;
  --text-muted: #9a9288;
  --text-dim: #5a554e;
  --border: rgba(201, 168, 76, 0.14);
  --border-subtle: rgba(255, 255, 255, 0.07);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;
  --radius: 2px;
  --max-w: 1140px;
  --transition: 0.25s ease;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--gold-hex);
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

a:hover {
  color: #fff;
}

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

ul {
  list-style: none;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); }

p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text);
}

.gold { color: var(--gold-hex); }
.muted { color: var(--text-muted); }

/* ---- Layout ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 7rem 0;
}

/* ---- Gold Rule ---- */
.rule {
  width: 48px;
  height: 1px;
  background: var(--gold-hex);
  margin: 0 0 2rem 0;
  opacity: 0.8;
}

.rule.centered {
  margin: 0 auto 2rem auto;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(17, 17, 17, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 36px;
  width: auto;
  filter: brightness(0.95);
  transition: filter var(--transition);
}

.nav-logo img:hover {
  filter: brightness(1.1);
}

/* Fallback text logo if image fails */
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold-hex);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-hex);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-muted);
  transition: all var(--transition);
}

/* ============================================================
   HERO — FULL PHOTO BACKGROUND
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0;
  text-align: center;
}

.hero-photo-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/studio/control-room-2.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  z-index: 0;
  /* Very slight warm scale */
  transform: scale(1.02);
}

/* Multi-layer overlay — dark at bottom & top, warm tint overall */
.hero-photo-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(17, 15, 12, 0.55) 0%,
      rgba(17, 15, 12, 0.30) 40%,
      rgba(17, 15, 12, 0.50) 75%,
      rgba(17, 15, 12, 0.85) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding: 0 2rem;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold-hex);
  margin-bottom: 2.2rem;
  opacity: 0.9;
}

.hero-logo {
  max-width: 460px;
  width: 100%;
  margin: 0 auto 1.8rem;
  display: block;
  filter: drop-shadow(0 8px 40px rgba(201, 168, 76, 0.22));
  
}

.hero-divider {
  width: 36px;
  height: 1px;
  background: var(--gold-hex);
  margin: 0 auto 2.4rem;
  opacity: 0.55;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.8vw, 1.6rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(237, 232, 224, 0.90);
  letter-spacing: 0.02em;
  margin-bottom: 3rem;
  line-height: 1.55;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  border: 1px solid var(--gold-hex);
  color: var(--gold-hex);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: var(--radius);
}

.btn:hover {
  background: var(--gold-hex);
  color: #111;
}

.btn-fill {
  background: var(--gold-hex);
  color: #111;
  font-weight: 700;
}

.btn-fill:hover {
  background: #d4b254;
  color: #111;
  border-color: #d4b254;
}

/* ---- Hero scroll indicator ---- */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.4;
}

.scroll-hint span {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-arrow {
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, var(--gold-hex), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.9; }
}

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.page-header {
  padding: 150px 0 64px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.page-header h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #fff;
  margin-bottom: 1rem;
}

.page-header p {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
  font-family: var(--font-body);
}

/* ============================================================
   SECTION LABELS
   ============================================================ */
.section-label {
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-hex);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--text-muted);
  max-width: 580px;
  font-size: 1rem;
  margin-bottom: 3.5rem;
  font-family: var(--font-body);
  line-height: 1.75;
}

/* ============================================================
   THE ROOMS — PHOTO GRID
   ============================================================ */
.rooms-section {
  background: var(--bg-warm);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 3.5rem;
}

.room-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

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

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

.room-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    transparent 40%,
    rgba(17, 15, 12, 0.75) 80%,
    rgba(17, 15, 12, 0.92) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 2rem 1.8rem;
}

.room-card-label {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-hex);
  margin-bottom: 0.4rem;
}

.room-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.room-card-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(237, 232, 224, 0.72);
  line-height: 1.55;
}

/* ============================================================
   THE EXPERIENCE
   ============================================================ */
.experience-section {
  background: var(--bg);
}

.experience-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.experience-photo {
  position: relative;
  overflow: hidden;
}

.experience-photo img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
}

/* Gold border accent */
.experience-photo::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 1px solid var(--gold-mid);
  z-index: 1;
  pointer-events: none;
}

.experience-text .rule {
  margin-bottom: 2rem;
}

.experience-text h2 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.experience-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.4rem;
}

.experience-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.exp-tag {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-hex);
  border: 1px solid var(--border);
  padding: 0.4rem 0.9rem;
  opacity: 0.85;
}

/* ============================================================
   SERVICES PREVIEW (home) / SERVICES PAGE
   ============================================================ */
.services-preview {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
  margin-top: 0;
}

.service-card {
  background: var(--bg-card);
  padding: 2.8rem 2.2rem;
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold-hex);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  background: #201e1a;
}

.service-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-hex);
  opacity: 0.12;
  line-height: 1;
  margin-bottom: 1.2rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.8rem;
  letter-spacing: 0.01em;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-family: var(--font-body);
}

.service-card .service-link {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-hex);
  margin-top: 1.2rem;
  transition: color var(--transition);
}

.service-card .service-link:hover {
  color: #fff;
}

/* Services page — detail cards */
.service-card .service-details {
  margin-top: 1.2rem;
}

.service-card .service-details li {
  font-size: 0.88rem;
  color: var(--text-dim);
  padding: 0.28rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-family: var(--font-body);
  letter-spacing: 0.03em;
}

.service-card .service-details li::before {
  content: '— ';
  color: var(--gold-hex);
  opacity: 0.5;
}

.pricing-note {
  margin-top: 3rem;
  padding: 1.8rem 2.2rem;
  border: 1px solid var(--border);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.pricing-note p {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-family: var(--font-body);
}

.pricing-note strong {
  color: var(--gold-hex);
}

/* ============================================================
   ABOUT / EQUIPMENT
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: start;
}

.about-text h2 {
  color: #fff;
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  font-family: var(--font-body);
}

.about-text blockquote {
  border-left: 1px solid var(--gold-hex);
  padding: 1.2rem 1.8rem;
  margin: 2rem 0;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--text);
  font-size: 1.15rem;
  background: var(--gold-light);
}

.equipment-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem;
}

.equipment-panel h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold-hex);
  margin-bottom: 1.8rem;
}

.equip-group {
  margin-bottom: 1.8rem;
}

.equip-group-label {
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.7rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.equip-group li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 0.25rem 0;
  font-family: var(--font-body);
}

.equip-group li::before {
  content: '▪ ';
  color: var(--gold-hex);
  font-size: 0.65rem;
}

.philosophy-strip {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4.5rem 0;
  text-align: center;
}

.philosophy-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3.5vw, 2rem);
  font-weight: 700;
  color: var(--gold-hex);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.philosophy-strip p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 1rem auto 0;
  font-family: var(--font-body);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  color: #fff;
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-family: var(--font-body);
}

.contact-detail {
  margin-bottom: 1.5rem;
}

.contact-detail .label {
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-hex);
  margin-bottom: 0.3rem;
}

.contact-detail .value {
  color: var(--text);
  font-size: 1rem;
  font-family: var(--font-body);
}

.social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 0.6rem 1rem;
  transition: all var(--transition);
}

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

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.8rem;
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.09);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  transition: border-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.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='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group select option {
  background: var(--bg-card);
  color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-hex);
}

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

.form-submit {
  width: 100%;
  margin-top: 0.5rem;
}

.form-note {
  text-align: center;
  font-size: 0.76rem;
  color: var(--text-dim);
  margin-top: 1rem;
  font-family: var(--font-body);
  letter-spacing: 0.06em;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--gold-hex);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
}

/* Map Placeholder */
.map-section {
  padding: 0 0 6rem;
}

.map-placeholder {
  width: 100%;
  height: 320px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: var(--text-dim);
}

.map-placeholder .map-icon {
  font-size: 2rem;
  color: var(--gold-hex);
  opacity: 0.4;
}

.map-placeholder p {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-brand img {
  height: 32px;
  width: auto;
  margin-bottom: 0.8rem;
  opacity: 0.9;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-hex);
  letter-spacing: 0.06em;
}

.footer-brand-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 3px;
}

.footer-nav h4 {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: var(--gold-hex);
}

.footer-contact h4 {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.footer-contact p,
.footer-contact a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.9;
  display: block;
}

.footer-contact a:hover {
  color: var(--gold-hex);
}

.footer-copy {
  padding-top: 1.8rem;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  color: var(--text-dim);
}

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,0.05) 0%, transparent 70%);
}

.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
}

.cta-strip p {
  color: var(--text-muted);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  position: relative;
}

.cta-strip .btn {
  position: relative;
}

/* ============================================================
   ABOUT/SERVICES VALUES GRID
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
}

.value-card {
  background: var(--bg-card);
  padding: 2.5rem 2rem;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.7rem;
}

.value-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-family: var(--font-body);
}

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .rooms-grid {
    grid-template-columns: 1fr;
  }

  .experience-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .experience-photo::before {
    display: none;
  }

  .experience-photo img {
    height: 380px;
  }

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

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

@media (max-width: 768px) {
  section {
    padding: 4.5rem 0;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(17,15,12,0.98);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
    backdrop-filter: blur(20px);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .about-split,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 2.5rem;
  }

  .hero-logo {
    max-width: 320px;
  }

  .room-card-overlay {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.2rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .equipment-panel {
    padding: 1.5rem;
  }

  .hero-logo {
    max-width: 260px;
  }
}
