/* ==========================================================================
   1. VARIABLES & RESET
   ========================================================================== */
:root {
  --ink: #1B2B22;
  --ink-2: #243528;
  --ink-3: #2E4433;
  --parchment: #F5F0E6;
  --parchment-2: #ECE3D0;
  --moss: #7C8A6C;
  --brass: #BB8A4C;
  --brass-light: #D8B784;
  --clay: #C97B5B;
  --charcoal: #241F1A;
  --cream: #F5F0E6;
  --line-dark: rgba(245,240,230,0.18);
  --line-light: rgba(36,31,26,0.18);
  --maxw: 1180px;
}

* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
}

/* Ensure proper box model and width boundaries */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Prevents horizontal scroll/shrinking */
}

/* BAD ❌ */
.container {
  width: 1200px;
}

/* GOOD ✅ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px; /* Keeps safe padding on smaller screens */
}

img, svg, video {
  max-width: 100%;
  height: auto;
}

html { 
  scroll-behavior: smooth; 
}

body {
  font-family: 'Work Sans', sans-serif;
  background: var(--parchment);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { 
  color: inherit; 
  text-decoration: none; 
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.wrap { 
  max-width: var(--maxw); 
  margin: 0 auto; 
  padding: 0 28px; 
}

.eyebrow {
  font-family: 'Work Sans', sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--brass);
  display: inline-block;
}

section { position: relative; }
::selection { background: var(--brass); color: var(--ink); }


/* ==========================================================================
   2. BUTTONS & UI ELEMENTS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  white-space: nowrap;
}

.btn-brass { background: var(--brass); color: var(--ink); }
.btn-brass:hover { background: var(--brass-light); transform: translateY(-1px); }

.btn-outline { border-color: var(--line-dark); color: var(--cream); }
.btn-outline:hover { background: rgba(245,240,230,0.08); }

.btn-outline-dark { border-color: var(--line-light); color: var(--charcoal); }
.btn-outline-dark:hover { background: rgba(36,31,26,0.06); }


/* ==========================================================================
   3. MARQUEE & HEADER / NAV
   ========================================================================== */
.marquee-bar {
  background: var(--ink);
  color: var(--brass-light);
  font-size: 13px;
  letter-spacing: .03em;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid var(--line-dark);
}
.marquee-track {
  display: inline-flex;
  padding: 9px 0;
  animation: scroll-left 26s linear infinite;
}
.marquee-track span { padding: 0 32px; display: inline-flex; align-items: center; gap: 10px; }
.marquee-track span::after { content: "✦"; color: var(--moss); }

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

header {
  position: sticky; 
  top: 0; 
  z-index: 100;
  background: rgba(27,43,34,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-dark);
}

.nav {
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  padding: 14px 28px; 
  max-width: var(--maxw); 
  margin: 0 auto;
}

.logo img { height: 38px; width: auto; }

.wordmark { display: flex; align-items: center; gap: 10px; }
.wordmark .mark {
  width: 34px; 
  height: 34px; 
  flex-shrink: 0;
  background: var(--brass);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10c18 15 28 30 28 46a28 28 0 1 1-56 0c0-16 10-31 28-46z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10c18 15 28 30 28 46a28 28 0 1 1-56 0c0-16 10-31 28-46z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.wordmark .txt { font-family: 'Fraunces', serif; line-height: 1.05; }
.wordmark .txt .top { display: block; font-size: 19px; font-weight: 600; letter-spacing: .03em; color: var(--cream); }
.wordmark .txt .bottom { display: block; font-size: 10px; letter-spacing: .32em; text-transform: uppercase; color: var(--brass-light); margin-top: 1px; }

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: var(--cream); font-size: 14px; font-weight: 500; letter-spacing: .02em;
  position: relative; padding: 6px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--brass);
  transition: width .25s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.icon-btn {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-dark); color: var(--cream);
  transition: all .2s ease;
}
.icon-btn:hover { background: var(--brass); border-color: var(--brass); color: var(--ink); }

.burger { display: none; background: none; border: none; color: var(--cream); cursor: pointer; font-size: 24px; }

