/* ═══════════════════════════════════════════════════════
   ATLAS UROLOGY — Design System
   Theme: Charcoal & Teal | Modern Clinical
═══════════════════════════════════════════════════════ */

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

/* ── CSS Variables ────────────────────────────────────── */
:root {
  --charcoal:      #1e2a32;
  --charcoal-deep: #141e24;
  --charcoal-mid:  #2c3e4a;
  --charcoal-soft: #3d5263;
  --teal:          #1a9e8f;
  --teal-light:    #22c4b2;
  --teal-pale:     #e6f7f5;
  --teal-mid:      #0d8a7c;
  --white:         #ffffff;
  --off-white:     #f5f7f8;
  --light-gray:    #eaedf0;
  --mid-gray:      #8fa0ac;
  --text-dark:     #1e2a32;
  --text-body:     #3d5263;
  --text-light:    #6e8899;

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Outfit', system-ui, sans-serif;

  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(30,42,50,0.08);
  --shadow:    0 4px 20px rgba(30,42,50,0.12);
  --shadow-lg: 0 8px 40px rgba(30,42,50,0.18);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);

  --max-width: 1200px;
  --nav-height: 70px;
}

/* ── Reset ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-mid); }
ul { list-style: none; }

/* ── Typography ───────────────────────────────────────── */
h1, h2, h3 { font-family: var(--serif); color: var(--charcoal); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-family: var(--sans); font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--teal); }
p { color: var(--text-body); }

/* ── Navigation ───────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: var(--charcoal-deep);
  border-bottom: 2px solid var(--teal);
  display: flex;
  align-items: center;
  padding: 0 2rem;
}
.nav-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.nav-logo-mark {
  width: 36px; height: 36px;
  background: var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-mark svg { width: 20px; height: 20px; fill: white; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text span:first-child {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 600;
}
.nav-logo-text span:last-child {
  font-size: 0.65rem;
  color: var(--teal-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block;
  padding: 0.5rem 0.75rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-links > li > a:hover { color: var(--teal-light); background: rgba(255,255,255,0.05); }
.nav-links > li > a.active { color: var(--teal-light); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.7rem; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 210px;
  background: var(--charcoal);
  border: 1px solid rgba(26,158,143,0.3);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  z-index: 200;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 0.65rem 1.1rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background: rgba(26,158,143,0.15); color: var(--teal-light); }

/* CTA nav buttons */
.nav-cta-phone {
  color: var(--teal-light) !important;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
}
.nav-cta-btn {
  background: var(--teal) !important;
  color: white !important;
  padding: 0.45rem 1rem !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
  font-size: 0.82rem !important;
}
.nav-cta-btn:hover { background: var(--teal-mid) !important; color: white !important; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile Nav */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0; bottom: 0;
  background: var(--charcoal-deep);
  z-index: 999;
  overflow-y: auto;
  padding: 1.5rem;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 0.9rem 0;
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-weight: 500;
}
.mobile-menu a:hover { color: var(--teal-light); }
.mobile-menu .mobile-cta {
  margin-top: 1.5rem;
  display: block;
  text-align: center;
  background: var(--teal);
  color: white !important;
  padding: 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  border-bottom: none;
}

/* ── Page Offset for Fixed Nav ───────────────────────── */
.page-body { padding-top: var(--nav-height); }

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--charcoal-deep) 0%, var(--charcoal-mid) 60%, #1a3a40 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 75% 50%, rgba(26,158,143,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 30% 40% at 20% 80%, rgba(26,158,143,0.08) 0%, transparent 60%);
}
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(26,158,143,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,158,143,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 2rem;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 1.25rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--teal-light);
}
.hero h1 {
  font-family: var(--serif);
  color: var(--white);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.1;
  max-width: 680px;
  margin-bottom: 1.25rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--teal-light);
}
.hero-sub {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 2.25rem;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  max-width: 720px;
  margin-top: 1.5rem;
}
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(26,158,143,0.25);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all var(--transition);
  color: white;
  text-decoration: none;
}
.hero-card:hover {
  background: rgba(26,158,143,0.15);
  border-color: var(--teal);
  color: white;
  transform: translateY(-2px);
}
.hero-card-icon {
  width: 44px; height: 44px;
  background: var(--teal);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-card-icon svg { width: 22px; height: 22px; fill: white; }
.hero-card-text strong { display: block; font-size: 0.9rem; font-weight: 600; color: white; }
.hero-card-text span { font-size: 0.78rem; color: rgba(255,255,255,0.6); }

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: white;
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-mid);
  border-color: var(--teal-mid);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(26,158,143,0.4);
}
.btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--teal-light);
  color: var(--teal-light);
}
.btn-outline-dark {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline-dark:hover {
  background: var(--teal);
  color: white;
}

/* ── Section Shared ───────────────────────────────────── */
.section { padding: 5rem 2rem; }
.section-sm { padding: 3.5rem 2rem; }
.container { max-width: var(--max-width); margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h4 { margin-bottom: 0.5rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { color: var(--text-light); max-width: 560px; margin: 0 auto; }

.bg-off-white { background: var(--off-white); }
.bg-charcoal { background: var(--charcoal); }
.bg-charcoal-deep { background: var(--charcoal-deep); }
.bg-teal-pale { background: var(--teal-pale); }

/* ── Info Strip ───────────────────────────────────────── */
.info-strip {
  background: var(--teal);
  padding: 0.9rem 2rem;
}
.info-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.info-strip-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-size: 0.85rem;
  font-weight: 500;
}
.info-strip-item svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.8); flex-shrink: 0; }
.info-strip-item a { color: white; font-weight: 600; }
.info-strip-item a:hover { color: rgba(255,255,255,0.75); }

