﻿/* ============================================================
   ORIENTAL SPA EL NIDO
   Warm Linen · Brand Teal · Amber · Deep Blue-Dark
   DM Serif Display + DM Sans
   ============================================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
  --linen:        #F5EEE1;
  --linen-2:      #EDE3CF;
  --linen-3:      #E2D4BC;
  --dark:         #1A2428;
  --dark-2:       #1F2D33;
  --dark-3:       #283840;
  --teal:         #2898B5;
  --teal-light:   #52BAD0;
  --teal-dark:    #1C7A90;
  --teal-pale:    rgba(40,152,181,0.08);
  --amber:        #B87E38;
  --amber-light:  #C4935C;
  --text:         #1B1813;
  --text-muted:   #7A6E5D;
  --border:       rgba(27,24,19,0.12);
  --border-light: rgba(27,24,19,0.07);
}

body {
  background: var(--linen);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  line-height: 1.7;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }

/* â”€â”€ GRAIN â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.grain {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9998;
  opacity: 0.038;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* â”€â”€ KEYFRAMES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes marquee  { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes fadeUp   { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

/* â”€â”€ SCROLL ANIMATIONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.animate {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate.in-view       { opacity: 1; transform: translateY(0); }
.animate-delay-1       { transition-delay: 0.1s; }
.animate-delay-2       { transition-delay: 0.22s; }
.animate-delay-3       { transition-delay: 0.34s; }

/* â”€â”€ NAVBAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.navbar {
  position: fixed; width: 100%; top: 0; left: 0; z-index: 1000;
  padding: 22px 7%;
  display: flex; justify-content: space-between; align-items: center;
  transition: background 0.4s ease, padding 0.35s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
  background: rgba(245,238,225,0.94);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  padding: 14px 7%;
  box-shadow: 0 1px 0 var(--border);
}

/* Navbar logo — inline styles handle the sizing, class is for hover transition */
.navbar a[href="index.html"] {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}
.navbar a[href="index.html"]:hover {
  transform: scale(1.07);
  box-shadow: 0 4px 18px rgba(40,152,181,0.38) !important;
}

/* Hero brand panel (logo showcase) */
.hero-brand-panel {
  border-radius: 28px;
  overflow: hidden;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0; padding: 0;
  box-shadow: 0 10px 40px rgba(26,36,40,0.22), 0 32px 80px rgba(26,36,40,0.14);
  position: relative;
}
.hero-brand-logo {
  width: 100%;
  aspect-ratio: 1;
  display: block;
}
.hero-brand-meta {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  background: var(--teal); width: 100%;
  padding: 18px 24px 22px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-brand-meta span {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(245,238,225,0.65);
}
.hero-brand-meta strong {
  font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(245,238,225,0.9);
}

/* Footer logo */
.footer-logo-img {
  height: 72px; width: 72px;
  border-radius: 14px; overflow: hidden;
  display: block; margin-bottom: 12px;
  opacity: 0.92; flex-shrink: 0;
}

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: rgba(27,24,19,0.62);
  font-size: 0.88rem; font-weight: 500; letter-spacing: 0.03em;
  position: relative; padding-bottom: 3px;
  transition: color 0.25s ease;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--teal);
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-links a:hover { color: var(--dark); }
.nav-links a:hover::after { width: 100%; }
.nav-links a:focus-visible { outline: 2px solid var(--teal); outline-offset: 4px; border-radius: 2px; }

.nav-btn {
  background: var(--dark); color: var(--linen);
  padding: 11px 24px; border-radius: 50px;
  font-weight: 700; font-size: 0.82rem; letter-spacing: 0.05em;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease, background 0.25s ease;
  box-shadow: 0 2px 8px rgba(27,24,19,0.18), 0 6px 20px rgba(27,24,19,0.1);
}
.nav-btn:hover  { transform: translateY(-2px) scale(1.03); background: var(--dark-2); box-shadow: 0 4px 16px rgba(27,24,19,0.22), 0 12px 32px rgba(27,24,19,0.12); }
.nav-btn:active { transform: scale(0.96); }
.nav-btn:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }

