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

:root {
  --green: #01372F;
  --teal: #1E4E4A;
  --gold: #D4AF37;
  --gold-muted: rgba(212, 175, 55, 0.12);
  --marble: #EEF5F1;
  --white: #FFFFFF;
  --body: #333333;
  --body-light: #6B6B6B;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Poppins', sans-serif;
  --font-script: 'Allura', cursive;
  --radius-sm: 24px;
  --radius-lg: 32px;
  --radius-pill: 50px;
  --shadow-soft: 0 20px 40px rgba(1, 55, 47, 0.04);
  --shadow-hover: 0 20px 60px rgba(1, 55, 47, 0.08);
}

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

body {
  font-family: var(--font-body);
  color: var(--body);
  color: rgba(51, 51, 51, 0.8);
  line-height: 1.6;
  background: var(--marble);
  font-weight: 300;
  font-size: 16px;
}

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

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

/* === NAVIGATION === */
.site-nav {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1320px;
  z-index: 1000;
  padding: 10px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: var(--radius-pill);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease-in-out;
}

.site-nav.scrolled {
  background: rgba(238, 245, 241, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: var(--shadow-soft);
  padding: 8px 36px;
}

.nav-logo {
  height: 34px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 1px rgba(0,0,0,0.1));
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-nav.scrolled .nav-links a {
  color: rgba(1, 55, 47, 0.75);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 100%;
  height: 1px;
  background: var(--gold);
  transition: transform 0.4s ease-in-out;
  transform-origin: center;
}

.nav-links a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

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

.site-nav.scrolled .nav-links a:hover {
  color: var(--gold);
}

.nav-link-gold {
  font-family: var(--font-body) !important;
  font-size: 11px !important;
  letter-spacing: 0.12em !important;
  font-weight: 500 !important;
  background: transparent !important;
  color: var(--gold) !important;
  border: 1px solid var(--gold) !important;
  border-radius: var(--radius-pill) !important;
  padding: 8px 22px !important;
  transition: all 0.4s ease-in-out !important;
}

.nav-link-gold::after {
  display: none !important;
}

.nav-link-gold:hover {
  background: var(--green) !important;
  color: var(--gold) !important;
  border-color: var(--gold) !important;
}

.site-nav.scrolled .nav-link-gold:hover {
  color: var(--gold) !important;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex !important; }
  .site-nav { width: calc(100% - 24px); padding: 10px 20px; }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--green);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

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

.mobile-nav a {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 2px;
  font-weight: 400;
  text-transform: uppercase;
  transition: color 0.3s;
}

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

/* === HERO === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: flex;
  align-items: center;
  background: var(--green);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(1, 55, 47, 0.75) 0%, rgba(1, 55, 47, 0.2) 50%, rgba(1, 55, 47, 0.05) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 0 40px;
  margin-top: 60px;
}

.hero-kicker {
  font-size: 0.65rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 32px;
  letter-spacing: -0.5px;
}

.hero p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 18px;
}

.hero-sub {
  font-family: var(--font-display);
  font-size: 1.4rem !important;
  color: var(--gold) !important;
  font-weight: 400 !important;
  margin-bottom: 24px !important;
  letter-spacing: 0.3px;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 18px 48px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  border: none;
  border-radius: var(--radius-pill);
}

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

.btn-primary:hover {
  background: #c49f2e;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: var(--radius-pill);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--green);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero h1 { font-size: 3rem; }
  .hero-content { padding: 0 24px; }
  .hero { min-height: 600px; }
  .hero-sub { font-size: 1.1rem !important; }
}

/* === TRUST BAR === */
.trust-bar {
  padding: 24px 0;
  background: transparent;
  border-bottom: 1px solid rgba(30, 78, 74, 0.06);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 400;
  flex-wrap: wrap;
}

.trust-divider {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .trust-bar-inner { font-size: 0.6rem; gap: 12px; }
  .trust-divider { display: none; }
}

