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

:root {
  --navy: #1e2a5a;
  --navy-light: #2d3f7a;
  --teal: #2a8a7a;
  --teal-light: #4db8a8;
  --orange: #e87040;
  --orange-light: #f09060;
  --gold: #d4a030;
  --gold-light: #e8c56a;
  --purple: #7b4fa0;
  --cream: #f8f5f0;
  --cream-dark: #ede8df;
  --white: #fdfcfa;
  --text: #1e2a3a;
  --text-light: #4a5568;
  --text-muted: #8a94a0;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, sans-serif;
}

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

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 7rem 0;
}

.section-intro {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 600px;
  margin-bottom: 3rem;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.btn:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2.5rem;
  transition: all 0.4s;
}

.nav.scrolled {
  background: rgba(253, 252, 250, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 2.5rem;
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 0.02em;
  transition: color 0.4s;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  border-radius: 4px;
}

.nav.scrolled .nav-logo {
  color: var(--navy);
}

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

.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
}

.nav.scrolled .nav-links a {
  color: var(--text-light);
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  padding: 0.5rem 1.4rem;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav.scrolled .nav-cta {
  border-color: var(--teal);
  color: var(--teal) !important;
}

.nav-cta:hover {
  background: rgba(255,255,255,0.1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.nav.scrolled .nav-toggle span {
  background: var(--navy);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(160deg, #1e2a5a 0%, #2d3f7a 25%, #2a8a7a 55%, #4db8a8 80%, #7b4fa0 100%);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 40%, rgba(232, 112, 64, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 30%, rgba(123, 79, 160, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 70%, rgba(212, 160, 48, 0.1) 0%, transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 2rem;
}

.hero-logo {
  width: 200px;
  height: auto;
  margin: 0 auto 2rem;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}

.hero-tagline {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

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

.two-col {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: center;
}

.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 4px;
}

.about-closing {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--navy) !important;
  font-size: 1.1rem !important;
  margin-top: 0.5rem;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--navy);
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

/* ===== Offerings ===== */
.offerings {
  background: var(--cream);
}

.offerings h2 {
  font-size: 2.5rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.offerings-intro-text {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 750px;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.offering-cards {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.offering-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2.5rem;
  background: var(--white);
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.04);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.offering-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.offering-card:nth-child(even) {
  direction: rtl;
}

.offering-card:nth-child(even) > * {
  direction: ltr;
}

.offering-card-image {
  overflow: hidden;
}

.offering-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offering-card-body {
  padding: 2rem 2rem 2rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.offering-card:nth-child(even) .offering-card-body {
  padding: 2rem 0 2rem 2rem;
}

.offering-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.offering-subtitle {
  font-size: 0.9rem;
  color: var(--teal);
  font-style: italic;
  margin-bottom: 0.4rem;
}

.offering-price {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.offering-card-body p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.offering-closing {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--navy) !important;
  margin-top: 0.5rem;
}

.offerings-cta-text {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--navy);
  margin-top: 3.5rem;
  line-height: 1.6;
}

/* ===== Approach ===== */
.approach {
  background: var(--white);
}

.approach h2 {
  font-size: 2.5rem;
  color: var(--navy);
  margin-bottom: 3rem;
}

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

.approach-item {
  padding: 2rem 0;
}

.approach-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--teal-light);
  display: block;
  margin-bottom: 0.8rem;
}

.approach-item h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.approach-item p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ===== Testimonials ===== */
.testimonials {
  background: var(--navy);
  color: var(--white);
}

.testimonials h2 {
  font-size: 2.2rem;
  color: var(--gold-light);
  margin-bottom: 3rem;
  max-width: 500px;
}

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

.testimonial {
  border: none;
  padding: 2rem;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  border-left: 2px solid var(--teal);
}

.testimonial p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.testimonial cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}

/* ===== FAQ ===== */
.faq {
  background: var(--cream);
}

.faq h2 {
  font-size: 2.5rem;
  color: var(--navy);
  margin-bottom: 2.5rem;
}

.faq-list {
  max-width: 700px;
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.faq-item summary {
  padding: 1.3rem 0;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--teal);
  font-weight: 300;
  transition: transform 0.3s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 0 1.3rem;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== Videos ===== */
.videos {
  background: var(--white);
}

.videos h2 {
  font-size: 2.5rem;
  color: var(--navy);
  margin-bottom: 2rem;
}

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

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 6px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ===== Blog ===== */
.blog {
  background: var(--cream);
}

.blog h2 {
  font-size: 2.5rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

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

.blog-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
  display: block;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.blog-date {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.8rem;
}

.blog-card h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 0.8rem;
  line-height: 1.35;
}

.blog-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.blog-read {
  font-size: 0.85rem;
  color: var(--teal);
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* Blog article page */
.blog-article {
  max-width: 700px;
  margin: 0 auto;
  padding: 8rem 2rem 5rem;
}

.blog-article-date {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

.blog-article h1 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--navy);
  margin-bottom: 2rem;
  line-height: 1.25;
}

.blog-article p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.blog-article h2 {
  font-size: 1.6rem;
  color: var(--navy);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.blog-article-back {
  display: inline-block;
  font-size: 0.9rem;
  color: var(--teal);
  margin-top: 2rem;
  letter-spacing: 0.04em;
}

.blog-article-back:hover {
  color: var(--navy);
}

/* ===== Contact ===== */
.contact {
  background: var(--white);
  text-align: center;
}

.contact h2 {
  font-size: 2.5rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.contact .section-intro {
  margin-left: auto;
  margin-right: auto;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  border: 1px solid var(--cream-dark);
  border-radius: 2px;
  background: var(--cream);
  color: var(--text);
  transition: border-color 0.3s;
  outline: none;
}

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

.contact-form textarea {
  margin-bottom: 1.5rem;
  resize: vertical;
}

.contact-form .btn {
  display: block;
  width: 100%;
  text-align: center;
}

.contact-form .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-status {
  text-align: center;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border-radius: 2px;
  font-size: 0.95rem;
  min-height: 1.5rem;
}

.form-status:empty {
  padding: 0;
  margin: 0;
}

.form-success {
  background: rgba(42, 138, 122, 0.1);
  color: var(--teal);
  border: 1px solid rgba(42, 138, 122, 0.2);
}

.form-error {
  background: rgba(232, 112, 64, 0.1);
  color: var(--orange);
  border: 1px solid rgba(232, 112, 64, 0.2);
}

/* ===== Footer ===== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 4rem 0;
}

.footer-logo {
  width: 80px;
  height: auto;
  margin: 0 auto 1rem;
  border-radius: 4px;
  opacity: 0.9;
}

.footer-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.footer-tagline {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.footer-closing {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer-social a {
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}

.footer-social a:hover {
  color: var(--gold-light);
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-image {
    max-width: 400px;
  }

  .offering-card {
    grid-template-columns: 1fr;
  }

  .offering-card:nth-child(even) {
    direction: ltr;
  }

  .offering-card-image {
    max-height: 350px;
  }

  .offering-card-body,
  .offering-card:nth-child(even) .offering-card-body {
    padding: 1.5rem 2rem 2rem;
  }

  .approach-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

@media (max-width: 650px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    transition: right 0.4s;
    box-shadow: -4px 0 30px rgba(0,0,0,0.1);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    color: var(--text) !important;
    font-size: 1rem;
  }

  .nav-cta {
    border-color: var(--teal) !important;
    color: var(--teal) !important;
  }

  .nav-toggle {
    display: flex;
    z-index: 101;
  }

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

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

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

  .section {
    padding: 4.5rem 0;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero-logo {
    width: 150px;
    height: auto;
  }

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

  h2 {
    font-size: 2rem !important;
  }
}