/* ── Services Grid ────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
  text-decoration: none;
  display: block;
}
.service-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.service-card-icon {
  width: 52px; height: 52px;
  background: var(--teal-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.service-card-icon svg { width: 26px; height: 26px; stroke: var(--teal); fill: none; stroke-width: 1.8; }
.service-card h3 {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
}
.service-card:hover h3 { color: var(--teal); }

/* ── Testimonials ─────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem; left: 1.25rem;
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--teal);
  line-height: 1;
  opacity: 0.3;
}
.testimonial-card p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-body);
  font-style: italic;
  padding-top: 1rem;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 0.75rem;
}
.testimonial-stars span { color: #f59e0b; font-size: 0.95rem; }

/* ── Provider Cards ───────────────────────────────────── */
.providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.provider-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.provider-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.provider-card-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top center;
  background: var(--light-gray);
}
.provider-card-img-placeholder {
  width: 100%;
  height: 260px;
  background: linear-gradient(135deg, var(--charcoal-mid), var(--charcoal));
  display: flex; align-items: center; justify-content: center;
}
.provider-card-img-placeholder svg { width: 64px; height: 64px; fill: rgba(255,255,255,0.2); }
.provider-card-body { padding: 1.75rem; }
.provider-card-body h4 { margin-bottom: 0.25rem; }
.provider-card-body h3 { font-family: var(--sans); font-size: 1.2rem; margin-bottom: 0.25rem; }
.provider-cred {
  font-size: 0.8rem;
  color: var(--mid-gray);
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}
.provider-card-body p { font-size: 0.9rem; line-height: 1.65; }

/* ── Contact Grid ─────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}
.contact-item {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
}
.contact-item:hover { border-color: var(--teal); box-shadow: var(--shadow); }
.contact-item-icon {
  width: 48px; height: 48px;
  background: var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.contact-item-icon svg { width: 22px; height: 22px; fill: white; }
.contact-item h4 { margin-bottom: 0.4rem; font-size: 0.75rem; }
.contact-item p, .contact-item a {
  font-size: 0.92rem;
  color: var(--text-dark);
  font-weight: 500;
}
.contact-item a:hover { color: var(--teal); }

/* ── Office Hours Card ────────────────────────────────── */
.office-info-card {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: white;
}
.office-info-card h3 {
  color: var(--teal-light);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.9rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: rgba(255,255,255,0.7); }
.hours-row .time { color: white; font-weight: 500; }

/* ── CTA Banner ───────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--charcoal-deep), var(--charcoal-mid));
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 70% at 50% 50%, rgba(26,158,143,0.15) 0%, transparent 70%);
}
.cta-banner h2 { color: white; position: relative; z-index: 1; margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.7); position: relative; z-index: 1; margin-bottom: 2rem; }
.cta-banner-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── Page Header (inner pages) ────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--charcoal-deep), var(--charcoal-mid));
  padding: 4rem 2rem 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 40% 60% at 80% 50%, rgba(26,158,143,0.15) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 0.75rem;
}
.page-hero h1 { color: white; margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 560px; }

/* ── Two-col layout ───────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .two-col.reverse { direction: ltr; }
}

/* ── Condition Lists ──────────────────────────────────── */
.conditions-section { margin-bottom: 2.5rem; }
.conditions-section h3 {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--teal-pale);
}
.conditions-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.4rem;
}
.conditions-list li {
  font-size: 0.88rem;
  color: var(--text-body);
  padding: 0.4rem 0;
  padding-left: 1rem;
  position: relative;
}
.conditions-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 0.75rem;
}