.mobile-nav {
  position: fixed; inset: 0; background: var(--ink); z-index: 10000;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px;
  transform: translateY(-100%); transition: transform .35s ease;
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a { color: var(--cream); font-family: 'Fraunces', serif; font-size: 26px; }
.mobile-nav .close-btn { position: absolute; top: 24px; right: 28px; background: none; border: none; color: var(--cream); font-size: 28px; cursor: pointer; }


/* ==========================================================================
   4. HERO & BREADCRUMB
   ========================================================================== */
.hero {
  background:
    radial-gradient(ellipse 900px 500px at 82% 18%, rgba(187,138,76,0.15), transparent 60%),
    var(--ink);
  color: var(--cream);
  padding: 96px 0 110px;
  position: relative;
  overflow: hidden;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(38px,5vw,64px);
  font-weight: 500;
  margin: 20px 0 22px;
}
.hero-copy h1 em { font-style: italic; color: var(--brass-light); font-weight: 400; }
.hero-copy p.lead {
  font-size: 17px; color: rgba(245,240,230,0.72);
  max-width: 460px; margin-bottom: 34px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual { position: relative; }

.steam-ring {
  position: absolute;
  inset: -60px;
  z-index: 0;
}
.steam-ring svg { width: 100%; height: 100%; }
.ring {
  fill: none; stroke: var(--brass); stroke-width: 1; opacity: 0.35;
  transform-origin: center;
  animation: ring-pulse 6s ease-in-out infinite;
}
.ring:nth-child(2) { animation-delay: 1.2s; stroke: var(--moss); }
.ring:nth-child(3) { animation-delay: 2.4s; }

@keyframes ring-pulse {
  0% { transform: scale(0.82); opacity: 0; }
  35% { opacity: 0.4; }
  100% { transform: scale(1.15); opacity: 0; }
}

.hero-image {
  position: relative; z-index: 1;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
  border: 1px solid var(--line-dark);
}
.hero-image img { width: 100%; height: 420px; object-fit: cover; }
.hero-badge {
  position: absolute; bottom: -24px; left: -24px; z-index: 2;
  background: var(--parchment); color: var(--ink);
  padding: 18px 22px; border-radius: 2px;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.35);
  max-width: 200px;
}
.hero-badge .num { font-family: 'Fraunces', serif; font-size: 30px; color: var(--clay); }
.hero-badge .lbl { font-size: 12px; color: var(--charcoal); opacity: .7; margin-top: 2px; }

.breadcrumb-hero {
  height: 300px;
  background: linear-gradient(rgba(27, 43, 34, 0.75), rgba(27, 43, 34, 0.75)), url("images/gallery/spa-room-ambiance-1.jpg") center/cover no-repeat;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: var(--cream);
}
.breadcrumb-hero h1 { font-size: clamp(32px, 4.5vw, 54px); font-weight: 600; }

.ripple-divider { width: 100%; height: 36px; display: block; }
.ripple-divider path { fill: none; stroke-width: 1.4; }


/* ==========================================================================
   5. LAYOUT (SIDEBAR & MAIN CONTENT)
   ========================================================================== */
.main-section { padding: 80px 0; }
.layout-grid { display: flex; gap: 40px; align-items: flex-start; }
.sidebar { width: 30%; position: sticky; top: 90px; display: flex; flex-direction: column; gap: 30px; }
.content-area { width: 70%; }

/* Widgets */
.widget {
  background: var(--parchment-2); padding: 24px;
  border-radius: 4px; border: 1px solid var(--line-light);
}
.widget h3 {
  font-size: 20px; color: var(--ink); margin-bottom: 16px;
  border-bottom: 2px solid var(--brass); padding-bottom: 8px;
}

.service-menu { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.service-menu a {
  display: block; padding: 10px 14px; background: var(--parchment);
  color: var(--charcoal); font-size: 14.5px; font-weight: 500;
  border-radius: 2px; transition: all 0.2s ease;
}
.service-menu a:hover, .service-menu a.active { background: var(--ink); color: var(--brass-light); }

.sidebar-form label {
  font-size: 12px; text-transform: uppercase; letter-spacing: .08em;
  font-weight: 600; color: rgba(36, 31, 26, 0.7); display: block; margin: 10px 0 4px;
}
.sidebar-form input, .sidebar-form textarea {
  width: 100%; background: var(--parchment); border: 1px solid var(--line-light);
  padding: 10px; font-family: 'Work Sans', sans-serif; font-size: 14px;
  color: var(--charcoal); border-radius: 2px; outline: none;
}
.sidebar-form input:focus, .sidebar-form textarea:focus { border-color: var(--brass); }
.error-text { color: #d9534f; font-size: 11px; display: none; margin-top: 2px; }

.sidebar-contact p { font-size: 14px; margin-bottom: 10px; color: rgba(36, 31, 26, 0.85); }
.sidebar-contact strong { color: var(--ink); }
.sidebar-img { width: 100%; height: 180px; object-fit: cover; border-radius: 2px; }

/* Content Styling */
.featured-img { width: 100%; height: 380px; object-fit: cover; border-radius: 4px; margin-bottom: 30px; }
.content-block { margin-bottom: 30px; }
.content-block h2 { font-size: 28px; color: var(--ink); margin-bottom: 12px; }
.content-block p { font-size: 16px; color: rgba(36, 31, 26, 0.85); margin-bottom: 14px; }

.icon-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.icon-list li {
  display: flex; align-items: center; gap: 14px; font-size: 16px;
  color: rgba(36, 31, 26, 0.9); background: var(--parchment-2);
  padding: 12px 18px; border-radius: 4px; transition: transform 0.2s ease, background 0.2s ease;
}
.icon-list li:hover { transform: translateX(4px); background: #E5DAC3; }
.icon-list li i { width: 24px; color: var(--brass); font-size: 16px; text-align: center; }

.faq-item {
  margin-bottom: 16px; background: var(--parchment-2);
  padding: 16px 20px; border-radius: 4px; border-left: 3px solid var(--brass);
}
.faq-item h4 { font-size: 17px; color: var(--ink); margin-bottom: 4px; }
.faq-item p { margin-bottom: 0; font-size: 15px; }

.cta-box { background: var(--ink); color: var(--cream); padding: 30px; border-radius: 4px; margin-top: 40px; }
.cta-box p { color: rgba(245, 240, 230, 0.8); font-size: 16px; margin-bottom: 18px; }


/* ==========================================================================
   6. INTRO, SERVICES MENU & GRID SECTIONS
   ========================================================================== */
.intro { padding: 100px 0 70px; background: var(--parchment); }
.intro-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; align-items: start; }
.intro-grid h2 { font-size: clamp(28px,3.4vw,40px); margin: 16px 0 20px; }
.intro-copy p { color: rgba(36,31,26,0.75); margin-bottom: 16px; font-size: 15.5px; max-width: 480px; }
.intro-copy strong { color: var(--clay); font-weight: 600; }
.intro-copy a.linklike {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 14px; font-weight: 600; font-size: 14px; color: var(--ink);
  border-bottom: 1px solid var(--brass); padding-bottom: 2px;
}

.stats-row {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; border-top: 1px solid var(--line-light);
}
.stat { padding: 26px 20px 26px 0; border-right: 1px solid var(--line-light); }
.stat:last-child { border-right: none; }
.stat .num { font-family: 'Fraunces', serif; font-size: clamp(28px,3vw,40px); color: var(--clay); }
.stat .lbl { font-size: 12.5px; color: rgba(36,31,26,0.6); margin-top: 6px; line-height: 1.4; max-width: 150px; }

.menu-section {
  background: var(--ink); color: var(--cream);
  padding: 100px 0 100px;
}
.menu-head { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.menu-head h2 { font-size: clamp(28px,3.6vw,42px); margin: 16px 0 10px; }
.menu-head p { color: rgba(245,240,230,0.65); font-size: 15px; }
.menu-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0 60px; }
.menu-item {
  display: flex; align-items: baseline; gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
}
.menu-item .name-wrap { display: flex; align-items: baseline; gap: 10px; flex-shrink: 0; }
.menu-item .name { font-family: 'Fraunces', serif; font-size: 19px; font-weight: 500; }
.menu-item .tag {
  font-size: 10px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--clay); border: 1px solid var(--clay);
  padding: 2px 7px; border-radius: 20px; font-weight: 600;
}
.menu-item .leader { flex: 1; border-bottom: 2px dotted rgba(245,240,230,0.25); margin-bottom: 6px; }
.menu-item .price {
  flex-shrink: 0; font-weight: 600; font-size: 15px; color: var(--brass-light);
  display: flex; align-items: center; gap: 10px;
}
.menu-item .price a {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--line-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; transition: all .2s ease; color: var(--cream);
}
.menu-item .price a:hover { background: var(--brass); border-color: var(--brass); color: var(--ink); }
.menu-foot { text-align: center; margin-top: 50px; }
.menu-foot p { color: rgba(245,240,230,0.55); font-size: 13.5px; margin-bottom: 20px; }

/* Services Cards Grid */
.services-section {
  padding: 80px 0;
  background: var(--parchment);
}
.services-section .section-title {
  text-align: center;
  margin-bottom: 48px;
}
.services-section .section-title h2 {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--ink);
  margin-bottom: 10px;
}
.services-section .section-title p {
  font-size: 16px;
  color: rgba(36, 31, 26, 0.75);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--parchment-2);
  border: 1px solid var(--line-light);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 36px -10px rgba(27, 43, 34, 0.2);
  border-color: var(--brass);
}

