@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Public+Sans:wght@400;500;600;700&display=swap');

/* ================================
   BASE / TOKENS
================================ */
:root {
  --bg: #f3efe7;
  --card: #fbf8f2;
  --border: #eae1d1;
  --ink: #1f1b17;
  --text: #3a352b;
  --muted: #55503f;
  --soft: #8a7f6d;
  --gold: #c0801b;
  --gold-dk: #b06f0f;
  --green: #6d8a3e;
  --dark: #211d18;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Public Sans', Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 { font-family: var(--serif); color: var(--ink); font-weight: 600; line-height: 1.2; }
h2 { font-size: 1.9rem; margin: 0 0 12px; font-weight: 500; }
h3 { font-size: 1.28rem; margin: 0 0 10px; }
h4 { font-size: 1rem; margin: 18px 0 8px; color: var(--gold-dk); font-family: var(--sans); font-weight: 700; letter-spacing: .01em; }
h5 { font-size: .95rem; margin: 14px 0 6px; font-family: var(--sans); font-weight: 700; color: var(--text); }
p { font-size: .98rem; line-height: 1.65; color: var(--muted); }
a { color: var(--gold-dk); text-decoration: none; transition: color .2s ease; }
a:hover { color: #8a560b; }
img { max-width: 100%; }

/* ================================
   HEADER
================================ */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(243, 239, 231, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.branding { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.branding .logo, header img.logo {
  width: 46px; height: 46px; object-fit: contain; display: block; margin: 0;
}
.brand-text { display: flex; flex-direction: column; justify-content: center; line-height: 1; }
.branding .brand-name { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--ink); letter-spacing: .02em; }
.branding .brand-subtitle { font-size: .72rem; letter-spacing: .04em; color: var(--soft); margin-top: 4px; }

/* ================================
   NAVIGATION
================================ */
nav { margin-left: auto; display: flex; gap: 2px; align-items: center; flex-wrap: nowrap; }
nav a {
  color: var(--text) !important;
  margin: 0;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .01em;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease;
}
nav a:hover { background: #ece4d4; }
nav a.active { color: var(--ink) !important; background: #e8e0d1; border: none; padding-bottom: 8px; }

/* ================================
   LANGUAGE SELECTOR
================================ */
.language-box { flex-shrink: 0; }
.language-box select {
  padding: 8px 12px;
  font-size: .9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--ink);
  font-family: var(--sans);
  cursor: pointer;
}

/* ================================
   HERO
================================ */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 48px 40px !important;
  background: transparent;
  color: var(--ink);
  text-align: left;
}
.hero h2 { font-size: 2.6rem !important; font-weight: 500; color: var(--ink); }
.hero h3 { font-size: 1.5rem; color: var(--muted); font-family: var(--sans); font-weight: 500; }
.hero p { font-size: 1.08rem; color: var(--muted); max-width: 34rem; }

/* ================================
   SECTIONS + GRID
================================ */
.section { max-width: 1200px; margin: 0 auto; padding: 28px 48px; font-family: var(--sans); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  align-items: stretch;
}

/* ================================
   CARDS (service / section / package)
================================ */
.service-item, .service-section, .package-section {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px;
  text-align: left;
  background: var(--card);
  color: var(--text);
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-item:hover, .service-section:hover, .package-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 44px -22px rgba(31, 27, 23, 0.35);
}
.service-item img {
  width: 100%;
  max-width: 320px;
  height: 190px;
  object-fit: cover;
  margin-bottom: 18px;
  border-radius: 14px;
}
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #eef2e6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-item h3, .service-section h2, .service-section h3, .package-section h2, .package-section h3 { text-align: left; color: var(--ink); }
.service-item p, .service-section p, .package-section p { font-size: .96rem; line-height: 1.65; color: var(--muted); }

/* ================================
   LISTS — the bullet fix (global)
================================ */
.service-item ul,
.service-section ul,
.package-section ul,
.package-block ul,
.package-cancellation ul,
.about-text ul {
  list-style: none;
  margin: 12px 0 16px;
  padding: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.service-item li,
.service-section li,
.package-section li,
.package-block li,
.package-cancellation li,
.about-text li {
  position: relative;
  padding-left: 26px;
  font-size: .95rem;
  line-height: 1.5;
  color: var(--text);
}
.service-item li::before,
.service-section li::before,
.package-section li::before,
.package-block li::before,
.package-cancellation li::before,
.about-text li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .18em;
  width: 17px;
  height: 17px;
  background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='17' viewBox='0 0 24 24' fill='none' stroke='%236d8a3e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
/* Remove stray <br> spacing inside lists (legacy markup) */
.service-item li br,
.service-section li br,
.package-section li br,
.package-block li br { display: none; }
.service-item ul br, .service-section ul br, .package-section ul br, .package-block ul br { display: none; }

/* ================================
   BUTTONS / CTA
================================ */
button {
  background: var(--gold);
  color: var(--ink);
  padding: 12px 20px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 600;
}
.primary-btn, a.primary-btn {
  display: inline-block;
  padding: 13px 26px;
  background: var(--gold);
  color: var(--ink) !important;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease;
}
.primary-btn:hover { background: var(--gold-dk); transform: translateY(-2px); }
#openSecureEmail, a#openSecureEmail {
  background: var(--gold) !important;
  color: var(--ink) !important;
  border-radius: 999px !important;
  padding: 11px 22px !important;
  font-weight: 700;
}

/* ================================
   PACKAGES
================================ */
.package-block { margin-top: 22px; }
.package-block h3 { font-size: 1.1rem; }
.description { margin-top: 10px; font-style: italic; color: var(--soft); }
.price-options { margin: 10px 0; }
.center-wrapper { display: flex; justify-content: center; align-items: center; padding: 0 48px; }
.package-cancellation {
  max-width: 720px;
  margin: 12px auto 40px;
  padding: 30px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  text-align: left;
}
.package-cancellation h2 { font-size: 1.4rem; margin-bottom: 10px; }
.package-cancellation ul { display: block; }

/* ================================
   ABOUT
================================ */
.about-container { display: flex; flex-wrap: wrap; gap: 40px; align-items: stretch; max-width: 1200px; margin: 0 auto; }
.about-text { flex: 1 1 500px; display: flex; flex-direction: column; }
.about-text > .service-item { flex: 1; }
.about-image { flex: 1 1 400px; display: flex; }
.about-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 18px; box-shadow: 0 20px 50px -24px rgba(31,27,23,.4); }
@media (max-width: 768px) { .about-container { flex-direction: column; } .header-inner { padding: 0 20px; flex-wrap: wrap; } nav { margin: 8px 0; flex-wrap: wrap; } .section, .hero { padding-left: 20px !important; padding-right: 20px !important; } }

/* ================================
   CONTACT
================================ */
.contact-form {
  max-width: 600px; width: 100%; margin: 40px auto; padding: 36px;
  border: 1px solid var(--border); border-radius: 18px; background: var(--card);
}
.contact-form label { display: block; margin: 10px 0 5px; font-weight: 600; color: var(--ink); }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 11px; margin-bottom: 15px; border-radius: 10px; border: 1px solid #d9cfbd; background: #fff; font-family: var(--sans);
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form button { padding: 12px 22px; font-size: 1rem; }
.contact-form button:hover { background: var(--gold-dk); }
select option:disabled { background: #ccc; color: #666; }

.clinic-details {
  flex: 1 1 400px; padding: 30px; border: 1px solid var(--border);
  border-radius: 18px; background: var(--card);
}
.clinic-details h3 { margin-bottom: 10px; }
.clinic-details p { line-height: 1.6; margin: 0 0 14px; color: var(--muted); }
.clinic-details .qr-code { margin-top: 24px; }
.clinic-details .qr-code img { max-width: 150px; border-radius: 12px; }
.clinic-row { display: flex; align-items: center; gap: 20px; }
.qr-code { width: 150px; height: 150px; flex-shrink: 0; }
.clinic-row p { margin: 0 0 14px; line-height: 1.6; }
.clinic-details iframe { border-radius: 12px; }

/* ================================
   BOOKING
================================ */
.booking-wrapper { max-width: 900px; margin: 0 auto; padding: 0; }
.booking-content { background: var(--card); border: 1px solid var(--border); padding: 30px; border-radius: 18px; text-align: left; }
.booking-content h2 { margin-top: 0; }
.booking-button { text-align: left; margin-top: 22px; }

/* ================================
   TEAM
================================ */
.team-member { display: flex; align-items: center; margin-bottom: 30px; gap: 24px; }
.team-member img { width: 150px; height: 150px; object-fit: cover; border-radius: 50%; border: 3px solid var(--card); box-shadow: 0 8px 24px -12px rgba(31,27,23,.5); }
.team-member div { max-width: 800px; }

/* ================================
   GALLERY
================================ */
.gallery { display: flex; gap: 20px; padding: 20px 0; flex-wrap: wrap; }
.gallery-item { flex: 1; display: flex; flex-direction: column; margin-bottom: 20px; }
.gallery-item img { width: 100%; height: 220px; object-fit: cover; border-radius: 14px; }
.gallery-item h3 { margin: 12px 0 5px; }
.gallery-item p { font-size: .95rem; line-height: 1.6; }

/* ================================
   BLOG
================================ */
.blog-container {
  max-width: 1200px; margin: 0 auto; padding: 28px 48px;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px;
}
.blog-post {
  background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 28px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: transform .25s ease, box-shadow .25s ease;
}
.blog-post:hover { transform: translateY(-5px); box-shadow: 0 20px 44px -22px rgba(31,27,23,.35); }
.blog-post h2 { font-size: 1.3rem; margin-bottom: 8px; }
.blog-meta { font-size: .82rem; color: var(--soft); margin-bottom: 14px; }
.blog-post p { line-height: 1.6; color: var(--muted); margin: 0 0 16px; }

/* ================================
   FOOTER
================================ */
footer { margin-top: 56px; background: var(--dark); color: #d8d0c1; }
.footer-content {
  max-width: 1200px; margin: 0 auto; padding: 40px 48px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px;
}
.footer-content p { color: #9a9081; margin: 0; font-size: .85rem; }
.footer-links { display: flex; gap: 22px; align-items: center; }
.footer-links a { color: #d8d0c1; text-decoration: none; font-size: .9rem; margin: 0; }
.footer-links a:hover { color: #fff; text-decoration: underline; }
footer a.active { color: var(--gold); border: none; }
.footer-credit { text-align: center; padding: 16px 48px; border-top: 1px solid rgba(255,255,255,0.08); color: #9a9081; font-size: .85rem; }

main, .content-wrapper { flex: 1; }

/* ================================
   SECTION HEADINGS / EYEBROW
================================ */
.section-head { text-align: center; max-width: 42rem; margin: 0 auto 40px; }
.eyebrow { font-size: .8rem; font-weight: 700; letter-spacing: .14em; color: var(--gold-dk); text-transform: uppercase; font-family: var(--sans); }
.section-head h2 { font-size: 2.3rem; margin: 12px 0 0; font-weight: 500; }
.section-tight { padding-top: 8px; padding-bottom: 8px; }

/* ================================
   FEATURE STRIP (pillars)
================================ */
.feature-strip { max-width: 1200px; margin: 0 auto; padding: 8px 48px 24px; }
.feature-strip .pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pillar { display: flex; align-items: center; gap: 12px; padding: 16px 18px; background: var(--card); border: 1px solid var(--border); border-radius: 14px; }
.pillar .p-icon { width: 40px; height: 40px; border-radius: 10px; background: #eef2e6; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pillar span { font-size: .92rem; font-weight: 600; color: var(--text); line-height: 1.25; }
@media (max-width: 900px) { .feature-strip .pillars { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .feature-strip .pillars { grid-template-columns: 1fr; } }

/* ================================
   CARD SUB / FOOTER / BADGE
================================ */
.service-item { position: relative; display: flex; flex-direction: column; }
.service-item .card-sub { font-size: .95rem; font-weight: 600; color: #8a560b; margin: 10px 0 0; font-family: var(--sans); }
.service-item .card-foot { font-size: .92rem; line-height: 1.6; color: var(--muted); margin: 16px 0 0; font-style: italic; }
.badge-featured { position: absolute; top: 20px; right: 20px; padding: 5px 12px; border-radius: 999px; background: var(--gold); color: #201a0f; font-size: .7rem; font-weight: 700; letter-spacing: .05em; }

/* ================================
   DARK BANNER (integrated care)
================================ */
.dark-banner { max-width: 1200px; margin: 0 auto; padding: 24px 48px; }
.dark-banner .inner { border-radius: 22px; background: linear-gradient(135deg, #211d18, #3a3226); color: #f3efe7; padding: 48px 52px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.dark-banner h2 { color: #f3efe7; font-size: 1.9rem; margin: 0; font-weight: 500; }
.dark-banner .db-sub { font-size: .98rem; color: var(--gold); font-weight: 600; margin: 4px 0 0; }
.dark-banner .db-lead { font-size: 1rem; line-height: 1.6; color: #d8d0c1; margin: 20px 0 0; }
.dark-banner .db-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(192,128,27,.22); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dark-banner ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; }
.dark-banner li { position: relative; padding-left: 26px; font-size: .96rem; line-height: 1.45; color: #ece6da; }
.dark-banner li::before { content: ""; position: absolute; left: 0; top: .18em; width: 17px; height: 17px; background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='17' viewBox='0 0 24 24' fill='none' stroke='%23d7a24e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); }
@media (max-width: 820px) { .dark-banner .inner { grid-template-columns: 1fr; padding: 36px 28px; } .dark-banner ul { grid-template-columns: 1fr; } }

/* ================================
   FAQ (native accordion)
================================ */
.faq-wrap { max-width: 900px; margin: 0 auto; padding: 24px 48px; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 4px 24px; }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 0; font-size: 1.05rem; font-weight: 600; color: var(--ink); font-family: var(--serif); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--gold-dk); font-size: 1.5rem; line-height: 1; flex-shrink: 0; }
.faq-item[open] summary::after { content: "\2013"; }
.faq-item p { font-size: .96rem; line-height: 1.6; color: var(--muted); margin: 0 0 18px; }

/* ================================
   CTA BAND
================================ */
.cta-band { max-width: 1200px; margin: 56px auto 0; padding: 0 48px; }
.cta-band .inner { border-radius: 22px; background: #ece4d4; padding: 48px; text-align: center; }
.cta-band h2 { font-size: 2.1rem; margin: 0; font-weight: 500; }
.cta-band p { font-size: 1.05rem; color: var(--muted); margin: 14px auto 0; max-width: 34rem; }
.btn-dark { display: inline-flex; align-items: center; gap: 10px; padding: 15px 32px; border-radius: 999px; background: var(--ink); color: #f3efe7 !important; font-weight: 700; font-size: 1.05rem; text-decoration: none; margin-top: 28px; }
.btn-gold { display: inline-flex; align-items: center; gap: 9px; padding: 13px 24px; border-radius: 999px; background: var(--gold); color: #201a0f !important; font-weight: 700; text-decoration: none; }

/* ================================
   CALL US PAGE
================================ */
.callus-wrap { max-width: 1000px; margin: 0 auto; padding: 8px 48px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: start; }
.callus-hero { text-align: center; max-width: 46rem; margin: 8px auto 8px; }
.call-primary { display: block; text-align: center; padding: 34px; background: linear-gradient(135deg, #211d18, #3a3226); border-radius: 20px; color: #f3efe7; text-decoration: none; }
.call-primary .num { font-family: var(--serif); font-size: 2.4rem; color: #f3efe7; margin: 10px 0 0; line-height: 1.1; }
.call-primary .lbl { font-size: .8rem; letter-spacing: .14em; color: var(--gold); text-transform: uppercase; font-weight: 700; }
.call-primary .note { font-size: .9rem; color: #d8d0c1; margin: 12px 0 0; }
.call-rows { display: flex; flex-direction: column; gap: 14px; }
.call-row { display: flex; gap: 14px; align-items: flex-start; padding: 20px; background: var(--card); border: 1px solid var(--border); border-radius: 16px; }
.call-row .p-icon { width: 44px; height: 44px; border-radius: 12px; background: #eef2e6; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.call-row h3 { margin: 0 0 4px; font-size: 1.1rem; }
.call-row p { margin: 0; font-size: .95rem; color: var(--muted); line-height: 1.5; }
.call-row a { font-weight: 600; }
@media (max-width: 820px) { .callus-wrap { grid-template-columns: 1fr; } }
