/* ============================================================
   SoTul Aesthetics LLC — Brand Stylesheet
   Colors: cream #E8E4E0, charcoal #2C2C2C, teal #7CC9C4
   ============================================================ */

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

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:     #E8E4E0;
  --cream-alt: #F2EFEB;
  --charcoal:  #2C2C2C;
  --teal:      #7CC9C4;
  --teal-dark: #5BA9A5;
  --teal-light:#B0DEDD;
  --white:     #FFFFFF;
  --serif:     'Cormorant Garamond', Georgia, serif;
  --serif-sc:  'Cormorant SC', Georgia, serif;
  --sans:      -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

body {
  background-color: var(--cream);
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: 1.125rem;
  line-height: 1.7;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif-sc);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--teal-dark); text-decoration: none; }
a:hover { color: var(--charcoal); }

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

/* ---- Utility ---- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---- Nav ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid rgba(124,201,196,0.25);
  backdrop-filter: blur(8px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

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

.nav-logo img {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-logo-name {
  font-family: var(--serif-sc);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  font-weight: 600;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--serif-sc);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--charcoal);
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--teal-dark); }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  margin: 5px 0;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-mobile {
  display: none;
  background: var(--cream);
  border-top: 1px solid rgba(124,201,196,0.2);
  padding: 1rem 1.5rem;
}

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

.nav-mobile a {
  display: block;
  font-family: var(--serif-sc);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(124,201,196,0.15);
}

.nav-mobile a:last-child { border-bottom: none; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: var(--serif-sc);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border: 1.5px solid var(--charcoal);
  color: var(--charcoal);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-align: center;
  line-height: 1.4;
}

.btn:hover {
  background: var(--charcoal);
  color: var(--cream);
}

.btn-teal {
  border-color: var(--teal);
  color: var(--teal-dark);
}

.btn-teal:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.btn-filled {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.btn-filled:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.btn-filled-dark {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--cream);
}

.btn-filled-dark:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
}

/* ---- Section spacing ---- */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 { margin-bottom: 0.75rem; }

.section-header .subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: #777;
}

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(124,201,196,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(124,201,196,0.08) 0%, transparent 45%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-text { position: relative; z-index: 1; }

.hero-eyebrow {
  font-family: var(--serif-sc);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 1.25rem;
}

.hero h1 {
  margin-bottom: 1rem;
  font-weight: 400;
}

.hero-tagline {
  font-size: 1.3rem;
  font-style: italic;
  color: #666;
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

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

.hero-image-frame {
  position: relative;
  width: 420px;
  max-width: 100%;
}

.hero-image-frame::before {
  content: '';
  display: block;
  padding-top: 120%;
}

.hero-image-inner {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--teal-light);
}

.hero-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-orb {
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  border: 1px solid rgba(124,201,196,0.3);
  animation: spin-slow 20s linear infinite;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-image { order: -1; }
  .hero-image-frame { width: 280px; }
}

/* ---- Services cards ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--cream-alt);
  border: 1px solid rgba(124,201,196,0.3);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}

.service-card:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
}

.service-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.service-card p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.service-price {
  font-family: var(--serif-sc);
  font-size: 1.5rem;
  color: var(--teal-dark);
  letter-spacing: 0.05em;
}

/* ---- About page ---- */
.about-section { padding-top: 100px; }

.about-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 4rem;
  align-items: start;
}

.about-photo-col { position: sticky; top: 100px; }

.shaun-photo {
  width: 100%;
  max-width: 360px;
  border-radius: 4px;
  border: 1px solid rgba(124,201,196,0.3);
  object-fit: cover;
}

.credentials-list {
  list-style: none;
  margin-top: 2rem;
}

.credentials-list li {
  font-family: var(--serif-sc);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(124,201,196,0.2);
  color: var(--charcoal);
}

.credentials-list li::before {
  content: '—';
  display: inline-block;
  margin-right: 0.75rem;
  color: var(--teal-dark);
}

.about-content h2 { margin-bottom: 1.5rem; }
.about-content .bio { margin-bottom: 2rem; font-size: 1.1rem; }
.about-content h3 { margin: 2rem 0 1rem; font-size: 1.2rem; }
.about-content ul {
  list-style: none;
  margin-bottom: 1.5rem;
}
.about-content ul li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
}
.about-content ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 1.4rem;
  line-height: 1.2;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photo-col { position: static; display: flex; flex-direction: column; align-items: center; }
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: var(--charcoal);
  color: var(--cream);
  padding: 4rem 0;
  text-align: center;
}

.cta-banner h2 { color: var(--cream); margin-bottom: 1rem; }
.cta-banner p { color: rgba(232,228,224,0.7); margin-bottom: 2rem; font-size: 1.1rem; }
.cta-banner .btn { border-color: var(--cream); color: var(--cream); }
.cta-banner .btn:hover { background: var(--cream); color: var(--charcoal); }