.service-card .card-img-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.service-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .card-img-wrap img {
  transform: scale(1.06);
}

.service-card .card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.service-card .sub-heading {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--brass);
  margin-bottom: 4px;
}
.service-card .card-heading {
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 10px;
}
.service-card .card-desc {
  font-size: 13.5px;
  color: rgba(36, 31, 26, 0.8);
  line-height: 1.5;
  margin-bottom: 18px;
  flex-grow: 1;
}
.service-card .card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  margin-bottom: 18px;
  border-top: 1px dashed var(--line-light);
  font-size: 14px;
}
.service-card .price {
  font-weight: 700;
  color: var(--ink);
}
.service-card .duration {
  font-weight: 500;
  color: rgba(36, 31, 26, 0.65);
}
.service-card .duration i {
  color: var(--moss);
  margin-right: 4px;
}

.service-card .card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.service-card .btn-card {
  padding: 10px 12px;
  font-size: 12.5px;
  font-weight: 600;
  text-align: center;
  border-radius: 3px;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-card-call {
  background: var(--ink);
  color: var(--brass-light);
}
.btn-card-call:hover {
  background: var(--ink-3);
  color: var(--cream);
}

.btn-card-more {
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn-card-more:hover {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--ink);
}


/* ==========================================================================
   7. FACILITIES, EXPERIENCE & GALLERY
   ========================================================================== */
.facilities { padding: 100px 0; background: var(--parchment-2); }
.fac-grid {
  display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; align-items: center;
}
.fac-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.fac-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 20px 20px 20px 0;
  border-top: 1px solid var(--line-light);
}
.fac-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--line-light); }
.fac-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--ink); color: var(--brass-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 16px;
}
.fac-item .t { font-weight: 600; font-size: 14.5px; color: var(--charcoal); }

