/* =============================================
   DOMINICK FRENCH MEDIATION — Main Stylesheet
   ============================================= */

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #3a3530;
  background: #faf9f7;
}

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

a { color: #5a7a5a; text-decoration: none; }
a:hover { text-decoration: underline; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.25;
  color: #2c3e2d;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); margin-bottom: 0.75rem; }

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

/* --- Colour Palette ---
   Deep forest green:  #2c3e2d
   Mid sage:           #5a7a5a
   Light sage:         #8faa8f
   Warm cream:         #faf9f7
   Stone/tan:          #f0ece4
   Text dark:          #3a3530
   Text mid:           #5c5650
   Accent gold:        #b5924c
   White:              #ffffff
*/

/* --- Utility --- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 72px 0; }
.section--alt { background: #f0ece4; }
.section--dark { background: #2c3e2d; color: #faf9f7; }
.section--dark h2, .section--dark h3 { color: #faf9f7; }

.text-center { text-align: center; }
.text-muted { color: #5c5650; }

.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
}

.btn--primary {
  background: #5a7a5a;
  color: #fff;
  border-color: #5a7a5a;
}
.btn--primary:hover {
  background: #2c3e2d;
  border-color: #2c3e2d;
  text-decoration: none;
}

.btn--outline {
  background: transparent;
  color: #5a7a5a;
  border-color: #5a7a5a;
}
.btn--outline:hover {
  background: #5a7a5a;
  color: #fff;
  text-decoration: none;
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.15);
  text-decoration: none;
}

/* --- Navigation --- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 249, 247, 0.97);
  border-bottom: 1px solid #e0dbd2;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header__logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #2c3e2d;
  line-height: 1.2;
  text-decoration: none;
  max-width: 260px;
}

.site-header__logo span {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5a7a5a;
  margin-top: 2px;
}

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

.nav a {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3a3530;
  transition: color 0.2s;
}

.nav a:hover,
.nav a.active { color: #5a7a5a; text-decoration: none; }

.nav__cta .btn { padding: 9px 22px; font-size: 0.82rem; }

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #2c3e2d;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* --- HERO --- */
.hero {
  display: flex;
  flex-direction: row;
  min-height: 90vh;
  overflow: hidden;
  margin-top: 70px; /* offset fixed header */
}

.hero__img-wrap {
  flex: 1 1 60%;
  position: relative;
  min-height: 500px;
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Push down to show figures clearly and crop excess sky at top */
  object-position: center 75%;
}

.hero__panel {
  flex: 0 0 38%;
  background-color: #2d5a3d;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2.5rem;
  color: #fff;
}

.hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.25;
  margin-bottom: 1rem;
  color: #fff;
}

.hero__subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
  color: #d4e8da;
}

.hero__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 48px 40px 56px;
  max-width: 780px;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    min-height: unset;
  }
  .hero__img-wrap {
    flex: unset;
    height: 60vw;
    min-height: 260px;
  }
  .hero__panel {
    flex: unset;
    padding: 2rem 1.5rem;
  }
}

.hero__eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
}

.hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.92);
  margin-bottom: 28px;
  max-width: 560px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.hero__contact {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.78);
  margin-top: 16px;
}
.hero__contact a { color: rgba(255,255,255,0.9); }

/* --- THREE COLUMN HOME SECTIONS --- */
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.card {
  display: flex;
  flex-direction: column;
}

.card__img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 24px;
}

.card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.card__img-wrap:hover img { transform: scale(1.03); }

.card h3 { color: #2c3e2d; }
.card p { color: #5c5650; font-size: 0.95rem; }

/* --- LOGO STRIP --- */
.logo-strip {
  background: #f0ece4;
  padding: 36px 0;
  border-top: 1px solid #e0dbd2;
  border-bottom: 1px solid #e0dbd2;
}

.logo-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.logo-strip img {
  height: 70px;
  width: auto;
  object-fit: contain;
  filter: none;
  opacity: 0.9;
}

/* --- SECTION INTRO --- */
.section-intro {
  max-width: 680px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-intro p { color: #5c5650; font-size: 1.05rem; }

/* --- SERVICE CARDS --- */
.service-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(44,62,45,0.08);
  display: flex;
  flex-direction: column;
}

.service-card__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.service-card__body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__price {
  display: inline-block;
  margin-top: 16px;
  padding: 6px 16px;
  background: #f0ece4;
  border-left: 3px solid #5a7a5a;
  font-size: 0.9rem;
  font-weight: 700;
  color: #2c3e2d;
  letter-spacing: 0.02em;
}

/* --- CTA BAND --- */
.cta-band {
  background: #2c3e2d;
  padding: 56px 0;
  text-align: center;
}

.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 28px; }

/* --- CONTACT PAGE --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 28px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-detail__icon {
  font-size: 1.3rem;
  line-height: 1.6;
  flex-shrink: 0;
}

.contact-detail p { margin: 0; color: #5c5650; font-size: 0.95rem; }
.contact-detail strong { display: block; color: #2c3e2d; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 2px; }

.free-chat-box {
  background: #f0ece4;
  border-left: 4px solid #5a7a5a;
  padding: 20px 24px;
  border-radius: 0 4px 4px 0;
  margin-bottom: 28px;
}
.free-chat-box p { color: #3a3530; font-size: 0.95rem; margin: 0; }

/* --- CONTACT FORM --- */
.contact-form { }

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5c5650;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d0c9be;
  border-radius: 4px;
  background: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: #3a3530;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #5a7a5a;
  box-shadow: 0 0 0 3px rgba(90,122,90,0.15);
}

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

.form-submit { margin-top: 8px; }

/* --- FAQ --- */
.faq-section { padding: 72px 0; background: #faf9f7; }

.faq-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.faq-intro p { color: #5c5650; }

.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid #e0dbd2;
}

.faq-item:first-child { border-top: 1px solid #e0dbd2; }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #2c3e2d;
  gap: 16px;
}

.faq-question:hover { color: #5a7a5a; }

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #5a7a5a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5a7a5a;
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.3s, background 0.2s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: #5a7a5a;
  color: #fff;
}

.faq-answer {
  display: none;
  padding: 0 40px 24px 0;
  color: #5c5650;
  font-size: 0.95rem;
  line-height: 1.75;
}

.faq-item.open .faq-answer { display: block; }

.faq-answer a { color: #5a7a5a; }

/* --- FOOTER --- */
.site-footer {
  background: #1e2b1f;
  color: rgba(255,255,255,0.7);
  padding: 48px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand__name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 4px;
}

.footer-brand__tagline {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.footer-brand p { font-size: 0.88rem; line-height: 1.6; }

.footer-col h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: #fff; text-decoration: none; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: #fff; }

/* --- PAGE HERO (inner pages) --- */
.page-hero {
  margin-top: 70px;
  background: #2c3e2d;
  padding: 56px 0 52px;
  text-align: center;
}

.page-hero h1 { color: #fff; margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 900px) {
  .three-col { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .three-col .card:nth-child(n) { /* all stack */ }
}

@media (max-width: 768px) {
  .nav { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: #faf9f7; padding: 24px; border-bottom: 1px solid #e0dbd2; gap: 1.2rem; }
  .nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero__content { padding: 32px 24px 40px; }
  .section { padding: 52px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { height: 80vh; }
  .logo-strip__inner { gap: 32px; }
  .logo-strip img { height: 50px; }
}