/* ---- Contact section ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

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

.contact-info-item h4 {
  font-family: var(--serif-sc);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 0.25rem;
}

.contact-info-item p { font-size: 1rem; }

.contact-form {
  background: var(--cream-alt);
  border: 1px solid rgba(124,201,196,0.3);
  padding: 2.5rem;
}

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

.form-group label {
  display: block;
  font-family: var(--serif-sc);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(124,201,196,0.4);
  background: var(--white);
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--charcoal);
  border-radius: 2px;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
}

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

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---- Shop page ---- */
.shop-hero {
  background: linear-gradient(135deg, var(--cream-alt) 0%, var(--cream) 100%);
  padding: 6rem 0 4rem;
  text-align: center;
  border-bottom: 1px solid rgba(124,201,196,0.2);
}

.shop-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.shop-product-card {
  background: var(--white);
  border: 1px solid rgba(124,201,196,0.3);
  padding: 2rem;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.shop-product-card:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 32px rgba(124,201,196,0.15);
}

.shop-product-badge {
  display: inline-block;
  font-family: var(--serif-sc);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--teal-light);
  color: var(--teal-dark);
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.shop-product-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.shop-product-card p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.shop-product-link {
  display: inline-block;
  font-family: var(--serif-sc);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-dark);
  border-bottom: 1px solid var(--teal);
  padding-bottom: 2px;
  transition: color 0.2s;
}

.shop-product-link:hover { color: var(--charcoal); }

/* ---- Page header ---- */
.page-hero {
  padding: 8rem 0 4rem;
  background: var(--cream);
  text-align: center;
  border-bottom: 1px solid rgba(124,201,196,0.2);
}

.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero .subtitle { font-style: italic; font-size: 1.1rem; color: #777; }

/* ---- Footer ---- */
.footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 3rem 0 2rem;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-logo img { height: 36px; width: 36px; border-radius: 50%; }

.footer-logo-name {
  font-family: var(--serif-sc);
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.footer p {
  font-size: 0.9rem;
  color: rgba(232,228,224,0.6);
  margin-bottom: 0.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.25rem;
}

.footer-links a {
  font-family: var(--serif-sc);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232,228,224,0.6);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--teal); }

/* Social icon buttons */
.social-icons a:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(232,228,224,0.15);
  margin: 2rem 0 1rem;
}

/* ---- Botanical divider ---- */
.botanical-divider {
  text-align: center;
  margin: 2rem 0;
  color: var(--teal-light);
  font-size: 1.5rem;
  letter-spacing: 0.5em;
}

/* ---- Services page specific ---- */
.pricing-table {
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid rgba(124,201,196,0.3);
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(124,201,196,0.2);
}

.pricing-row:last-child { border-bottom: none; }

.pricing-row .label {
  font-family: var(--serif-sc);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-row .value {
  font-size: 1.2rem;
  color: var(--teal-dark);
  font-weight: 600;
}

.payment-badges {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.payment-badge {
  font-family: var(--serif-sc);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  background: rgba(124,201,196,0.15);
  color: var(--teal-dark);
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
}

/* ---- Error/notice ---- */
.notice {
  background: var(--cream-alt);
  border: 1px solid rgba(124,201,196,0.3);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  color: var(--charcoal);
}

/* ---- Enhancement / top-up callout ---- */
.enhancement-callout {
  background: var(--cream-alt);
  border: 1px solid var(--teal);
  border-left: 4px solid var(--teal);
  padding: 1.75rem 2rem;
  font-size: 1rem;
}

/* ---- FAQ page ---- */
.faq-container {
  max-width: 780px;
}

.faq-intro {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.05rem;
  color: #666;
}

.faq-intro p { max-width: 600px; margin: 0 auto; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(124,201,196,0.25);
}

.faq-item:first-child {
  border-top: 1px solid rgba(124,201,196,0.25);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--serif-sc);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  transition: color 0.2s;
}

.faq-question:hover { color: var(--teal-dark); }

.faq-question span:first-child { flex: 1; }

.faq-toggle {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--teal);
  line-height: 1;
  transition: transform 0.25s ease, color 0.2s;
  flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-toggle {
  transform: rotate(45deg);
  color: var(--teal-dark);
}

.faq-answer {
  display: none;
  padding-bottom: 1.75rem;
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
}

.faq-answer p { margin-bottom: 0.75rem; }
.faq-answer p:last-child { margin-bottom: 0; }

.faq-answer ul {
  list-style: none;
  margin: 0.75rem 0 1rem;
}

.faq-answer ul li {
  padding: 0.3rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.faq-answer ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 1.5rem;
  line-height: 1.1;
}

.faq-answer strong { color: var(--charcoal); font-weight: 600; }
.faq-answer a { color: var(--teal-dark); }
.faq-answer a:hover { color: var(--charcoal); }

.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question { color: var(--teal-dark); }

/* ---- FAQ CTA section ---- */
.faq-cta {
  background: var(--charcoal);
  padding: 4rem 0;
  text-align: center;
}

.faq-cta-inner { max-width: 600px; margin: 0 auto; }

.faq-cta h2 { color: var(--cream); margin-bottom: 0.75rem; }

.faq-cta p {
  color: rgba(232,228,224,0.7);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.faq-cta-contacts {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.faq-cta .btn-teal {
  border-color: var(--teal);
  color: var(--teal);
}

.faq-cta .btn-teal:hover {
  background: var(--teal);
  color: var(--charcoal);
}