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

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; background: #FEFBF8; color: #505559; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── TYPOGRAPHY ── */
.serif   { font-family: 'Cormorant Garamond', serif; }
.script  { font-family: 'Dancing Script', cursive; }
.eyebrow { font-size: .85rem; letter-spacing: .18em; text-transform: uppercase; color: #91A598; display: block; margin-bottom: .8rem; }

/* ── BUTTONS ── */
.btn { display: inline-block; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; padding: .9rem 2.2rem; border-radius: 2px; transition: all .25s; cursor: pointer; border: none; font-family: 'Lato', sans-serif; }
.btn-dark  { background: #505559; color: #FEFBF8; }
.btn-dark:hover { background: #91A598; }
.btn-outline { border: 1.5px solid #505559; color: #505559; background: transparent; }
.btn-outline:hover { background: #505559; color: #FEFBF8; }
.btn-light { background: #FEFBF8; color: #505559; }
.btn-light:hover { background: #D3C2A3; }
.btn-sage  { background: #91A598; color: #FEFBF8; }
.btn-sage:hover { background: #505559; }

/* ── NAV ── */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 5rem; background: #FEFBF8;
  border-bottom: 1px solid rgba(47,47,47,.1);
  position: sticky; top: 0; z-index: 100;
}
.nav-brand { display: flex; align-items: baseline; gap: .4rem; }
.nav-brand-serif { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 400; letter-spacing: .05em; }
.nav-brand-script { font-family: 'Dancing Script', cursive; font-size: 1.25rem; color: #91A598; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 2.5rem; }
.nav-links a { font-size: .9rem; letter-spacing: .10em; text-transform: uppercase; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: #91A598; }
.nav-links .nav-cta { background: #505559; color: #FEFBF8; padding: .55rem 1.5rem; border-radius: 2px; transition: background .2s; }
.nav-links .nav-cta:hover { background: #91A598; color: #FEFBF8; }
.hamburger { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: #505559; line-height: 1; }

/* ── HERO ── */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 70vh; align-items: center;
  padding: 3rem 5rem; gap: 5rem;
  max-width: 1300px; margin: 0 auto;
}
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: 4.8rem; font-weight: 300; line-height: 1.08; margin-bottom: 1.6rem; }
.hero-title em { font-style: italic; color: #91A598; }
.hero-sub { font-size: 1.05rem; line-height: 1.85; font-weight: 300; color: #555; margin-bottom: 2.5rem; max-width: 440px; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-visual { display: flex; justify-content: center; }
.hero-circle {
  width: 440px; height: 440px; border-radius: 50%;
  background: #fff; display: flex; align-items: center; justify-content: center;
  border: 1px solid #e8e2d9; box-shadow: 0 24px 70px rgba(0,0,0,.07);
}
.hero-circle img { width: 100%; height: 100%; object-fit: cover; object-position: center top; border-radius: 50%; }

/* ── TRUST BAR ── */
.trust-bar {
  background: #505559;
  display: flex; justify-content: center; gap: 4rem;
  padding: 1.4rem 2rem; flex-wrap: wrap;
}
.trust-item { color: #FEFBF8; font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; display: flex; align-items: center; gap: .6rem; }
.trust-item span { font-size: 1rem; }

/* ── SECTIONS ── */
.section { padding: 5rem 5rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 4rem; }
.section-head h2 { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; margin-bottom: 1rem; }
.section-head p { font-weight: 300; color: #666; max-width: 700px; margin: 0 auto; line-height: 1.85; }

.card-icon-img { width: 72px; height: 72px; object-fit: contain; margin-bottom: 1.4rem; }

/* ── SERVICE CARDS ── */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 2rem; }
.card { background: #fff; padding: 2.8rem; border-radius: 4px; border: 1px solid #ede8e0; transition: box-shadow .25s, transform .25s; }
.card:hover { box-shadow: 0 12px 48px rgba(0,0,0,.09); transform: translateY(-4px); }
.card-icon { font-size: 2.2rem; margin-bottom: 1.4rem; }
.card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 400; margin-bottom: .8rem; }
.card p { font-size: .9rem; line-height: 1.85; color: #666; font-weight: 300; margin-bottom: 1.4rem; }
.card-link { font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; color: #91A598; border-bottom: 1px solid #91A598; padding-bottom: 2px; transition: color .2s; }
.card-link:hover { color: #505559; border-color: #505559; }

/* ── TESTIMONIALS ── */
.testimonials { background: #fff; }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 2rem; }
.testi {
  background: #FEFBF8; padding: 2.5rem; border-radius: 4px;
  font-family: 'Cormorant Garamond', serif; font-size: 1.15rem;
  font-style: italic; font-weight: 300; line-height: 1.85; color: #505559;
  border-left: 3px solid #91A598;
}
.testi-author { display: block; margin-top: 1.4rem; font-family: 'Lato', sans-serif; font-style: normal; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: #91A598; }

/* ── CTA STRIP ── */
.cta-strip { background: #91A598; text-align: center; padding: 5rem 2rem; }
.cta-strip h2 { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; color: #FEFBF8; margin-bottom: 1rem; }
.cta-strip p { color: rgba(247,244,239,.85); font-weight: 300; font-size: 1.05rem; margin-bottom: 2.2rem; }

/* ── FOOTER ── */
.footer { background: #505559; padding: 3rem 5rem; text-align: center; }
.footer-logo { width: 120px; margin: 0 auto 1.8rem; opacity: 0.85; }
.footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: #FEFBF8; margin-bottom: 1.5rem; }
.footer-brand .script { font-family: 'Dancing Script', cursive; color: #91A598; margin-left: .4rem; }
.footer-nav { display: flex; justify-content: center; gap: 2.5rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.footer-nav a { color: #D3C2A3; font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; transition: color .2s; }
.footer-nav a:hover { color: #FEFBF8; }
.footer-copy { color: #666; font-size: .78rem; }

/* ── PAGE HERO (inner pages) ── */
.page-hero { background: #fff; padding: 6rem 5rem 5rem; text-align: center; border-bottom: 1px solid #e8e2d9; }
.page-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: 3.6rem; font-weight: 300; margin-bottom: .8rem; }
.page-hero h1 em { font-style: italic; color: #91A598; }
.page-hero p { font-weight: 300; color: #666; max-width: 700px; margin: 0 auto; line-height: 1.85; font-size: 1.05rem; }

/* ── SERVICES PAGE ── */
.service-block { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; padding: 5rem 0; border-bottom: 1px solid #e8e2d9; }
.service-block:last-of-type { border-bottom: none; }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }
.service-visual { border-radius: 4px; border: 1px solid #ede8e0; height: 680px; overflow: hidden; }
.service-photo { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.service-text h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 300; margin-bottom: 1rem; }
.service-text p { font-weight: 300; color: #555; line-height: 1.9; margin-bottom: 1.2rem; }
.service-includes { list-style: none; margin: 1.2rem 0 2rem; }
.service-includes li { font-size: .88rem; color: #555; font-weight: 300; padding: .4rem 0; display: flex; align-items: center; gap: .6rem; }
.service-includes li::before { content: '—'; color: #91A598; }
.pricing-tag { display: inline-block; background: #FEFBF8; border: 1px solid #e8e2d9; padding: .6rem 1.2rem; border-radius: 2px; font-size: .85rem; color: #505559; margin-bottom: 1.6rem; }
.pricing-tag strong { color: #91A598; font-weight: 700; }

/* ── ABOUT PAGE ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-photo { border-radius: 4px; height: 680px; overflow: hidden; border: 1px solid #e0dbd2; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-text h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 300; margin-bottom: 1.5rem; line-height: 1.2; }
.about-text p { font-weight: 300; color: #555; line-height: 1.95; margin-bottom: 1.1rem; }
.values { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem 4rem; margin-top: 2.5rem; }
.value { }
.value h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400; margin-bottom: .5rem; }
.value p { font-size: .95rem; font-weight: 300; color: #666; line-height: 1.85; margin: 0; }
.qualifications { background: #505559; border-radius: 4px; padding: 2.5rem; margin-top: 2rem; }
.qualifications h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 300; color: #FEFBF8; margin-bottom: 1.2rem; }
.qualifications ul { list-style: none; }
.qualifications li { color: #D3C2A3; font-size: .85rem; font-weight: 300; padding: .4rem 0; display: flex; gap: .6rem; align-items: center; }
.qualifications li::before { content: '✓'; color: #91A598; }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem; align-items: start; }
.contact-info h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 300; margin-bottom: 1.2rem; line-height: 1.2; }
.contact-info p { font-weight: 300; color: #555; line-height: 1.9; margin-bottom: 2rem; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.4rem; }
.contact-detail .icon { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 400; color: #91A598; margin-top: .05rem; flex-shrink: 0; min-width: 1.8rem; }
.contact-detail h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 400; margin-bottom: .2rem; }
.contact-detail p { margin: 0; font-size: .88rem; color: #666; }
.form-card { background: #fff; padding: 3rem; border-radius: 4px; border: 1px solid #ede8e0; box-shadow: 0 8px 40px rgba(0,0,0,.05); }
.form-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: #505559; margin-bottom: .5rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: .85rem 1rem; border: 1px solid #e8e2d9;
  background: #FEFBF8; font-family: 'Lato', sans-serif; font-size: .9rem;
  color: #505559; border-radius: 2px; outline: none; transition: border-color .2s; appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: #91A598; background: #fff; }
.form-group textarea { height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { width: 100%; padding: 1rem; background: #505559; color: #FEFBF8; border: none; font-family: 'Lato', sans-serif; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; cursor: pointer; border-radius: 2px; transition: background .25s; margin-top: .5rem; }
.form-submit:hover { background: #91A598; }
.form-success { display: none; text-align: center; padding: 2rem; }
.form-success h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; color: #91A598; margin-bottom: .8rem; }
.form-success p { color: #666; font-weight: 300; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; position: fixed; top: 65px; left: 0; right: 0; background: #FEFBF8; flex-direction: column; gap: 0; padding: 1rem 0; border-bottom: 1px solid #e8e2d9; z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-links li { text-align: center; padding: .9rem; }
  .nav-links .nav-cta { background: none; color: #505559 !important; padding: .9rem; border-radius: 0; }
  .hamburger { display: block; }
  .hero { grid-template-columns: 1fr; padding: 3rem 1.5rem; min-height: auto; gap: 3rem; text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-title { font-size: 3.2rem; }
  .hero-sub { margin: 0 auto 2.5rem; }
  .hero-circle { width: 280px; height: 280px; }
  .hero-visual { order: -1; }
  .trust-bar { gap: 1.5rem; }
  .section { padding: 4.5rem 1.5rem; }
  .page-hero { padding: 4rem 1.5rem 3rem; }
  .page-hero h1 { font-size: 2.6rem; }
  .service-block { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-block.reverse { direction: ltr; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-photo { height: auto; }
  .about-photo img { height: auto; aspect-ratio: auto; }
  .service-visual { height: auto; }
  .service-photo { height: auto; object-fit: contain; }
  .values { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .cta-strip { padding: 5rem 1.5rem; }
  .cta-strip h2 { font-size: 2.2rem; }
  .footer { padding: 2.5rem 1.5rem; }
}