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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --peach: #f4d3c0;
  --rose: #c39a98;
  --brown: #a06143;
  --light-bg: #f0f2f6;
  --dark: #3d3d3d;
  --text: #222;
  --muted: #666;
  --divider: #A06143;
}

body { font-family: 'Lato', sans-serif; color: var(--text); font-size: 16px; line-height: 1.9; }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--brown); }

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

/* ─── NAV ─── */
nav.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 0 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 17px; letter-spacing: 1.5px; color: #333;
  white-space: nowrap;
}
.nav-links { display: flex; gap: 1.4rem; list-style: none; flex-wrap: wrap; }
.nav-links a {
  font-size: 12px; letter-spacing: 0.8px; text-transform: uppercase;
  color: #555; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--brown); }
.nav-links .has-sub { position: relative; }
.nav-links .has-sub ul {
  display: none; position: absolute; top: 100%; left: 0;
  background: #fff; border: 1px solid #eee;
  list-style: none; min-width: 160px; padding: 0.5rem 0;
}
.nav-links .has-sub:hover ul { display: block; }
.nav-links .has-sub ul li a { display: block; padding: 0.4rem 1rem; font-size: 12px; }

/* ─── FOOTER ─── */
footer.site-footer {
  background: #f8f8f8;
  border-top: 1px solid #eee;
  padding: 2.5rem 2rem;
  text-align: center;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px; color: #333; margin-bottom: 1rem;
}
.footer-links { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: #888; }
.footer-links a:hover { color: var(--brown); }
.footer-copy { margin-top: 1rem; font-size: 12px; color: #bbb; }

/* ─── SHARED COMPONENTS ─── */
.section { padding: 3rem 2rem; }
.section-narrow { max-width: 720px; margin: 0 auto; }
.section-wide { max-width: 1100px; margin: 0 auto; }

h1, h2 { font-family: 'Playfair Display', serif; font-weight: 700; color: #333; line-height: 1.3; }
h3 { font-family: 'Lato', sans-serif; font-weight: 700; }

.eyebrow {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--rose); margin-bottom: 6px;
}
.section-title { font-size: 34px; margin-bottom: 1.2rem; }
.text-center { text-align: center; }

.divider-accent {
  width: 50px; height: 2px;
  background: var(--divider);
  margin: 1rem auto;
}
.divider-accent.left { margin-left: 0; }

/* ─── SIGNUP BOX ─── */
.signup-box {
  background: var(--peach);
  padding: 2rem 1.5rem;
  border-radius: 2px;
}
.signup-box p { font-size: 14px; line-height: 1.8; margin-bottom: 1rem; color: #333; }
.signup-box input[type=text],
.signup-box input[type=email] {
  width: 100%; padding: 10px 12px;
  border: 1px solid #ddd; background: #fff;
  margin-bottom: 10px; font-size: 14px;
  font-family: 'Lato', sans-serif;
}
.signup-box input:focus { outline: none; border-color: var(--rose); }
.btn-subscribe {
  background: #ffeded; color: var(--brown);
  border: 1px solid var(--brown);
  padding: 10px 22px; font-size: 12px;
  letter-spacing: 1.5px; text-transform: uppercase;
  font-family: 'Lato', sans-serif;
  cursor: pointer; transition: background 0.2s;
}
.btn-subscribe:hover { background: var(--peach); }
.signup-note { font-size: 11px; color: #999; margin-top: 8px; }

/* ─── CTA BUTTON ─── */
.btn {
  display: inline-block;
  background: var(--rose); color: #fff;
  padding: 12px 28px;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  font-family: 'Lato', sans-serif; font-weight: 600;
  transition: background 0.2s;
}
.btn:hover { background: var(--brown); color: #fff; }
.btn-outline {
  background: transparent; color: var(--brown);
  border: 1px solid var(--brown); padding: 10px 24px;
}
.btn-outline:hover { background: var(--peach); }

/* ─── PULLQUOTE ─── */
.pullquote {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: clamp(22px, 3.5vw, 38px);
  color: #f4b590; line-height: 1.5;
  text-align: center; max-width: 820px;
  margin: 2.5rem auto; padding: 1rem 2rem;
}

/* ─── HERO BANNER ─── */
.hero-banner {
  background: linear-gradient(90deg, rgba(240,242,246,0.6) 0%, rgba(255,255,255,0) 100%);
  padding: 3.5rem 2.5rem 0;
}
.hero-banner-inner {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 2.5rem; max-width: 1100px; margin: 0 auto;
  align-items: start;
}
.hero-right h2 { font-size: clamp(26px, 3vw, 38px); margin-bottom: 1rem; }
.hero-right p { line-height: 2; margin-bottom: 1.2rem; }
.hero-img-block {
  width: 100%; max-width: 420px;
  min-height: 360px;
  background: linear-gradient(150deg, var(--peach) 0%, var(--rose) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-style: italic;
  color: #fff; font-size: 18px; margin: 0 auto;
  box-shadow: 120px 120px 0 -60px var(--light-bg);
}
.hero-img-block img { width: 100%; height: 100%; object-fit: cover; }

/* ─── PAGE HERO (pink tint) ─── */
.page-hero {
  background: rgba(195,154,152,0.18);
  padding: 5rem 2rem 4rem;
  text-align: right;
}
.page-hero .eyebrow { color: var(--brown); }
.page-hero h1 { font-size: clamp(32px, 5vw, 52px); }

/* ─── TWO-COL FEATURE ROW ─── */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.feature-row.reverse .feature-img { order: 2; }
.feature-row.reverse .feature-text { order: 1; }
.feature-img {
  min-height: 320px;
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--peach) 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.feature-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-img-placeholder {
  width: 100%; min-height: 320px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; color: #aaa; font-size: 14px;
}
.feature-text {
  padding: 4rem 3.5rem;
}
.feature-text h2 { font-size: clamp(22px, 2.5vw, 30px); margin-bottom: 1rem; }
.feature-text p { line-height: 2; color: #333; }

/* ─── SERVICES GRID ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.service-card {
  padding: 3rem 1.5rem;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 380px;
}
.service-card h3 { font-size: 22px; line-height: 1.2; margin-bottom: 1.2rem; font-family: 'Lato', sans-serif; font-weight: 700; }
.service-card p { font-size: 15px; line-height: 1.9; flex: 1; margin-bottom: 1.5rem; }
.sc-1 { background: var(--peach); }
.sc-2 { background: #fff; box-shadow: inset 0 0 0 1px #eee; }
.sc-3 { background: #a3a3a3; color: #fff; }
.sc-3 h3, .sc-3 p { color: #fff; }
.sc-4 { background: var(--dark); color: #fff; }
.sc-4 h3, .sc-4 p { color: #fff; }

/* ─── IS THIS YOU LISTS ─── */
.fit-section { max-width: 780px; margin: 0 auto; padding: 2rem 0; }
.fit-section h2 { font-size: 30px; text-align: center; margin-bottom: 0.5rem; }
.fit-list { list-style: none; margin-top: 1.5rem; }
.fit-list li {
  padding: 0.8rem 0 0.8rem 2rem;
  border-bottom: 1px solid #f0f0f0;
  position: relative; font-size: 15px; line-height: 1.8;
}
.fit-list li::before {
  content: '—'; position: absolute; left: 0;
  color: var(--rose); font-weight: 700;
}

/* ─── APPROACH TABLE ─── */
.approach-table {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid #ddd; overflow: hidden;
}
.approach-col { display: flex; flex-direction: column; }
.approach-header {
  padding: 1.2rem; text-align: center;
  font-weight: 700; font-size: 13px;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--brown);
}
.ah-1 { background: #fff; }
.ah-2 { background: #f2f3f7; }
.ah-3 { background: #e9ebf1; }
.ah-4 { background: #e1e2e8; }
.approach-cell {
  padding: 0.9rem 1rem; text-align: center;
  font-size: 14px; border-top: 1px solid #e8e8e8;
  line-height: 1.4;
}
.ac-1 { background: #f9fafc; }
.ac-2 { background: #f2f3f7; }
.ac-3 { background: #e9ebf1; }
.ac-4 { background: #e1e2e8; }

/* ─── CONTACT FORM ─── */
.contact-form { max-width: 600px; margin: 0 auto; }
.contact-form label { display: block; font-size: 13px; letter-spacing: 0.5px; margin-bottom: 6px; color: #555; }
.contact-form input,
.contact-form textarea {
  width: 100%; padding: 12px; border: 1px solid #ddd;
  font-family: 'Lato', sans-serif; font-size: 15px;
  margin-bottom: 1.2rem; background: #fafafa;
}
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--rose); background: #fff; }
.contact-form textarea { height: 140px; resize: vertical; }

/* ─── BLOG GRID ─── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px; margin: 0 auto;
  padding: 2rem;
}
.blog-card { border: 1px solid #eee; }
.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--peach) 100%);
  display: flex; align-items: center; justify-content: center;
  color: #aaa; font-size: 13px;
}
.blog-card-body { padding: 1.5rem; }
.blog-card-body h3 { font-size: 18px; margin-bottom: 0.5rem; line-height: 1.3; font-family: 'Playfair Display', serif; }
.blog-card-body p { font-size: 14px; color: #666; line-height: 1.7; margin-bottom: 1rem; }
.blog-card-body a { font-size: 13px; color: var(--brown); letter-spacing: 0.5px; text-transform: uppercase; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-banner-inner { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; }
  .feature-row.reverse .feature-img { order: unset; }
  .feature-row.reverse .feature-text { order: unset; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .approach-table { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  nav.site-nav { flex-wrap: wrap; height: auto; padding: 1rem; gap: 0.5rem; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .approach-table { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .page-hero { text-align: left; }
}


/* Mobile Menu */
.menu-toggle{
  display:none;
  background:none;
  border:none;
  font-size:28px;
  cursor:pointer;
}

@media (max-width: 600px){
  .menu-toggle{display:block;}

  nav.site-nav{
    position:relative;
    justify-content:space-between;
  }

  .nav-links{
    display:none;
    flex-direction:column;
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fff;
    z-index:999;
    padding:10px 0;
    box-shadow:0 4px 10px rgba(0,0,0,.08);
  }

  .nav-links.show{
    display:flex;
  }

  .nav-links li,
  .nav-links a{
    width:100%;
    text-align:center;
  }

  .nav-links .has-sub ul{
    position:static;
    display:block;
  }
}