/* === STORY SECTION === */
.story {
  padding: 140px 0;
  background: transparent;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.story-block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.story-block blockquote {
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1.45;
  color: var(--teal);
  font-weight: 400;
  font-style: normal;
  quotes: none;
}

.story-heading {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--teal);
  margin-bottom: 36px;
  line-height: 1.25;
  letter-spacing: -0.3px;
}

.story-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 44px auto;
}

@media (max-width: 768px) {
  .story { padding: 80px 0; }
  .story-block blockquote { font-size: 1.5rem; }
  .story-heading { font-size: 1.6rem; }
}

/* === SERVICES EDITORIAL MENU === */
.services-editorial {
  padding: 140px 0;
  background: transparent;
}

.editorial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.editorial-image-wrap {
  position: sticky;
  top: 80px;
  height: calc(100vh - 160px);
  overflow: hidden;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
}

.editorial-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-menu-wrap {
  padding: 0 60px;
  display: flex;
  align-items: center;
}

.editorial-menu {
  max-width: 540px;
  width: 100%;
}

.editorial-menu-intro {
  text-align: center;
  margin-bottom: 72px;
}

.editorial-menu-intro .script-tag {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.editorial-menu-intro h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--teal);
  letter-spacing: -0.3px;
  margin-bottom: 16px;
}

.editorial-menu-intro p {
  color: rgba(51, 51, 51, 0.6);
  font-size: 0.95rem;
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.menu-category {
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-sm);
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
}

.menu-category:last-child {
  margin-bottom: 0;
}

.menu-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.menu-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.menu-category-header h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--teal);
}

.menu-category-header .menu-link {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  transition: color 0.3s;
}

.menu-category-header .menu-link:hover {
  color: var(--teal);
}

.menu-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 40px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid rgba(30, 78, 74, 0.04);
}

.menu-item-name {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(51, 51, 51, 0.8);
}

.menu-item-price {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--teal);
  letter-spacing: 0.3px;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .editorial-split { grid-template-columns: 1fr; }
  .editorial-image-wrap { display: none; }
  .editorial-menu-wrap { padding: 0 40px; }
  .editorial-menu { max-width: 100%; }
}

@media (max-width: 768px) {
  .services-editorial { padding: 80px 0; }
  .editorial-menu-intro h2 { font-size: 2rem; }
  .editorial-menu-wrap { padding: 0 24px; }
  .menu-items { grid-template-columns: 1fr; }
  .menu-category-header h3 { font-size: 1.3rem; }
}

/* === SECTION HEADERS === */
.section-header {
  text-align: center;
  padding: 120px 0 64px;
}

.section-header .script-kicker {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--teal);
  letter-spacing: -0.3px;
}

.section-header h2.all-caps {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--teal);
}

.section-header .kicker {
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}

.section-header p {
  color: rgba(51, 51, 51, 0.6);
  font-size: 0.92rem;
  max-width: 520px;
  margin: 16px auto 0;
  font-weight: 300;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .section-header { padding: 70px 0 40px; }
  .section-header h2 { font-size: 2rem; }
  .section-header h2.all-caps { font-size: 1.1rem; }
}

/* === TREATMENTS === */
.treatments {
  background: var(--marble);
  padding: 100px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.treatments-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(212, 175, 55, 0.12);
  max-width: 960px;
  margin: 0 auto;
}

.treatment-item {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 36px;
  align-items: center;
  padding: 32px 36px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

.treatment-item:hover {
  background: var(--white);
}

.treatment-image {
  width: 200px;
  height: 140px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.treatment-item {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 36px;
  align-items: center;
  padding: 32px 36px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  transition: all 0.4s ease-in-out;
  cursor: pointer;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
}

.treatment-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-hover);
}

.treatment-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--teal);
  margin-bottom: 4px;
}

