/* ========================================
   FREDDY'S HAIR STUDIOS — Coral Gables
   Tiffany Blue + Cream + Gold
   ======================================== */

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

:root {
  --tiffany: #1F384C;
  --tiffany-dark: #12222E;
  --cream: #FDF8F0;
  --cream-darker: #F5EDE0;
  --gold: #C9A84C;
  --gold-light: #E0C872;
  --gold-dark: #A88830;
  --charcoal: #2C2C2C;
  --charcoal-light: #4A4A4A;
  --white: #FFFFFF;
  --black: #1A1A1A;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', Helvetica, Arial, sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 16px;
  color: var(--charcoal-light);
  max-width: 600px;
  line-height: 1.8;
  font-weight: 300;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  background: transparent;
}

.nav.scrolled {
  background: rgba(253, 248, 240, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
  transition: var(--transition);
  line-height: 1.15;
}

.nav.scrolled .nav-logo {
  color: var(--charcoal);
}

.nav-logo span {
  font-weight: 300;
  font-size: 13px;
  display: block;
  color: var(--gold-light);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.nav.scrolled .nav-logo span {
  color: var(--gold);
}

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

.nav-links a {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  position: relative;
}

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

.nav.scrolled .nav-links a {
  color: var(--charcoal-light);
}

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

.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--gold-dark); }
.nav.scrolled .nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 0;
  font-weight: 600 !important;
  transition: var(--transition);
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-dark) !important; color: var(--white) !important; }

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

.nav-toggle span {
  width: 28px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}

.nav.scrolled .nav-toggle span {
  background: var(--charcoal);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--charcoal) 0%, var(--tiffany) 60%, transparent 100%), var(--cream);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.06;
  background-image: 
    radial-gradient(circle at 20% 50%, var(--gold) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, var(--gold) 1px, transparent 1px),
    radial-gradient(circle at 50% 80%, var(--tiffany-dark) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(126,200,227,0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  max-width: 700px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(224, 200, 114, 0.3);
  padding: 8px 20px;
  margin-bottom: 30px;
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 8px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  font-family: var(--font-serif);
  font-style: italic;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.25);
}

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



@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

.hero-scroll .arrow {
  width: 1px;
  height: 30px;
  background: rgba(44,44,44,0.2);
  position: relative;
  overflow: hidden;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--charcoal-light);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  animation: float 3s ease-in-out infinite;
  opacity: 0.5;
}

.hero-scroll .arrow::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { top: -100%; }
  50% { top: 100%; }
}

/* ===== ABOUT ===== */
.about-header {
  text-align: center;
  margin-bottom: 64px;
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 48px;
}

.about-intro-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-intro-image img {
  width: 100%;
  display: block;
}

.about-intro-text {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.about-story-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.about-story-block p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--charcoal-light);
  font-weight: 300;
  margin-bottom: 12px;
}

.about-story-block p:last-child {
  margin-bottom: 0;
}

.about-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 48px;
}

.about-gallery-item {
  overflow: hidden;
  position: relative;
}

.about-gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-gallery-item:hover img {
  transform: scale(1.02);
}

.about-credentials {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 40px;
  border-top: 1px solid var(--cream-darker);
}

.credential {
  text-align: center;
}

.credential-icon {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 8px;
}

.credential-label {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
}

.credential-desc {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--charcoal-light);
  font-weight: 400;
}

/* ===== PHILOSOPHY ===== */
/* ===== ORIBE LEGACY ===== */
.oribe-legacy {
  background: var(--cream);
  position: relative;
}

.oribe-legacy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: var(--gold);
  opacity: 0.3;
}

.oribe-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.oribe-header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.oribe-header::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 24px auto 0;
  opacity: 0.4;
}

.oribe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.oribe-certificate-wrapper {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.oribe-certificate-wrapper::before,
.oribe-certificate-wrapper::after {
  content: '✦';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: var(--gold);
  opacity: 0.25;
}

.oribe-certificate-wrapper::before {
  left: 0;
}

.oribe-certificate-wrapper::after {
  right: 0;
}

.oribe-certificate-frame {
  display: inline-block;
  background: var(--white);
  padding: 10px;
  border: 1px solid rgba(201, 168, 76, 0.12);
  box-shadow: 0 12px 48px rgba(44,44,44,0.06);
  max-width: 700px;
  transition: all 0.4s ease;
  position: relative;
}

.oribe-certificate-frame::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold-dark));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.oribe-certificate-frame:hover::before {
  opacity: 1;
}

.oribe-certificate-frame:hover {
  box-shadow: 0 16px 56px rgba(44,44,44,0.1);
  transform: translateY(-3px);
}

.oribe-certificate-img {
  width: 100%;
  height: auto;
  display: block;
}