/* â”€â”€ BUTTONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn-primary {
  display: inline-block; padding: 15px 34px; border-radius: 50px;
  background: var(--teal); color: #fff;
  font-weight: 700; font-size: 0.83rem; letter-spacing: 0.07em; text-transform: uppercase;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(40,152,181,0.3), 0 8px 24px rgba(40,152,181,0.15);
}
.btn-primary:hover  { transform: translateY(-3px) scale(1.02); box-shadow: 0 6px 20px rgba(40,152,181,0.38), 0 16px 40px rgba(40,152,181,0.18); }
.btn-primary:active { transform: scale(0.97); }
.btn-primary:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }

.btn-ghost {
  display: inline-block; padding: 15px 28px; border-radius: 50px;
  background: transparent; color: var(--text);
  font-weight: 600; font-size: 0.83rem; letter-spacing: 0.05em;
  border: 1.5px solid var(--border);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              border-color 0.25s ease, background 0.25s ease;
}
.btn-ghost:hover  { transform: translateY(-2px); border-color: var(--teal); background: var(--teal-pale); }
.btn-ghost:active { transform: scale(0.97); }
.btn-ghost:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }

/* â”€â”€ SECTION TYPOGRAPHY â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section-tag {
  display: inline-block; color: var(--teal);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 18px;
}

/* â”€â”€ HERO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero {
  min-height: 100vh;
  padding: 140px 7% 80px;
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 60px;
  align-items: center;
  background: var(--linen);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(40,152,181,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-left {
  display: flex; flex-direction: column; gap: 28px;
  max-width: 640px;
}

.hero-location {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--teal); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}
.hero-location::before {
  content: '';
  width: 28px; height: 1px; background: var(--teal); display: inline-block;
}

.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3.4rem, 6.5vw, 6rem);
  line-height: 1.0; letter-spacing: -0.04em; color: var(--dark);
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}
.hero h1 em { font-style: italic; color: var(--teal); }

.hero-sub {
  font-size: 1rem; line-height: 1.8;
  color: var(--text-muted); font-weight: 300;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.44s both;
}

.hero-buttons {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.56s both;
}

/* Hero right */
.hero-right {
  position: relative;
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero-image-wrap {
  border-radius: 28px; overflow: hidden;
  box-shadow: 0 8px 32px rgba(27,24,19,0.12), 0 32px 80px rgba(27,24,19,0.10);
  position: relative;
}

.hero-image-wrap img {
  width: 100%; height: 540px; object-fit: cover; display: block;
}

.hero-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(27,24,19,0.2) 100%);
}