.treatment-tagline {
  font-size: 0.78rem !important;
  color: var(--gold) !important;
  font-weight: 400 !important;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.treatment-note {
  font-size: 0.78rem !important;
  color: var(--body-light) !important;
  font-style: italic;
  margin-top: 6px;
}

.treatment-info p {
  font-size: 0.83rem;
  color: rgba(51, 51, 51, 0.7);
  font-weight: 300;
  line-height: 1.7;
}

.treatment-arrow {
  color: var(--gold);
  font-size: 1.3rem;
  font-family: var(--font-display);
}

@media (max-width: 768px) {
  .treatment-item {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }
  .treatment-image {
    width: 100%;
    height: 200px;
  }
  .treatment-arrow { display: none; }
}

/* === BRIDAL === */
.bridal {
  padding: 0;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.bridal-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.bridal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 500px;
}

.bridal-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
  background: transparent;
}

.bridal-content .kicker {
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}

.bridal-content h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--teal);
  line-height: 1.15;
  margin-bottom: 20px;
}

.bridal-content p {
  font-size: 0.95rem;
  color: rgba(51, 51, 51, 0.7);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 28px;
}

@media (max-width: 900px) {
  .bridal-layout {
    grid-template-columns: 1fr;
  }
  .bridal-content { padding: 60px 32px; }
  .bridal-content h2 { font-size: 2rem; }
}

/* === GALLERY LOOKBOOK === */
.lookbook {
  padding: 0;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.lookbook-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.lookbook-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.lookbook-item:hover img {
  transform: scale(1.04);
}

.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 8px;
  padding: 8px;
  background: transparent;
}

.lookbook-item.tall {
  grid-row: span 2;
}

.lookbook-item.wide {
  grid-column: span 2;
}

.lookbook-item .caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 0.8rem;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.4s;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.lookbook-item:hover .caption {
  opacity: 1;
}

@media (max-width: 900px) {
  .lookbook-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
}

@media (max-width: 600px) {
  .lookbook-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }
  .lookbook-item.tall { grid-row: span 1; }
  .lookbook-item.wide { grid-column: span 1; }
}

/* === TESTIMONIALS === */
.testimonials {
  padding: 120px 0;
  background: transparent;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial {
  border-top: 1px solid rgba(30, 78, 74, 0.1);
  padding-top: 28px;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--teal);
  font-weight: 400;
  margin-bottom: 20px;
}

.testimonial-author {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 500px;
  }
}

/* === BOOKING / STUDIO SECTION === */
.booking-section {
  padding: 120px 0;
  background: transparent;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.studio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.studio-card {
  display: block;
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid rgba(30, 78, 74, 0.06);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease-in-out;
  text-decoration: none;
}

.studio-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.studio-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--teal);
  margin-bottom: 4px;
}

.studio-address {
  font-size: 0.8rem;
  color: rgba(51, 51, 51, 0.6);
  font-weight: 300;
  margin-bottom: 8px;
}

.studio-label {
  font-size: 0.78rem;
  color: rgba(51, 51, 51, 0.8);
  font-weight: 400;
  margin-bottom: 16px;
}

.studio-card .btn-outline {
  display: inline-flex;
}

/* === CLOSING STATEMENT === */
.closing-statement {
  padding: 120px 20px;
  background: var(--green);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.closing-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(1, 55, 47, 0.6) 0%, rgba(1, 55, 47, 0.3) 100%);
}

.closing-statement blockquote {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.closing-line {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 16px;
}

.closing-sub {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .booking-section { padding: 70px 20px; }
  .closing-line { font-size: 1.5rem; }
  .studio-grid { grid-template-columns: 1fr; }
}

/* === FOOTER === */
.site-footer {
  background: var(--green);
  padding: 70px 0 36px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo {
  height: 32px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  font-weight: 300;
  margin-bottom: 10px;
  transition: color 0.3s;
}

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

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s;
  margin-bottom: 0;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 300;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

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

/* === WHATSAPP FLOAT === */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  transition: transform 0.3s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.05);
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  fill: white;
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 44px;
    height: 44px;
    bottom: 16px;
    right: 16px;
  }
  .whatsapp-float svg { width: 22px; height: 22px; }
}