.oribe-certificate-caption {
  font-size: 12px;
  color: var(--charcoal-light);
  font-weight: 300;
  font-style: italic;
  margin-top: 16px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .oribe-certificate-frame {
    padding: 12px;
  }
  
  .oribe-certificate-wrapper::before,
  .oribe-certificate-wrapper::after {
    display: none;
  }
}

.oribe-card-container {
  text-align: center;
}

.oribe-card-frame {
  background: var(--white);
  padding: 8px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  box-shadow: 0 8px 32px rgba(44,44,44,0.04);
  position: relative;
  transition: all 0.4s ease;
}

.oribe-card-frame::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold-dark));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.oribe-card-frame:hover::before {
  opacity: 1;
}

.oribe-card-frame:hover {
  box-shadow: 0 12px 40px rgba(44,44,44,0.08);
  transform: translateY(-2px);
}

.oribe-card-img {
  width: 100%;
  max-width: 500px;
  display: block;
  margin: 0 auto;
}

.oribe-card-caption {
  font-size: 12px;
  color: var(--charcoal-light);
  font-weight: 300;
  font-style: italic;
  margin-top: 16px;
  line-height: 1.6;
}

.oribe-story {
  padding: 0 8px;
}

.oribe-story-icon {
  font-size: 11px;
  color: var(--gold);
  text-align: center;
  margin-bottom: 20px;
}

.oribe-story-icon.end {
  margin-top: 28px;
  margin-bottom: 0;
}

.oribe-story-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 16px;
  line-height: 1.3;
}

.oribe-story p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--charcoal-light);
  font-weight: 300;
  margin-bottom: 14px;
}

@media (max-width: 768px) {
  .oribe-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .oribe-card-frame {
    padding: 16px;
  }
  
  .oribe-story {
    text-align: center;
  }
}

.philosophy {
  background: var(--charcoal);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.philosophy::before {
  content: '"';
  position: absolute;
  top: -40px;
  right: 80px;
  font-family: var(--font-serif);
  font-size: 400px;
  color: rgba(201, 168, 76, 0.06);
  line-height: 1;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.philosophy-text blockquote {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 28px);
  font-style: italic;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  padding: 0;
  border: none;
  position: relative;
}

.philosophy-text blockquote::before {
  content: '“';
  font-size: 60px;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: -30px;
  left: -20px;
  font-family: var(--font-serif);
  line-height: 1;
}

.philosophy-text cite {
  display: block;
  margin-top: 24px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-style: normal;
  color: var(--gold);
  font-weight: 500;
}

.philosophy-text blockquote + blockquote {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.philosophy-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.philosophy-number {
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  transition: var(--transition);
}

.philosophy-number:hover {
  background: rgba(201, 168, 76, 0.05);
}

.philosophy-number .num {
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
  font-weight: 300;
}

.philosophy-number .label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}

.philosophy-number .num-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin-top: 4px;
  font-weight: 300;
  font-style: italic;
}

/* ===== SERVICES ===== */
.services-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.service-card {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 24px 0 20px;
  border-bottom: 1px solid var(--cream-darker);
  transition: var(--transition);
}

.service-card:hover {
  padding-left: 8px;
}

.service-info h3 {
  font-size: 16px;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.service-info .note {
  font-size: 12px;
  color: var(--charcoal-light);
  font-weight: 300;
  font-style: italic;
}

.service-price {
  font-size: 17px;
  color: var(--gold-dark);
  font-weight: 500;
  white-space: nowrap;
}

.services-footer {
  text-align: center;
  margin-top: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.policy-note {
  font-size: 13px;
  color: var(--charcoal-light);
  font-style: italic;
  font-weight: 300;
}

.booking-map {
  margin-top: 24px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  line-height: 0;
}

.booking-map iframe {
  width: 100%;
  height: 200px;
  border: 0;
  filter: sepia(0.3) hue-rotate(170deg) saturate(0.5);
  transition: filter 0.4s ease;
}

.booking-map:hover iframe {
  filter: sepia(0) hue-rotate(0deg) saturate(1);
}

.booking-map-caption {
  padding: 10px 14px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  font-weight: 400;
  line-height: 1.4;
}

.booking-map-caption a {
  color: var(--gold-light);
}

.booking-map-caption a:hover {
  color: var(--gold);
}

/* ===== GALLERY ===== */
.gallery {
  background: var(--cream-darker);
}

.gallery-header {
  text-align: center;
  margin-bottom: 48px;
}

.instagram-feed {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.instagram-feed .lightwidget-widget {
  border-radius: 4px !important;
  box-shadow: 0 4px 20px rgba(44,44,44,0.06);
}

.instagram-feed .ig-loading {
  text-align: center;
  padding: 60px 20px;
  color: var(--charcoal-light);
  font-weight: 300;
  font-style: italic;
}

.gallery-cta {
  text-align: center;
  margin-top: 40px;
}

.gallery-cta p {
  font-size: 14px;
  color: var(--charcoal-light);
  margin-bottom: 16px;
}

/* ===== BOOKING ===== */
.booking {
  background: var(--charcoal);
  color: var(--white);
  position: relative;
}

.booking::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.booking-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}

.booking-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
}

.booking-header p {
  font-size: 15px;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
  line-height: 1.7;
}

/* — Contact Details Row — */
.booking-contact-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-bottom: 48px;
  background: rgba(255,255,255,0.04);
}

