:root {
  --cream: #f5f0e8;
  --cream-dark: #ede6d6;
  --green-deep: #2d4a3e;
  --green-mid: #3d6354;
  --green-sage: #7a9e8e;
  --green-light: #b8d4c8;
  --terracotta: #c4704a;
  --terracotta-light: #e8b49a;
  --brown: #6b4c38;
  --brown-light: #d4bfab;
  --text-dark: #1e2820;
  --text-mid: #3d4f45;
  --text-light: #6b7d72;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; background: var(--cream); color: var(--text-dark); font-weight: 300; line-height: 1.7; }
h1,h2,h3,h4 { font-family: 'Cormorant Garamond', serif; font-weight: 600; line-height: 1.2; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(245,240,232,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(122,158,142,0.2);
  padding: 0 2.5rem; height: 110px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { height: 90px; width: auto; object-fit: contain; }
.nav-links { display: flex; gap: 2.5rem; align-items: center; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--green-mid);
  font-size: 0.82rem; letter-spacing: 0.09em; text-transform: uppercase;
  font-weight: 500; transition: color 0.2s; cursor: pointer;
}
.nav-links a:hover, .nav-links a.active { color: var(--terracotta); }
.nav-cta {
  background: var(--green-deep); color: white !important;
  padding: 0.7rem 1.6rem; border-radius: 2px;
  font-size: 0.78rem !important; letter-spacing: 0.12em !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--terracotta) !important; }
.hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--green-deep); transition: 0.3s; }
.mobile-menu {
  display: none; position: fixed; top: 110px; left: 0; right: 0;
  background: var(--cream); z-index: 99; padding: 2rem; flex-direction: column; gap: 1.5rem;
  border-bottom: 1px solid var(--green-light);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--green-mid); text-decoration: none; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500; cursor: pointer; }

/* pages are now separate HTML files */
.page-wrap { min-height: 100vh; padding-top: 110px; }


/* PAGE HERO with nature photo background */
.page-hero {
  position: relative; overflow: hidden;
  padding: 8rem 5rem 6rem; min-height: 380px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(20,40,30,0.65) 0%, rgba(20,40,30,0.82) 100%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-eyebrow {
  font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--terracotta-light); margin-bottom: 1rem; font-weight: 500;
}
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem); color: white;
  font-style: italic; max-width: 750px; line-height: 1.15;
}
.page-hero::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0; z-index: 2;
  height: 60px; background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}

/* HERO - HOME */
.hero {
  min-height: calc(100vh - 110px); display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.hero-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 4rem 5rem 5rem; background: var(--cream); position: relative;
}
.hero-eyebrow {
  font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 1.5rem; font-weight: 500;
}
.hero-eyebrow-large {
  font-size: 1.3rem; letter-spacing: 0.02em; text-transform: none;
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
  color: var(--green-deep); margin-bottom: 0.4rem;
}
.hero-tagline {
  font-size: 0.95rem; color: var(--text-mid); max-width: 460px;
  margin: 0 0 1.5rem; line-height: 1.6;
}
.hero-headline {
  font-size: clamp(2.8rem, 4.5vw, 4.2rem); color: var(--green-deep);
  margin-bottom: 1.8rem; font-weight: 700; font-style: italic; line-height: 1.15;
}
.hero-headline em { font-style: normal; color: var(--terracotta); }
.hero-sub {
  font-size: 1.05rem; color: var(--text-mid); max-width: 460px;
  margin-bottom: 3rem; line-height: 1.8;
}
.btn {
  display: inline-block; text-decoration: none; cursor: pointer;
  font-family: 'Jost', sans-serif; font-weight: 500;
  font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 1rem 2.4rem; border: none; transition: all 0.25s;
}
.btn-primary { background: var(--green-deep); color: white; border-radius: 2px; }
.btn-primary:hover { background: var(--terracotta); }
.btn-outline {
  background: transparent; color: var(--green-deep);
  border: 1.5px solid var(--green-deep); border-radius: 2px; margin-left: 1rem;
}
.btn-outline:hover { background: var(--green-deep); color: white; }
.hero-img { position: relative; overflow: hidden; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(45,74,62,0.75) 0%, rgba(122,158,142,0.35) 100%);
}
.hero-quote {
  position: absolute; bottom: 3rem; left: 3rem; right: 3rem; color: white;
}
.hero-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-style: italic; line-height: 1.4; margin-bottom: 0.5rem;
}
.hero-quote cite { font-size: 0.78rem; letter-spacing: 0.1em; opacity: 0.7; text-transform: uppercase; }