/* === SUBPAGE STYLES === */
.subpage-hero {
  background: var(--green);
  padding: 170px 0 90px;
}

.subpage-hero h1 {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.subpage-hero p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  font-weight: 300;
  max-width: 520px;
}

/* === SERVICES PAGE === */
.services-page { padding: 80px 0; background: transparent; }

.service-section-subpage {
  margin-bottom: 80px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.service-section-subpage:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.service-section-subpage h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--teal);
  margin-bottom: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.service-desc {
  font-size: 0.88rem;
  color: rgba(51, 51, 51, 0.65);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 700px;
}

.price-grid-subpage {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 8px;
}

.price-item-subpage {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(30, 78, 74, 0.05);
  font-size: 0.9rem;
  font-weight: 300;
}

.price-item-subpage .name { color: rgba(51, 51, 51, 0.8); }
.price-item-subpage .price { color: var(--teal); font-weight: 400; }

/* === LOCATIONS PAGE === */
.locations-grid-subpage {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 40px;
  padding: 80px 0;
}

.location-card-subpage {
  border-top: 1px solid rgba(30, 78, 74, 0.1);
  padding-top: 24px;
}

.location-card-subpage {
  border-top: 1px solid rgba(30, 78, 74, 0.1);
  padding-top: 20px;
}

.location-card-subpage h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--teal);
  margin-bottom: 8px;
}

.location-card-subpage .address {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(51, 51, 51, 0.65);
  margin-bottom: 12px;
  line-height: 1.6;
}

.location-card-subpage .phone {
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--teal);
}

.location-card-subpage .hours {
  font-size: 0.8rem;
  color: var(--body-light);
  margin-top: 4px;
}

.location-card-subpage .whatsapp-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

/* === ABOUT PAGE === */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 80px 0;
  align-items: center;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--teal);
  margin-bottom: 20px;
}

.about-text p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(51, 51, 51, 0.65);
  margin-bottom: 16px;
}

.about-image-subpage {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.mission-grid-subpage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding: 80px 0;
}

.mission-card-subpage {
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  padding-top: 24px;
}

.mission-card-subpage h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--teal);
  margin-bottom: 10px;
}

.mission-card-subpage p {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(51, 51, 51, 0.65);
  line-height: 1.7;
}

/* === GALLERY SUBPAGE === */
.gallery-subpage {
  padding: 80px 0;
}

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

.insta-item {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(1, 47, 43, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  transition: opacity 0.3s;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 400;
}

.insta-item:hover .insta-overlay {
  opacity: 1;
}

.gallery-widget {
  position: relative;
  width: 100%;
  min-height: 600px;
}

.gallery-widget iframe {
  width: 100%;
  height: 600px;
  border: none;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .gallery-widget {
    min-height: 400px;
  }
  .gallery-widget iframe {
    height: 400px;
  }
}

.insta-cta {
  text-align: center;
  padding: 48px 20px 0;
}

.insta-cta p {
  font-size: 0.95rem;
  color: var(--body-light);
  margin-bottom: 20px;
  font-weight: 300;
}

@media (max-width: 768px) {
  .about-content { grid-template-columns: 1fr; }
  .mission-grid-subpage { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .locations-grid-subpage { grid-template-columns: 1fr; }
  .subpage-hero h1 { font-size: 2rem; }
}

/* === ANNOUNCEMENT BAR === */
.announcement {
  background: var(--gold);
  color: var(--green);
  text-align: center;
  padding: 10px;
  font-size: 0.75rem;
  letter-spacing: 1px;
  font-weight: 400;
}

/* === SCROLL INDICATOR === */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}
