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

/* ===== DESIGN SYSTEM ===== */
:root {
  --teal: #009E78;
  --teal-dark: #007A5E;
  --teal-deep: #005C46;
  --teal-light: #00C896;
  --teal-pale: #E8F7F3;
  --teal-mist: #F0FBF7;
  --gold: #C9A96E;
  --white: #FFFFFF;
  --off-white: #FAFAF8;
  --cream: #F5F3EE;
  --charcoal: #1A1A1A;
  --slate: #3D4A47;
  --grey: #6B7B78;
  --grey-light: #B8C5C2;
  --border: #E2EDEA;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;

  --shadow-sm: 0 2px 8px rgba(0,158,120,0.08);
  --shadow-md: 0 8px 32px rgba(0,158,120,0.12);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.10);
  --shadow-teal: 0 8px 32px rgba(0,158,120,0.25);

  --radius: 4px;
  --radius-lg: 16px;
  --radius-xl: 32px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; }
h1 { font-size: clamp(3rem, 7vw, 6rem); font-weight: 300; letter-spacing: -0.02em; }
h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 300; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 400; }
h4 { font-size: 1.2rem; font-weight: 600; }

p { font-size: 1rem; line-height: 1.75; color: var(--slate); }

.serif { font-family: var(--font-display); }
.teal { color: var(--teal); }
.italic { font-style: italic; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }

section { padding: 5rem 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius);
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: var(--shadow-teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,158,120,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--teal);
  box-shadow: var(--shadow-lg);
}
.btn-white:hover {
  background: var(--teal-pale);
  transform: translateY(-2px);
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  padding: 0.85rem 0;
}

.navbar.scrolled .nav-logo-text { color: var(--teal); }
.navbar.scrolled .nav-link { color: var(--charcoal); }
.navbar.scrolled .nav-link:hover { color: var(--teal); }

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  transition: var(--transition);
}

.nav-logo-text span {
  display: block;
  font-size: 0.55rem;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.8;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--teal-light);
  transition: var(--transition);
}

.nav-link:hover { color: var(--white); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.nav-cta {
  margin-left: 1rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--charcoal); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 50%, var(--teal-light) 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  animation: float 8s ease-in-out infinite;
}
.hero-orb-1 { width: 500px; height: 500px; top: -100px; right: -100px; animation-delay: 0s; }
.hero-orb-2 { width: 300px; height: 300px; bottom: 50px; left: -80px; animation-delay: 3s; }
.hero-orb-3 { width: 200px; height: 200px; top: 40%; right: 20%; animation-delay: 5s; }

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s ease both;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--teal-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero h1 em {
  font-style: italic;
  color: rgba(255,255,255,0.75);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  max-width: 540px;
  margin-bottom: 3rem;
  animation: fadeUp 0.8s 0.4s ease both;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.6s ease both;
}

.hero-stats {
  position: absolute;
  bottom: 3rem;
  right: 0;
  display: flex;
  gap: 2rem;
  animation: fadeUp 0.8s 0.8s ease both;
}

.hero-stat {
  text-align: center;
  color: var(--white);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 0.25rem;
}

/* ===== SECTION LABELS ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--teal);
}

/* ===== ABOUT ===== */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-card-main {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: var(--radius-xl);
  padding: 3rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.about-card-main::after {
  content: '❤';
  position: absolute;
  bottom: -20px; right: 20px;
  font-size: 120px;
  opacity: 0.06;
}

.about-card-float {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 200px;
}

.about-card-float-icon {
  width: 48px; height: 48px;
  background: var(--teal-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.about-card-float-text strong {
  display: block;
  font-size: 1.25rem;
  color: var(--teal);
  font-family: var(--font-display);
}

.about-card-float-text span {
  font-size: 0.78rem;
  color: var(--grey);
}

.values-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem;
  background: var(--teal-mist);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--teal);
  transition: var(--transition);
}
.value-item:hover {
  background: var(--teal-pale);
  transform: translateY(-2px);
}

.value-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.value-item h4 { font-size: 0.9rem; color: var(--teal-dark); margin-bottom: 0.25rem; }
.value-item p { font-size: 0.82rem; color: var(--slate); line-height: 1.5; }

/* ===== SERVICES ===== */
.services { background: var(--cream); }

.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px;
  background: var(--teal-pale);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--teal);
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}
.service-card p { font-size: 0.875rem; }

.service-card-featured {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  border-color: transparent;
}
.service-card-featured::before { display: none; }
.service-card-featured h3 { color: var(--white); }
.service-card-featured p { color: rgba(255,255,255,0.75); }
.service-card-featured .service-icon { background: rgba(255,255,255,0.15); }
.service-card-featured:hover { box-shadow: var(--shadow-teal); }

/* ===== GOALS & BENEFITS ===== */
.goals { background: var(--white); }

.goals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.goal-block {
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.goal-block-goals { background: linear-gradient(135deg, var(--teal-deep), var(--teal)); }
.goal-block-objectives { background: var(--teal-mist); border: 1px solid var(--border); }
.goal-block-benefits { background: var(--cream); border: 1px solid var(--border); }

.goal-block h3 {
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.goal-block-goals h3 { color: var(--white); }
.goal-block-objectives h3,
.goal-block-benefits h3 { color: var(--teal-dark); }

.goal-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
}
.goal-block-goals .goal-list li { color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.1); }
.goal-block-objectives .goal-list li,
.goal-block-benefits .goal-list li { color: var(--slate); border-color: var(--border); }