/* ABOUT STRIP */
.about-strip {
  background: var(--green-deep); color: white;
  padding: 5rem;
  display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; align-items: center;
}
.about-strip-label { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green-light); margin-bottom: 1.5rem; }
.about-strip h2 { font-size: clamp(2rem, 3vw, 2.8rem); color: white; font-style: italic; }
.about-strip p { color: rgba(255,255,255,0.8); font-size: 1rem; line-height: 1.9; margin-bottom: 1.5rem; }
.about-strip-cta {
  background: var(--terracotta); color: white !important;
  padding: 0.85rem 2rem; border-radius: 2px; text-decoration: none;
  font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase;
  display: inline-block; cursor: pointer; transition: background 0.2s;
}
.about-strip-cta:hover { background: #a85c3a; }

/* SECTION */
.section { padding: 6rem 5rem; }
.section-large { padding: 8rem 5rem; }
.section-label {
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 1rem;
}
.section-label-large { font-size: 1.05rem; letter-spacing: 0.15em; }
.section-title { font-size: clamp(2rem, 3.5vw, 3rem); color: var(--green-deep); margin-bottom: 1rem; font-style: italic; }
.section-title-large { font-size: clamp(2.4rem, 4.5vw, 3.6rem); }
.section-intro { color: var(--text-mid); max-width: 600px; font-size: 1rem; line-height: 1.8; margin-bottom: 3rem; }

/* SERVICES GRID (HOME) */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
.service-card {
  background: white; padding: 2.5rem;
  border-top: 3px solid var(--green-sage); transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(45,74,62,0.1); }
.service-card h3 { font-size: 1.4rem; color: var(--green-deep); margin-bottom: 1rem; font-style: italic; }
.service-card p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1.5rem; }
.service-link {
  color: var(--terracotta); text-decoration: none; font-size: 0.8rem;
  letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500;
  border-bottom: 1px solid var(--terracotta-light); padding-bottom: 2px; cursor: pointer;
}
.service-link:hover { color: var(--green-deep); border-color: var(--green-deep); }

/* APPROACH */
.approach-section {
  background: var(--cream-dark); padding: 6rem 5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
}
.approach-img { height: 500px; overflow: hidden; position: relative; }
.approach-img img { width: 100%; height: 100%; object-fit: cover; }
.pillars { display: flex; flex-direction: column; gap: 2rem; margin-top: 2.5rem; }
.pillar { display: flex; gap: 1.5rem; align-items: flex-start; }
.pillar-num {
  font-family: 'Cormorant Garamond', serif; font-size: 2rem;
  color: var(--terracotta-light); line-height: 1; flex-shrink: 0; width: 2rem; text-align: center;
}
.pillar h4 { font-size: 1.1rem; color: var(--green-deep); margin-bottom: 0.4rem; }
.pillar p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.75; }

/* CTA BANNER */
.cta-banner { background: var(--terracotta); padding: 5rem; text-align: center; color: white; }
.cta-banner h2 { font-size: clamp(2rem, 3.5vw, 3rem); color: white; font-style: italic; margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 540px; margin: 0 auto 2.5rem; }
.btn-white {
  background: white; color: var(--terracotta);
  padding: 1rem 2.4rem; border-radius: 2px; font-size: 0.82rem;
  letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500;
  text-decoration: none; display: inline-block; cursor: pointer; transition: all 0.2s; border: none;
}
.btn-white:hover { background: var(--green-deep); color: white; }

