/* ============================================
   Robert T. Buchanan, MD — Plastic Surgery
   Custom Styles
   ============================================ */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  overflow-x: hidden;
  position: relative;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ============================================
   Geometric Background Shapes
   ============================================ */
.geo-shapes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.geo-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.04;
}

.geo-circle--1 {
  width: 600px;
  height: 600px;
  background: #6B1B2A;
  top: -200px;
  right: -150px;
}

.geo-circle--2 {
  width: 400px;
  height: 400px;
  background: #6B1B2A;
  bottom: 20%;
  left: -100px;
}

.geo-circle--3 {
  width: 200px;
  height: 200px;
  background: #6B1B2A;
  top: 50%;
  right: 10%;
  opacity: 0.03;
}

.geo-tri {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0.03;
}

.geo-tri--1 {
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
  border-bottom: 170px solid #6B1B2A;
  top: 30%;
  left: 5%;
  transform: rotate(15deg);
}

.geo-rect {
  position: absolute;
  width: 120px;
  height: 120px;
  background: #6B1B2A;
  opacity: 0.02;
  border-radius: 20px;
  top: 60%;
  right: 5%;
  transform: rotate(45deg);
}

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

/* ============================================
   Navigation
   ============================================ */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(254, 252, 250, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(107, 27, 42, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-header.scrolled {
  background: rgba(254, 252, 250, 0.95);
  box-shadow: 0 4px 30px rgba(107, 27, 42, 0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.nav-logo-mark {
  width: 42px;
  height: 42px;
  background: #6B1B2A;
  color: #FDF3F0;
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  letter-spacing: 0.05em;
  transition: transform 0.3s ease;
}

.nav-logo:hover .nav-logo-mark {
  transform: rotate(-5deg) scale(1.05);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  color: #2C2A27;
}

.nav-logo-sub {
  font-size: 11px;
  color: #6B1B2A;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.nav-link {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #5C5954;
  border-radius: 8px;
  transition: all 0.25s ease;
  position: relative;
}

.nav-link:hover {
  color: #6B1B2A;
  background: rgba(107, 27, 42, 0.06);
}

.nav-link--cta {
  background: #6B1B2A;
  color: #FDF3F0 !important;
  margin-left: 8px;
}

.nav-link--cta:hover {
  background: #4A0E1C;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(107, 27, 42, 0.3);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  z-index: 1001;
}

.nav-toggle-bar {
  width: 100%;
  height: 2px;
  background: #2C2A27;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu-bg {
  position: absolute;
  inset: 0;
  background: rgba(44, 42, 39, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu.open .mobile-menu-bg {
  opacity: 1;
}

.mobile-menu-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 85vw;
  height: 100%;
  background: #FEFCFA;
  padding: 100px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 40px rgba(0,0,0,0.1);
}

.mobile-menu.open .mobile-menu-inner {
  transform: translateX(0);
}

.mobile-menu-link {
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 500;
  color: #2C2A27;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.mobile-menu-link:hover {
  background: rgba(107, 27, 42, 0.06);
  color: #6B1B2A;
}

.mobile-menu-link--cta {
  background: #6B1B2A;
  color: #FDF3F0 !important;
  text-align: center;
  margin-top: 16px;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn--primary {
  background: #6B1B2A;
  color: #FDF3F0;
  box-shadow: 0 4px 20px rgba(107, 27, 42, 0.25);
}

.btn--primary:hover {
  background: #4A0E1C;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(107, 27, 42, 0.35);
}

.btn--ghost {
  background: transparent;
  color: #6B1B2A;
  border: 1.5px solid rgba(107, 27, 42, 0.3);
}

.btn--ghost:hover {
  background: rgba(107, 27, 42, 0.06);
  border-color: #6B1B2A;
}

.btn--white {
  background: #fff;
  color: #6B1B2A;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn--white:hover {
  background: #FDF3F0;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
}

.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ============================================
   Section Labels & Titles
   ============================================ */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6B1B2A;
  margin-bottom: 16px;
}

.section-label-line {
  width: 32px;
  height: 2px;
  background: #6B1B2A;
  border-radius: 2px;
  flex-shrink: 0;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: #2C2A27;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: #5C5954;
  max-width: 560px;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #FDF3F0 0%, #FEFCFA 40%, #F5D5CC 100%);
}

.hero-bg-shapes {
 