.goal-list li:last-child { border-bottom: none; }

.goal-bullet {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}
.goal-block-goals .goal-bullet { background: var(--teal-light); }
.goal-block-objectives .goal-bullet,
.goal-block-benefits .goal-bullet { background: var(--teal); }

/* ===== TEAM ===== */
.team { background: var(--cream); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem 1.75rem;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.team-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0,158,120,0.2);
}

.team-card:hover::after { transform: scaleX(1); }

.team-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  overflow: hidden;
  border: 3px solid rgba(0,158,120,0.15);
  box-shadow: 0 4px 16px rgba(0,158,120,0.12);
  background: var(--teal-pale);
  transition: var(--transition);
  position: relative;
}

.team-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: var(--transition);
}

/* Fallback placeholder shown when no image is set */
.team-icon .team-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--teal-pale), #d0f0e8);
  color: var(--teal);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  gap: 4px;
}

.team-icon .team-placeholder svg {
  width: 40px;
  height: 40px;
  opacity: 0.5;
}

.team-card:hover .team-icon {
  border-color: rgba(0,158,120,0.35);
  box-shadow: 0 8px 28px rgba(0,158,120,0.2);
  transform: scale(1.04);
}

.team-card:hover .team-icon img {
  transform: scale(1.06);
}

.team-card h4 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.35rem; }
.team-card p { font-size: 0.82rem; color: var(--grey); line-height: 1.55; }

/* ===== CONFIDENTIALITY ===== */
.confidentiality {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal-dark) 100%);
  position: relative;
  overflow: hidden;
}

.confidentiality::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.conf-inner {
  position: relative;
  z-index: 1;
}

.conf-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.conf-header .section-label { color: var(--teal-light); }
.conf-header .section-label::before { background: var(--teal-light); }
.conf-header h2 { color: var(--white); }

.conf-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.conf-item {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  gap: 1.25rem;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.conf-item:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

.conf-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.conf-item h4 { color: var(--white); font-size: 1rem; margin-bottom: 0.5rem; }
.conf-item p { color: rgba(255,255,255,0.7); font-size: 0.875rem; }

/* ===== BOOKING ===== */
.booking { background: var(--off-white); }

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.booking-info h2 { margin-bottom: 1.5rem; }
.booking-info p { margin-bottom: 2rem; }

.booking-sectors {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

.sector-tag {
  padding: 0.4rem 1rem;
  background: var(--teal-pale);
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 500;
  border-radius: 100px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.sector-tag:hover, .sector-tag.active {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.booking-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.form-subtitle { font-size: 0.875rem; color: var(--grey); margin-bottom: 2rem; }

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  outline: none;
  transition: var(--transition);
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0,158,120,0.1);
}

.form-group textarea { height: 120px; resize: vertical; }

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

.form-submit {
  width: 100%;
  margin-top: 0.5rem;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 0.95rem;
}

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--grey);
  margin-top: 1rem;
}

/* ===== CONTACT ===== */
.contact { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-items { margin-top: 2.5rem; }

.contact-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-child { border-bottom: none; }

.contact-item-icon {
  width: 48px; height: 48px;
  background: var(--teal-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.35rem;
}
.contact-item p, .contact-item a {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.6;
}
.contact-item a:hover { color: var(--teal); }

.contact-map {
  background: var(--cream);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-placeholder {
  height: 280px;
  background: linear-gradient(135deg, var(--teal-mist), var(--teal-pale));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  gap: 0.75rem;
}
.map-placeholder p {
  font-size: 0.875rem;
  color: var(--teal-dark);
}

.contact-card {
  padding: 2rem;
}

.contact-card h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.contact-numbers {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.contact-numbers a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--teal);
  font-family: var(--font-display);
}
.contact-numbers a:hover { color: var(--teal-dark); }

/* ===== FOOTER ===== */
.footer {
  background: var(--charcoal);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.875rem; margin-top: 1rem; line-height: 1.7; }

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--white);
  font-weight: 600;
  line-height: 1;
}
.footer-logo-text span {
  display: block;
  font-size: 0.5rem;
  font-family: var(--font-body);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-top: 2px;
}

.footer-tagline {
  font-style: italic;
  font-family: var(--font-display);
  color: var(--teal-light) !important;
  margin-top: 0.25rem !important;
  font-size: 0.9rem !important;
}

.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--teal-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-bottom .teal { color: var(--teal-light); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ===== SUCCESS MESSAGE ===== */
.success-message {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--teal);
}
.success-message.show { display: block; }
.success-icon { font-size: 3rem; margin-bottom: 1rem; }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-nav.open { display: flex; }
.mobile-nav .nav-link {
  color: var(--charcoal);
  font-size: 1.5rem;
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: 0.05em;
}
.mobile-nav .nav-link:hover { color: var(--teal); }
.mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--charcoal);
  background: none;
  border: none;
  font-family: var(--font-body);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .goals-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .services-intro { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-stats { position: relative; bottom: auto; margin-top: 3rem; justify-content: flex-start; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .conf-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .values-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .about-card-float { position: relative; bottom: auto; right: auto; margin-top: 1.5rem; }
}