/* FOOTER */
footer { background: var(--text-dark); color: rgba(255,255,255,0.7); padding: 4rem 5rem 2rem; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { height: 60px; width: auto; object-fit: contain; margin-bottom: 1.2rem; }
.footer-tagline { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1rem; color: rgba(255,255,255,0.5); margin-bottom: 1rem; }
.footer-desc { font-size: 0.88rem; line-height: 1.8; max-width: 300px; }
.footer-col h4 { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green-light); margin-bottom: 1.5rem; font-family: 'Jost', sans-serif; font-weight: 500; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; cursor: pointer; transition: color 0.2s; }
.footer-col a:hover { color: var(--terracotta-light); }
.footer-bottom { padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: rgba(255,255,255,0.35); }

/* ABOUT PAGE */
.about-main { padding: 5rem; display: grid; grid-template-columns: 5fr 7fr; gap: 6rem; align-items: start; }
.about-photo { position: sticky; top: 110px; border-radius: 1px; overflow: hidden; box-shadow: 0 20px 60px rgba(45,74,62,0.2); }
.about-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center top; }
.about-text h2 { font-size: 2.2rem; color: var(--green-deep); font-style: italic; margin-bottom: 1.5rem; }
.about-text p { color: var(--text-mid); line-height: 1.9; margin-bottom: 1.5rem; font-size: 1rem; }
.about-text strong { color: var(--green-deep); font-weight: 600; }
.credentials-section { background: var(--cream-dark); padding: 5rem; }
.creds-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 2.5rem; }
.cred-item { background: white; padding: 2rem 2.5rem; border-left: 3px solid var(--terracotta); display: flex; gap: 1rem; align-items: flex-start; }
.cred-icon { font-size: 1.2rem; line-height: 1; color: var(--terracotta); }
.cred-item h4 { font-size: 1.05rem; color: var(--green-deep); margin-bottom: 0.3rem; }
.cred-item p { font-size: 0.88rem; color: var(--text-light); }
.personal-section { padding: 5rem; background: white; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.personal-quote { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-style: italic; line-height: 1.4; color: var(--green-deep); padding-left: 2rem; border-left: 3px solid var(--terracotta-light); }

/* SERVICES PAGE */
.service-full { display: grid; grid-template-columns: 1fr 1fr; min-height: 420px; }
.service-full:nth-child(even) { direction: rtl; }
.service-full:nth-child(even) > * { direction: ltr; }
.service-full-img { position: relative; overflow: hidden; min-height: 380px; }
.service-full-img img { width: 100%; height: 100%; object-fit: cover; }
.service-full-img-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom right, rgba(45,74,62,0.65), rgba(122,158,142,0.25)); }
.service-full-text { padding: 4rem; background: white; display: flex; flex-direction: column; justify-content: center; }
.service-full-text h3 { font-size: 1.8rem; color: var(--green-deep); font-style: italic; margin-bottom: 1.5rem; }
.service-full-text p { color: var(--text-mid); line-height: 1.85; margin-bottom: 1.2rem; font-size: 0.97rem; }
.service-full-list { list-style: none; margin: 0.3rem 0 1.5rem; }
.service-full-list li { padding: 0.4rem 0; color: var(--text-mid); font-size: 0.93rem; display: flex; align-items: flex-start; gap: 0.75rem; }
.service-full-list li::before { content: '—'; color: var(--terracotta); flex-shrink: 0; margin-top: 1px; }