.hero-badge {
  position: absolute; bottom: -18px; left: -22px;
  background: var(--linen); border-radius: 18px;
  padding: 16px 20px;
  box-shadow: 0 4px 20px rgba(27,24,19,0.12), 0 12px 40px rgba(27,24,19,0.08);
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--border-light);
}
.badge-num {
  font-family: 'DM Serif Display', serif; font-size: 2rem;
  font-weight: 400; color: var(--teal); line-height: 1;
}
.badge-text {
  font-size: 0.78rem; font-weight: 600;
  color: var(--text-muted); line-height: 1.4; text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* â”€â”€ TICKER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ticker-bar {
  background: var(--teal); padding: 18px 0; overflow: hidden;
}

.ticker-track {
  display: flex; white-space: nowrap;
  animation: marquee 32s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }

.ticker-item {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 0 36px;
  font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(245,238,225,0.82);
}
.ticker-dot { color: rgba(245,238,225,0.5); font-size: 0.42rem; }

/* â”€â”€ ABOUT SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.about-section {
  padding: 120px 8%;
  background: var(--linen);
}

.about-top {
  max-width: 800px; margin: 0 auto 64px; text-align: center;
}

.about-top h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.12; letter-spacing: -0.03em; margin-bottom: 20px;
}
.about-top h2 em { font-style: italic; }

.about-intro {
  font-size: 1.05rem; color: var(--text-muted);
  line-height: 1.85; font-weight: 300; max-width: 640px; margin: 0 auto;
}

.about-image-strip {
  position: relative; border-radius: 20px; overflow: hidden;
  margin-bottom: 64px;
  box-shadow: 0 4px 24px rgba(27,24,19,0.08), 0 16px 56px rgba(27,24,19,0.07);
}
.about-image-strip img { width: 100%; height: 420px; object-fit: cover; display: block; }
.strip-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(27,24,19,0.08) 0%, transparent 40%, transparent 60%, rgba(27,24,19,0.08) 100%);
}

.about-pillars {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--border);
}

.pillar {
  padding: 40px 32px 40px 0;
  border-right: 1px solid var(--border);
}
.pillar:last-child { border-right: none; padding-right: 0; padding-left: 32px; }
.pillar:nth-child(2),
.pillar:nth-child(3) { padding: 40px 32px; }

.pillar-num {
  display: block; font-family: 'DM Serif Display', serif;
  font-style: italic; font-size: 1.8rem; color: var(--teal);
  opacity: 0.5; margin-bottom: 12px; line-height: 1;
}

.pillar h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem; font-weight: 400;
  letter-spacing: -0.01em; color: var(--dark);
  margin-bottom: 10px;
}

.pillar p {
  font-size: 0.88rem; color: var(--text-muted); line-height: 1.72; font-weight: 300;
}

/* â”€â”€ SERVICES MENU â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.services-section {
  padding: 100px 8%;
  background: var(--linen-2);
}

.services-header {
  margin-bottom: 56px;
}

.services-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.06; letter-spacing: -0.03em; color: var(--dark);
}
.services-header h2 em { font-style: italic; }

.services-list { border-top: 1px solid var(--border); }

.service-divider { height: 1px; background: var(--border); }

.service-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px; padding: 36px 0;
  align-items: start;
  cursor: pointer;
  transition: background 0.2s ease;
}
.service-row:hover { background: var(--teal-pale); margin: 0 -8px; padding: 36px 8px; border-radius: 12px; }

.service-num {
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-size: 1.2rem; color: var(--teal); padding-top: 3px; line-height: 1;
}

.service-body { display: flex; flex-direction: column; gap: 10px; }

.service-title-row {
  display: flex; align-items: baseline; gap: 20px; flex-wrap: wrap;
}

.service-title-row h3 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400; letter-spacing: -0.02em; color: var(--dark);
  flex: 1;
}

.service-meta {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-muted); white-space: nowrap;
}

.service-link {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--teal); white-space: nowrap;
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap 0.25s ease, color 0.25s ease;
}
.service-link span { transition: transform 0.25s ease; }
.service-link:hover { color: var(--teal-dark); gap: 8px; }
.service-link:hover span { transform: translateX(3px); }
.service-link:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 2px; }

.service-body p {
  font-size: 0.92rem; color: var(--text-muted);
  line-height: 1.75; font-weight: 300; max-width: 680px;
}

/* â”€â”€ TREATMENT SHOWCASE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.showcase-section {
  padding: 100px 8%;
  background: var(--dark-2);
}

.section-header.center { text-align: center; margin-bottom: 56px; }
.section-header.center .section-tag { color: var(--teal-light); }
.section-header.center h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.08; letter-spacing: -0.03em; color: var(--linen);
}
.section-header.center h2 em { font-style: italic; }

.showcase-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.showcase-stack { display: flex; flex-direction: column; gap: 16px; }

.showcase-card {
  position: relative; border-radius: 20px; overflow: hidden; cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.showcase-card:hover  { transform: translateY(-8px) scale(1.01); }
.showcase-card:active { transform: scale(0.98); }
.showcase-card:focus-visible { outline: 2px solid var(--teal-light); outline-offset: 3px; }

.showcase-tall {
  height: 520px;
  background: var(--dark-3);
}
.showcase-half {
  height: 252px;
  flex: 1;
  background: var(--dark-3);
}

.showcase-wide {
  position: relative; border-radius: 20px; overflow: hidden;
  height: 200px; cursor: pointer;
  background: var(--dark-3);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.showcase-wide:hover  { transform: translateY(-6px); }
.showcase-wide:active { transform: scale(0.99); }
.showcase-wide:focus-visible { outline: 2px solid var(--teal-light); outline-offset: 3px; }

.showcase-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  mix-blend-mode: normal;
}
.showcase-card:hover .showcase-bg-img,
.showcase-wide:hover .showcase-bg-img { transform: scale(1.06); }

.showcase-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.72) 100%);
  transition: background 0.4s ease;
}
.showcase-card:hover .showcase-overlay,
.showcase-wide:hover .showcase-overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.82) 100%);
}

.showcase-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 32px; z-index: 2;
  display: flex; flex-direction: column; gap: 4px;
}

.showcase-num {
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-size: 0.85rem; color: var(--teal-light);
  letter-spacing: 0.1em;
  display: flex; align-items: center; gap: 8px;
}
.showcase-num::before {
  content: ''; display: inline-block;
  width: 20px; height: 1px; background: var(--teal-light); opacity: 0.6;
}

.showcase-card h3, .showcase-wide h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem; font-weight: 400; letter-spacing: -0.02em; color: var(--linen);
}

.showcase-wide .showcase-content {
  flex-direction: row; align-items: center; justify-content: space-between;
  padding: 28px 40px;
}
.showcase-wide h3 { font-size: 2.2rem; }
.showcase-wide p {
  font-size: 0.85rem; color: rgba(245,238,225,0.55);
  font-weight: 300; letter-spacing: 0.04em;
}

/* â”€â”€ PULL QUOTE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.quote-section {
  padding: 100px 8%;
  background: var(--linen);
  display: flex; flex-direction: column; align-items: center; gap: 36px;
}

.quote-rule {
  width: 100%; height: 1px; background: var(--border);
}

.quote-section blockquote {
  max-width: 900px; text-align: center; position: relative;
}

.quote-mark {
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-size: 6rem; line-height: 0; color: var(--teal);
  opacity: 0.25; display: block; margin-bottom: 8px;
}

.quote-section blockquote p {
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.25; letter-spacing: -0.02em; color: var(--dark);
}
.quote-section blockquote p em { color: var(--teal); }

/* â”€â”€ GALLERY â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.gallery-section {
  padding: 100px 8%;
  background: var(--linen-2);
}

.section-header { margin-bottom: 52px; }
.section-header .section-tag { color: var(--teal); }
.section-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.08; letter-spacing: -0.03em; color: var(--dark);
}
.section-header h2 em { font-style: italic; }

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.gallery-feature {
  border-radius: 18px; overflow: hidden;
  cursor: pointer;
}
.gallery-feature img {
  width: 100%; height: 540px; object-fit: cover; display: block;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-feature:hover img { transform: scale(1.05); }
.gallery-feature:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 18px; }

.gallery-side {
  display: flex; flex-direction: column; gap: 16px;
}

.gallery-item {
  border-radius: 18px; overflow: hidden; cursor: pointer; flex: 1;
}
.gallery-item img {
  width: 100%; height: 262px; object-fit: cover; display: block;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 18px; }

.gallery-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.gallery-item-small {
  border-radius: 18px; overflow: hidden; cursor: pointer;
}
.gallery-item-small img {
  width: 100%; height: 238px; object-fit: cover; display: block;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item-small:hover img { transform: scale(1.05); }

/* â”€â”€ REVIEWS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.reviews-section {
  padding: 100px 8%;
  background: var(--dark-2);
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}

.center-tag { color: var(--teal-light); display: block; margin-bottom: 24px; }

.featured-review {
  max-width: 860px; margin-bottom: 72px;
}
.featured-review p {
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.3; letter-spacing: -0.02em;
  color: var(--linen); margin-bottom: 20px;
}
.featured-review cite {
  font-family: 'DM Sans', sans-serif; font-style: normal;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--teal-light);
}

.reviews-secondary {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 0; max-width: 920px; width: 100%;
  border-top: 1px solid rgba(245,238,225,0.10);
  padding-top: 52px;
}

.review-divider { width: 1px; background: rgba(245,238,225,0.10); margin: 0 48px; }

.review-small p {
  font-size: 1rem; font-style: italic;
  color: rgba(245,238,225,0.65);
  line-height: 1.75; font-weight: 300; margin-bottom: 16px;
}
.review-small cite {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--teal-light);
}

/* â”€â”€ CTA SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cta-section {
  padding: 120px 8%;
  background: var(--teal);
  display: flex; flex-direction: column; align-items: center; text-align: center;
}

.cta-tag { color: rgba(245,238,225,0.7) !important; margin-bottom: 18px; }

.cta-section h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.06; letter-spacing: -0.04em; color: #fff; margin-bottom: 18px;
}
.cta-section h2 em { font-style: italic; color: rgba(255,255,255,0.75); }

.cta-section p {
  font-size: 1rem; color: rgba(255,255,255,0.65);
  font-weight: 300; margin-bottom: 40px;
}

.btn-cta {
  display: inline-block; padding: 18px 52px; border-radius: 50px;
  background: var(--linen); color: var(--teal-dark);
  font-weight: 800; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(27,24,19,0.2), 0 12px 40px rgba(27,24,19,0.12);
}
.btn-cta:hover  { transform: translateY(-3px) scale(1.02); box-shadow: 0 8px 32px rgba(27,24,19,0.24), 0 20px 56px rgba(27,24,19,0.16); }
.btn-cta:active { transform: scale(0.97); }
.btn-cta:focus-visible { outline: 2px solid var(--linen); outline-offset: 3px; }

/* â”€â”€ FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
footer {
  background: var(--dark);
  padding: 72px 8% 36px;
}

.footer-inner {
  display: grid; grid-template-columns: 1fr auto auto; gap: 80px;
  align-items: start;
  padding-bottom: 52px; margin-bottom: 36px;
  border-bottom: 1px solid rgba(245,238,225,0.08);
}

.footer-logo {
  display: block; font-family: 'DM Serif Display', serif;
  font-size: 1.5rem; font-weight: 400; color: var(--linen);
  letter-spacing: -0.01em; margin-bottom: 10px;
}
.footer-logo em { font-style: italic; color: var(--teal-light); }
.footer-brand p { font-size: 0.875rem; color: rgba(245,238,225,0.38); }

.footer-nav, .footer-social {
  display: flex; flex-direction: column; gap: 14px;
}
.footer-nav a, .footer-social a {
  font-size: 0.87rem; font-weight: 500;
  color: rgba(245,238,225,0.45);
  transition: color 0.25s ease;
}
.footer-nav a:hover, .footer-social a:hover { color: var(--teal-light); }
.footer-nav a:focus-visible,
.footer-social a:focus-visible { outline: 2px solid var(--teal-light); outline-offset: 3px; border-radius: 2px; }

.footer-copy {
  font-size: 0.76rem; color: rgba(245,238,225,0.18); text-align: center;
}

/* â”€â”€ FLOATING BUTTONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.whatsapp-float, .instagram-float {
  position: fixed; width: 54px; height: 54px; right: 24px;
  border-radius: 50%; display: flex; justify-content: center; align-items: center;
  z-index: 9999;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}
.whatsapp-float  { bottom: 24px; background: #25D366; box-shadow: 0 4px 14px rgba(37,211,102,0.35), 0 10px 26px rgba(0,0,0,0.18); }
.instagram-float { bottom: 90px; background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4); box-shadow: 0 4px 14px rgba(221,42,123,0.35), 0 10px 26px rgba(0,0,0,0.18); }
.whatsapp-float:hover, .instagram-float:hover { transform: scale(1.12) translateY(-2px); }
.whatsapp-float:active, .instagram-float:active { transform: scale(0.94); }
.whatsapp-float img, .instagram-float img { width: 27px; height: 27px; }
.whatsapp-float:focus-visible, .instagram-float:focus-visible { outline: 2px solid white; outline-offset: 3px; }

/* â”€â”€ RESPONSIVE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; gap: 52px; padding: 140px 6% 80px; }
  .hero-right { max-width: 600px; }
  .hero-image-wrap img { height: 420px; }
  .about-pillars { grid-template-columns: repeat(2, 1fr); }
  .pillar:nth-child(2) { border-right: none; }
  .pillar:nth-child(3) { border-right: 1px solid var(--border); padding-left: 0; }
  .pillar:last-child { padding-left: 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .about-section, .services-section, .showcase-section,
  .quote-section, .gallery-section, .reviews-section, .cta-section { padding: 80px 6%; }
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-tall { height: 400px; }
  .showcase-stack { flex-direction: row; }
  .showcase-half { height: 220px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-feature img { height: 380px; }
  .reviews-secondary { grid-template-columns: 1fr; }
  .review-divider { display: none; }
  .review-small:first-child { padding-bottom: 32px; border-bottom: 1px solid rgba(245,238,225,0.10); }
  .review-small:last-child { padding-top: 32px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero h1 { font-size: clamp(2.8rem, 10vw, 4rem); }
  .about-pillars { grid-template-columns: 1fr; }
  .pillar, .pillar:nth-child(2), .pillar:nth-child(3), .pillar:last-child {
    padding: 28px 0; border-right: none; border-bottom: 1px solid var(--border);
  }
  .service-row { grid-template-columns: 48px 1fr; }
  .service-title-row { flex-direction: column; gap: 8px; }
  .showcase-stack { flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 540px) {
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .gallery-row { grid-template-columns: 1fr; }
  .gallery-item-small img { height: 220px; }
  .showcase-wide .showcase-content { flex-direction: column; align-items: flex-start; gap: 8px; }
}