.experience {
  background: var(--ink-2); color: var(--cream);
  padding: 110px 0;
  position: relative;
}
.experience .wrap { max-width: 760px; text-align: center; }
.experience h2 { font-size: clamp(30px,4vw,46px); margin: 18px 0 24px; }
.experience p { color: rgba(245,240,230,0.72); font-size: 16px; margin-bottom: 14px; }
.experience .btn { margin-top: 20px; }

.gallery { padding: 100px 0; background: var(--ink); color: var(--cream); }
.gallery-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 36px; flex-wrap: wrap; gap: 16px; }
.gallery-head h2 { font-size: clamp(26px,3.4vw,38px); margin-top: 14px; }
.gallery-hint { font-size: 13px; color: rgba(245,240,230,0.5); }
.gallery-strip {
  display: flex; gap: 16px; overflow-x: auto;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
}
.gallery-strip::-webkit-scrollbar { height: 5px; }
.gallery-strip::-webkit-scrollbar-thumb { background: var(--brass); border-radius: 10px; }
.gallery-strip img {
  width: 280px; height: 340px; object-fit: cover; flex-shrink: 0;
  scroll-snap-align: start; border-radius: 2px;
  filter: grayscale(15%);
  transition: filter .3s ease, transform .3s ease;
}
.gallery-strip img:hover { filter: grayscale(0%); transform: translateY(-4px); }