/* EMDR PAGE */
.intensives-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 1rem; }
.intensive-card { background: white; padding: 2.5rem; border-top: 3px solid var(--terracotta); text-align: center; }
.intensive-name { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-style: italic; color: var(--green-deep); margin-bottom: 0.3rem; }
.intensive-subtitle { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); margin-bottom: 1.2rem; }
.intensive-price { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 700; color: var(--terracotta); margin-bottom: 1.2rem; }
.intensive-desc { color: var(--text-mid); font-size: 0.93rem; line-height: 1.8; }
.emdr-hero {
  position: relative; overflow: hidden;
  padding: 9rem 5rem 7rem; text-align: center; color: white; min-height: 480px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.emdr-hero-bg { position: absolute; inset: 0; z-index: 0; }
.emdr-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.emdr-hero-bg::after { content: ''; position: absolute; inset: 0; background: rgba(20,40,30,0.75); }
.emdr-hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.emdr-hero h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); color: white; font-style: italic; margin-bottom: 1.5rem; }
.emdr-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.82); max-width: 620px; margin: 0 auto 2.5rem; line-height: 1.85; }
.emdr-content { padding: 5rem; }
.emdr-two-col { display: grid; grid-template-columns: 3fr 2fr; gap: 5rem; align-items: start; }
.process-steps { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 2rem; }
.process-step { display: flex; gap: 1.5rem; align-items: flex-start; }
.step-num { width: 40px; height: 40px; border-radius: 50%; background: var(--green-deep); color: white; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; flex-shrink: 0; }
.process-step h4 { font-size: 1.05rem; color: var(--green-deep); margin-bottom: 0.4rem; }
.process-step p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.75; }
.faq-item { border-bottom: 1px solid var(--cream-dark); padding: 1.5rem 0; }
.faq-item h4 { font-size: 1.05rem; color: var(--green-deep); margin-bottom: 0.75rem; }
.faq-item p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.8; }

/* FEES PAGE */
.fees-content { padding: 5rem; }
.fees-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 5rem; }
.fee-card { background: var(--green-deep); color: white; padding: 3rem; text-align: center; margin-bottom: 2rem; }
.fee-card .fee-amount { font-family: 'Cormorant Garamond', serif; font-size: 4rem; color: var(--terracotta-light); font-weight: 700; line-height: 1; margin: 0.5rem 0; }
.fee-card h3 { font-size: 1rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-light); }
.fee-card p { color: rgba(255,255,255,0.7); font-size: 0.92rem; margin-top: 0.75rem; }
.benefit-item { display: flex; gap: 1.2rem; align-items: flex-start; padding: 1.5rem 0; border-bottom: 1px solid var(--cream-dark); }
.benefit-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--terracotta-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; color: var(--brown); }
.benefit-item h4 { font-size: 1rem; color: var(--green-deep); margin-bottom: 0.3rem; }
.benefit-item p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.75; }
.insurance-box { background: var(--cream-dark); padding: 2.5rem; border-left: 3px solid var(--green-sage); margin-top: 2.5rem; }
.insurance-box h3 { font-size: 1.4rem; color: var(--green-deep); margin-bottom: 1rem; }
.insurance-box p { color: var(--text-mid); font-size: 0.93rem; line-height: 1.8; margin-bottom: 1rem; }
.insurance-q { font-weight: 500; color: var(--green-mid); margin-bottom: 0.3rem; font-size: 0.9rem; }