/* ── Patient Docs ─────────────────────────────────────── */
.doc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.75rem;
}
.doc-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  transition: all var(--transition);
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.88rem;
  font-weight: 500;
}
.doc-link:hover {
  border-color: var(--teal);
  background: var(--teal-pale);
  color: var(--teal-mid);
}
.doc-link svg { width: 18px; height: 18px; fill: var(--teal); flex-shrink: 0; }

/* ── Bitcoin Resource Lists ───────────────────────────── */
.bitcoin-category { margin-bottom: 2.5rem; }
.bitcoin-category h3 {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #f7931a;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(247,147,26,0.2);
}
.bitcoin-links { display: flex; flex-direction: column; gap: 0.4rem; }
.bitcoin-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.9rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  transition: all var(--transition);
}
.bitcoin-link:hover {
  background: rgba(247,147,26,0.1);
  border-color: rgba(247,147,26,0.3);
  color: #f7931a;
}
.bitcoin-link svg { width: 14px; height: 14px; fill: rgba(247,147,26,0.6); flex-shrink: 0; }

/* ── Price Table ──────────────────────────────────────── */
.price-table { width: 100%; border-collapse: collapse; }
.price-table th {
  background: var(--charcoal);
  color: white;
  padding: 0.85rem 1.25rem;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.price-table th:last-child { text-align: right; }
.price-table td {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.9rem;
  color: var(--text-body);
}
.price-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--teal-mid);
}
.price-table tr:nth-child(even) td { background: var(--off-white); }
.price-table tr:hover td { background: var(--teal-pale); }

/* ── Associations ─────────────────────────────────────── */
.assoc-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2rem;
  opacity: 0.65;
  filter: grayscale(100%);
}
.assoc-row img { height: 48px; width: auto; }

/* ── Map Embed ────────────────────────────────────────── */
.map-embed {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: var(--radius-lg);
  display: block;
}

/* ── Concierge Features ───────────────────────────────── */
.concierge-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.concierge-feature {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(26,158,143,0.2);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all var(--transition);
}
.concierge-feature:hover {
  border-color: var(--teal);
  background: rgba(26,158,143,0.08);
}
.concierge-feature-icon {
  width: 44px; height: 44px;
  background: var(--teal);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.concierge-feature-icon svg { width: 22px; height: 22px; fill: white; }
.concierge-feature h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}
.concierge-feature p { font-size: 0.88rem; color: rgba(255,255,255,0.65); }

/* ── Contact Form ─────────────────────────────────────── */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-size: 0.92rem;
  color: var(--text-dark);
  transition: border-color var(--transition);
  background: white;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26,158,143,0.12);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-note {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

/* ── Footer ───────────────────────────────────────────── */
footer {
  background: var(--charcoal-deep);
  border-top: 2px solid var(--teal);
  padding: 3.5rem 2rem 2rem;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  line-height: 1.65;
  max-width: 240px;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}
.footer-social a:hover { background: var(--teal); color: white; }
.footer-col h4 {
  color: var(--teal-light);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--teal-light); }
.footer-col p {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  line-height: 1.7;
}
.footer-col a {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
}
.footer-col a:hover { color: var(--teal-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.8rem; }

/* ── Animations ───────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease forwards; }
.fade-up-d1 { animation-delay: 0.1s; opacity: 0; animation: fadeUp 0.6s 0.1s ease forwards; }
.fade-up-d2 { animation-delay: 0.2s; opacity: 0; animation: fadeUp 0.6s 0.2s ease forwards; }
.fade-up-d3 { animation-delay: 0.3s; opacity: 0; animation: fadeUp 0.6s 0.3s ease forwards; }
.fade-up-d4 { animation-delay: 0.4s; opacity: 0; animation: fadeUp 0.6s 0.4s ease forwards; }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .nav-links { gap: 0; }
  .nav-links > li > a { padding: 0.5rem 0.5rem; font-size: 0.8rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .section { padding: 3.5rem 1.25rem; }
  .section-sm { padding: 2.5rem 1.25rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { min-height: 70vh; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .info-strip-inner { justify-content: center; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .two-col { gap: 1.5rem; }
}