/* ==========================================================================
   8. LOCATION, CONTACT & FORMS
   ========================================================================== */
.location { padding: 100px 0; background: var(--parchment); }
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.map-box { border-radius: 4px; overflow: hidden; border: 1px solid var(--line-light); }
.map-box iframe { width: 100%; height: 100%; min-height: 420px; border: 0; filter: sepia(8%) saturate(85%); }

.addr-card { margin-top: 22px; display: flex; gap: 16px; align-items: flex-start; }
.addr-card .fac-icon { background: var(--ink); color: var(--brass-light); }
.addr-card p { font-size: 14.5px; color: rgba(36,31,26,0.75); }
.addr-card p.phone { font-weight: 600; color: var(--charcoal); font-size: 16px; margin-bottom: 4px; }

.contact-form h2 { font-size: clamp(26px,3.2vw,36px); margin: 16px 0 10px; }
.contact-form > p { color: rgba(36,31,26,0.65); font-size: 14.5px; margin-bottom: 28px; }

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

label {
  font-size: 12px; text-transform: uppercase; letter-spacing: .08em;
  font-weight: 600; color: rgba(36,31,26,0.6); display: block; margin-bottom: 7px;
}

input, textarea, select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-light);
  padding: 10px 2px;
  font-family: 'Work Sans', sans-serif;
  font-size: 15px; color: var(--charcoal);
  outline: none;
  transition: border-color .2s ease;
}
input:focus, textarea:focus, select:focus { border-color: var(--brass); }
textarea { resize: vertical; min-height: 70px; }
.form-grid .btn { margin-top: 8px; justify-self: start; }

/* Contact Us Grid Block */
.contact-section {
  padding: 80px 0;
  background: var(--ink);
}
.contact-section .section-title {
  text-align: center;
  margin-bottom: 40px;
}
.contact-section .section-title h2 {
  font-size: clamp(28px, 4vw, 40px);
  color: #fff;
  margin-bottom: 10px;
}
.contact-section .section-title p {
  font-size: 16px;
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.contact-card {
  background: var(--parchment-2);
  border: 1px solid var(--line-light);
  border-radius: 6px;
  padding: 36px 24px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px -8px rgba(27, 43, 34, 0.15);
  border-color: var(--brass);
}

.contact-card .icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--brass-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.contact-card:hover .icon-wrapper {
  background: var(--brass);
  color: var(--ink);
}

.contact-card h3 {
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 12px;
}
.contact-card p, 
.contact-card a {
  font-size: 15px;
  color: rgba(36, 31, 26, 0.85);
  line-height: 1.5;
  transition: color 0.2s ease;
}
.contact-card a:hover {
  color: var(--brass);
}


/* ==========================================================================
   9. FOOTER & FLOATING BARS
   ========================================================================== */
footer { 
  background: var(--ink); 
  color: var(--cream); 
  border-top: 1px solid var(--line-dark); 
  padding: 70px 0 30px; 
}
.foot-grid { 
  display: grid; 
  grid-template-columns: 1.4fr 1fr 1fr; 
  gap: 50px; 
  margin-bottom: 50px; 
}
.foot-logo img { height: 34px; margin-bottom: 16px; }
.foot-grid p { color: rgba(245,240,230,0.6); font-size: 14px; max-width: 280px; }

.foot-col h4 { 
  font-size: 13px; 
  text-transform: uppercase; 
  letter-spacing: .1em; 
  color: var(--brass-light); 
  margin-bottom: 18px; 
  font-family: 'Work Sans', sans-serif;
  font-weight: 600; 
}
.foot-col ul { list-style: none; display: grid; gap: 11px; }
.foot-col a, .foot-col li { font-size: 14px; color: rgba(245,240,230,0.75); }
.foot-col a:hover { color: var(--brass-light); }

.foot-bottom {
  border-top: 1px solid var(--line-dark); 
  padding-top: 24px;
  display: flex; 
  justify-content: space-between; 
  flex-wrap: wrap; 
  gap: 10px;
  font-size: 12.5px; 
  color: rgba(245,240,230,0.45);
}

/* Sticky Bottom Call Bar */
.sticky-call-bar {
  display: none; 
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 250;
  background: var(--brass);
  border-top: 1px solid rgba(36,31,26,0.22);
  box-shadow: 0 -6px 22px -8px rgba(0,0,0,0.4);
}
.sticky-call-bar a {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 16px 20px;
  font-family: 'Fraunces', serif;
  font-size: 19px; font-weight: 600; letter-spacing: .02em;
  color: var(--ink);
  transition: background .2s ease;
}
.sticky-call-bar a:hover { background: var(--brass-light); }
.sticky-call-bar svg { width: 20px; height: 20px; flex-shrink: 0; }

/* Floating WhatsApp / Actions Stack */
.float-stack {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  display: flex; flex-direction: column; gap: 14px; align-items: center;
}
.float-btn {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px -6px rgba(0,0,0,0.45);
  animation: wa-pulse 2.6s ease-in-out infinite;
  background: #25D366; color: #fff;
}

@keyframes wa-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

/* JavaScript Animations Helper */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }


/* ==========================================================================
   10. MEDIA QUERIES (RESPONSIVE)
   ========================================================================== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 980px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  
  .intro-grid { grid-template-columns: 1fr; gap: 36px; }
  .fac-grid { grid-template-columns: 1fr; }
  .loc-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .menu-cols { grid-template-columns: 1fr; }
  
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat { border-bottom: 1px solid var(--line-light); }
  
  .layout-grid { flex-direction: column; }
  .content-area { width: 100%; order: 1; }
  .sidebar { width: 100%; position: static; order: 2; margin-top: 40px; }
  
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  
  .sticky-call-bar { display: block; }
  body { padding-bottom: 58px; }
  .float-stack { bottom: 78px; }
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .services-section { padding: 50px 0; }
}

@media (max-width: 760px) {
  .nav-links, .nav-actions .btn-brass, .nav-actions .icon-btn:not(.call-icon) { display: none; }
  .burger { display: block; }
  
  .hero { padding: 60px 0 70px; }
  .hero-badge { position: static; margin-top: -30px; display: inline-block; }
  
  .main-section { padding: 40px 0; }
  .featured-img { height: 240px; }
  
  .form-row { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .fac-list { grid-template-columns: 1fr; }
  
  .sticky-call-bar a { font-size: 17px; padding: 15px 18px; }
}

@media (max-width: 600px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-section { padding: 50px 0; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}




/* Floating Social Bar Stack */
.floating-social-stack {
  position: fixed;
  right: 20px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
  transition: bottom 0.3s ease, right 0.3s ease;
}

.social-float {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}

.social-float svg {
  width: 24px;
  height: 24px;
}

/* Platform Colors */
.social-float.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-float.facebook {
  background: #1877F2;
}

.social-float.whatsapp {
  background: #25D366;
}

/* Hover Effect for Desktop */
.social-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .floating-social-stack {
    right: 14px;
    /* Raises stack slightly on mobile so it clears the sticky mobile call bar */
    bottom: 70px; 
    gap: 10px;
  }

  .social-float {
    width: 42px;
    height: 42px;
  }

  .social-float svg {
    width: 20px;
    height: 20px;
  }
}

/* Footer Social Icons */
.footer-socials {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 16px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: #bb8a4c; /* Accent gold color */
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background-color: #bb8a4c;
  color: #1b2b22; /* Dark green theme color */
  transform: translateY(-3px);
}