/* CONTACT PAGE */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 110px); }
.contact-info {
  position: relative; overflow: hidden;
  padding: 6rem 4rem; color: white;
  display: flex; flex-direction: column; justify-content: center;
}
.contact-info-bg { position: absolute; inset: 0; z-index: 0; }
.contact-info-bg img { width: 100%; height: 100%; object-fit: cover; }
.contact-info-bg::after { content: ''; position: absolute; inset: 0; background: rgba(20,40,30,0.82); }
.contact-info-content { position: relative; z-index: 1; }
.contact-info h2 { font-size: 2.8rem; color: white; font-style: italic; margin-bottom: 2rem; }
.contact-info p { color: rgba(255,255,255,0.75); line-height: 1.85; margin-bottom: 2rem; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-icon {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(184,212,200,0.4);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.contact-icon svg { width: 16px; height: 16px; stroke: var(--green-light); fill: none; stroke-width: 1.5; }
.contact-detail h4 { color: var(--green-light); font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 0.3rem; font-family: 'Jost', sans-serif; }
.contact-detail p { color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.contact-form-area { background: var(--cream); padding: 6rem 4rem; display: flex; flex-direction: column; justify-content: center; }
.contact-form-area h2 { font-size: 2rem; color: var(--green-deep); font-style: italic; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-mid); margin-bottom: 0.5rem; font-weight: 500; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.9rem 1rem; border: 1px solid var(--brown-light); background: white;
  font-family: 'Jost', sans-serif; font-size: 0.95rem; color: var(--text-dark);
  border-radius: 2px; outline: none; transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--green-sage); }
.form-group textarea { height: 120px; resize: vertical; }
.form-submit-note { background: var(--cream-dark); padding: 1rem 1.5rem; font-size: 0.85rem; color: var(--text-mid); line-height: 1.7; border-left: 2px solid var(--green-sage); margin-bottom: 1.5rem; }
.form-note { font-size: 0.8rem; color: var(--text-light); line-height: 1.7; margin-top: 1rem; }

/* SVG icon helper */
.icon-svg { display: inline-block; vertical-align: middle; }

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-img { min-height: 400px; }
  .about-strip { grid-template-columns: 1fr; gap: 2rem; padding: 4rem 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .intensives-grid { grid-template-columns: 1fr; }
  .approach-section { grid-template-columns: 1fr; }
  .about-main { grid-template-columns: 1fr; }
  .about-photo { position: static; }
  .service-full { grid-template-columns: 1fr; direction: ltr !important; }
  .emdr-two-col { grid-template-columns: 1fr; }
  .fees-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .personal-section { grid-template-columns: 1fr; }
  .creds-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .section, .emdr-content, .fees-content, .credentials-section, .personal-section { padding: 4rem 2rem; }
  .page-hero, .emdr-hero, .contact-info, .contact-form-area { padding: 4rem 2rem; }
  footer { padding: 3rem 2rem 1.5rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-text { padding: 3rem 1.5rem; }
  .cta-banner { padding: 3rem 1.5rem; }
  nav { height: 90px; padding: 0 1.5rem; }
  .page-wrap { padding-top: 90px; }
  .nav-logo { height: 68px; }
}

/* THANK YOU PAGE */
.thankyou-page {position:fixed;inset:0;z-index:999;display:flex;flex-direction:column;}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Jost', sans-serif;
  min-height: 100vh;
  display: flex; flex-direction: column;
  background: #f5f0e8;
}
.thankyou-page {
  flex: 1;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  min-height: 100vh;
}
.ty-bg {
  position: absolute; inset: 0; z-index: 0;
}
.ty-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.ty-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(20,40,30,0.88) 0%, rgba(45,74,62,0.75) 100%);
}
.ty-card {
  position: relative; z-index: 1;
  background: rgba(245,240,232,0.97);
  padding: 4rem 4.5rem;
  max-width: 580px; width: 90%;
  text-align: center;
  border-top: 4px solid #c4704a;
}
.ty-logo {
  height: 52px; width: auto; object-fit: contain;
  margin-bottom: 2.5rem; filter: brightness(0.8);
}
.ty-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: #c4704a;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}
.ty-icon svg {
  width: 28px; height: 28px; stroke: white; fill: none; stroke-width: 2.5;
}
h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; color: #2d4a3e;
  font-style: italic; margin-bottom: 1rem; line-height: 1.2;
}
p {
  color: #3d4f45; font-size: 1rem; line-height: 1.85;
  margin-bottom: 1rem;
}
.tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1.15rem;
  color: #7a9e8e; margin: 1.5rem 0 2rem;
}
.ty-btn {
  display: inline-block; text-decoration: none;
  background: #2d4a3e; color: white;
  padding: 0.9rem 2.4rem; border-radius: 2px;
  font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 500; transition: background 0.2s;
}
.ty-btn:hover { background: #c4704a; }
.ty-divider {
  width: 40px; height: 2px; background: #c4704a;
  margin: 1.5rem auto;
}