.booking-contact-item {
  padding: 32px 20px;
  text-align: center;
  background: rgba(255,255,255,0.02);
  transition: background 0.3s ease;
}

.booking-contact-item:hover {
  background: rgba(255,255,255,0.05);
}

.booking-contact-item svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 14px;
}

.booking-contact-item h4 {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 4px;
}

.booking-contact-item p {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  font-weight: 300;
  line-height: 1.5;
}

.booking-contact-item a {
  color: var(--gold-light);
  font-size: 12px;
}
.booking-contact-item a:hover {
  color: var(--gold);
}

/* — Map — */
.booking-map {
  margin-bottom: 48px;
  border: 1px solid rgba(201, 168, 76, 0.1);
  overflow: hidden;
  line-height: 0;
}

.booking-map iframe {
  width: 100%;
  height: 200px;
  border: 0;
  filter: sepia(0.3) hue-rotate(170deg) saturate(0.4);
  transition: filter 0.5s ease;
}

.booking-map:hover iframe {
  filter: sepia(0) hue-rotate(0deg) saturate(1);
}

.booking-map-caption {
  padding: 10px 18px;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  line-height: 1.4;
}

.booking-map-caption a {
  color: var(--gold-light);
}
.booking-map-caption a:hover { color: var(--gold); }

/* — Form Columns — */
.booking-wa-cta {
  text-align: center;
  max-width: 540px;
  margin: 0 auto;
}

.booking-wa-icon {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1;
  margin-bottom: 20px;
}

.booking-wa-cta h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}

.booking-wa-cta p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  margin-bottom: 28px;
  line-height: 1.7;
}

.booking-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: #25D366;
  color: var(--white);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
}

.booking-wa-btn:hover {
  background: #128C7E !important;
}

/* ===== INSTAGRAM BANNER ===== */

.instagram-banner {
  background: var(--cream);
  text-align: center;
  padding: 60px 0;
  border-top: 1px solid var(--cream-darker);
  border-bottom: 1px solid var(--cream-darker);
}

.instagram-banner h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 8px;
}

.instagram-banner p {
  color: var(--charcoal-light);
  font-size: 15px;
  margin-bottom: 20px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 60px 0 30px;
}

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

.footer-brand h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 4px;
}

.footer-brand span {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  font-weight: 300;
  max-width: 300px;
}

.footer h4 {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}

.footer-links a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  font-weight: 300;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.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: 12px;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
}

/* ===== RESPONSIVE ===== */
/* ===== REVIEWS ===== */
.reviews {
  background: var(--cream);
}

.reviews-header {
  text-align: center;
  margin-bottom: 48px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto 48px;
}

.review-card {
  background: var(--white);
  padding: 28px 24px;
  border: 1px solid rgba(201, 168, 76, 0.1);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 8px 32px rgba(44,44,44,0.06);
  transform: translateY(-2px);
}

.review-stars {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.review-card blockquote {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--cream-darker);
}

.review-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
}

.review-source {
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 3px 8px;
}

.review-source.google {
  background: rgba(66, 133, 244, 0.08);
  color: #4285F4;
}

.review-source.yelp {
  background: rgba(212, 42, 42, 0.08);
  color: #D42A2A;
}

.reviews-cta {
  text-align: center;
}

.reviews-cta p {
  font-size: 13px;
  color: var(--charcoal-light);
  margin-bottom: 16px;
  font-weight: 300;
}

.reviews-cta-links {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--white);
}

@media (max-width: 1024px) {
  .about-intro { gap: 40px; }
  .philosophy-grid { gap: 40px; }
  .booking-wrapper { gap: 40px; }
}

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

  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--charcoal);
    padding: 20px 24px;
    gap: 16px;
  }
  .nav-links.open a {
    color: var(--white);
    opacity: 0.7;
  }
  .nav-links.open a:hover {
    opacity: 1;
    color: var(--gold-light);
  }
  .nav-links.open .nav-cta {
    opacity: 1;
  }
  .nav.scrolled .nav-links.open { background: var(--charcoal); }

  .hero { min-height: 600px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

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

  .philosophy-grid { grid-template-columns: 1fr; }
  .philosophy-numbers { grid-template-columns: 1fr 1fr; }
  .philosophy-number { padding: 24px; }

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

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

  .booking-wrapper { grid-template-columns: 1fr; }
  .booking-wa-cta { text-align: center; }

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

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


  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .instagram-feed { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-cta-links { flex-direction: column; align-items: center; }
  .booking-contact-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}
