:root {
  --bg: #f8f5ee;
  --surface: #fffdf8;
  --text: #1f1a17;
  --muted: #6b645e;
  --line: #ddd2be;
  --gold: #b8913b;
  --gold-deep: #8f6b1d;
  --shadow: 0 10px 30px rgba(31, 26, 23, 0.08);
  --radius: 20px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f7f1e4 0%, #faf8f2 35%, #f7f5ef 100%);
  line-height: 1.6;
}

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

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

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248,245,238,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(143,107,29,0.12);
}

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
}

.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.brand-subtitle {
  font-size: 0.85rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 1rem;
}

/* BUTTONS */
.btn {
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  border: 1px solid var(--gold-deep);
  background: linear-gradient(135deg, var(--gold), #ceb45b);
  font-weight: 700;
}

.btn-large {
  padding: 1.2rem 1.8rem;
  font-size: 1.05rem;
}

/* HERO */
.hero {
  padding: 5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.hero-photo {
  height: 420px;
  border-radius: 22px;
  background-image:
    linear-gradient(to top, rgba(0,0,0,0.4), rgba(0,0,0,0)),
    url("images/hero-peter.jpg");
  background-size: cover;
  background-position: center 30%;
}

/* SECTIONS */
.section { padding: 5rem 0; }

.section-soft {
  background: rgba(255,252,244,0.7);
}

/* ABOUT */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.about-photos {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1rem;
}

.photo-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
}

.photo-block {
  border-radius: 22px;
  min-height: 200px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.photo-block.large {
  min-height: 100%;
}

.photo-block.small {
  min-height: 180px;
}

.about-img-1 { background-image: url("images/peter-lifestyle.jpg"); }
.about-img-2 { background-image: url("images/peter-close.jpg"); }
.about-img-3 { background-image: url("images/peter-outdoor.jpg"); }

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.service-image {
  height: 170px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
}

.service-img-1 { background-image: url("images/transition.jpg"); }
.service-img-2 { background-image: url("images/relationship.jpg"); }
.service-img-3 { background-image: url("images/sales.jpg"); }

/* 🔥 TESTIMONIALS — GOLD PREMIUM VERSION */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.testimonial {
  padding: 1.6rem;
  border-radius: 22px;
  background: linear-gradient(145deg, #fffdf8, #f4ead2);
  border: 1px solid rgba(184, 145, 59, 0.35);
  box-shadow: 0 12px 30px rgba(31, 26, 23, 0.10);
  transition: all 0.25s ease;
  position: relative;
}

.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(31, 26, 23, 0.15);
}

/* GOLD SIDE BAR */
.testimonial::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  border-radius: 22px 0 0 22px;
  background: linear-gradient(180deg, var(--gold), var(--gold-deep));
}

/* TEXT */
.quote-preview {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.55;
}

.quote-meta {
  color: #4f4842;
  font-size: 1rem;
}

.toggle-btn {
  border: none;
  background: none;
  color: var(--gold-deep);
  font-weight: 700;
  cursor: pointer;
}

/* APPROACH */
#approach h2 {
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  font-weight: 700;
}

#approach h3 {
  font-size: 1.8rem;
  font-weight: 700;
}

#approach p {
  font-size: 1.12rem;
  line-height: 1.7;
}

/* CREDENTIALS */
.full-width-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* CTA */
.cta-box {
  padding: 2rem;
  border-radius: 20px;
  background: #efe8d5;
}

/* FOOTER */
.site-footer {
  padding: 2rem;
  text-align: center;
}
/* === APPROACH SECTION === */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.approach-card {
  padding: 1.6rem;
  border-radius: 22px;
  background: #fffdf8;
  border: 1px solid rgba(143, 107, 29, 0.14);
  box-shadow: 0 10px 26px rgba(31, 26, 23, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.approach-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(31, 26, 23, 0.12);
}
/* RESPONSIVE */
@media (max-width: 1100px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .about-layout,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-photos {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .hero-grid,
  .about-layout,
  .services-grid,
  .approach-grid {
    grid-template-columns: 1fr;
  }

  .about-photos {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}
/* === EYEBROW / SECTION LABELS (About Peter, Approach, etc) === */
.eyebrow {
  font-size: 1rem;          /* was smaller */
  font-weight: 700;         /* bolder */
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.5rem;
}

/* === HERO TOP LINE === */
.hero .eyebrow {
  font-size: 1.15rem;       /* bigger than other sections */
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--gold-deep);
}

/* === SECTION HEADINGS (About, Approach titles) === */
.section-heading h2 {
  font-size: clamp(2.8rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
}

/* === APPROACH LABEL BOOST === */
#approach .eyebrow {
  font-size: 1.05rem;
  font-weight: 800;
}
/* CREDENTIALS TITLE REFINEMENT */
.credentials-heading-center h2 {
  font-size: clamp(2.2rem, 3vw, 2.8rem); /* smaller */
  font-weight: 600;                      /* lighter */
  margin-top: 0.3rem;
}

.credentials-heading-center .eyebrow {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}
body {
  letter-spacing: 0.01em;
}

h1, h2, h3 {
  letter-spacing: -0.01em;
}
/* ===============================
   TYPOGRAPHY SYSTEM (GLOBAL)
================================ */

/* HEADLINES (big serif, consistent everywhere) */
h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 0.6rem;
}

/* SIZE SCALE */
h1 {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  line-height: 1.2;
}
h2 { font-size: clamp(2.2rem, 3.5vw, 3.2rem); }
h3 { font-size: 1.5rem; }

/* BODY TEXT */
p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
}

/* SUBTITLES / EYEBROWS (About Peter, Approach, etc) */
.eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.4rem;
}

/* HERO SUBTEXT */


/* SECTION PARAGRAPHS */
.section p {
  max-width: 650px;
}

/* SERVICE CARD TITLES */
.services-grid h3 {
  font-size: 1.4rem;
}

/* TESTIMONIAL TEXT */
.quote-preview {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.5;
}

/* TESTIMONIAL NAME */
.quote-meta {
  font-size: 0.95rem;
  color: var(--muted);
}
/* === CREDENTIAL BADGES FIX === */
.full-width-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: center;
}

.full-width-badges img {
  width: 100%;
  height: 160px;        /* bigger, matches heading presence */
  object-fit: contain;
  margin: 0 auto;
}
/* === CENTER SECTION HEADINGS === */
.section-heading {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading p,
.section-heading h2 {
  margin-left: auto;
  margin-right: auto;
}

/* keep text readable (not too wide) */
.section-heading p {
  max-width: 600px;
}
/* FORCE HERO KICKER SIZE (override everything) */
.hero-kicker {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 4vw, 4rem); /* EXACT match to section-heading h2 */
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  color: var(--text);
}
/* HERO SUPPORT TEXT (match eyebrow scale but bigger) */
.hero-support {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text);
  max-width: 700px;
}
/* HERO HIERARCHY FIX */

/* 1. Top line — make it strong (same family, bold, noticeable) */
.hero-kicker {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.6rem;
  color: var(--text);
}

/* 2. Second line — medium emphasis */
.hero-support {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--muted);
  margin-bottom: 1rem;
}

.hero-kicker {
  font-family: "Cormorant Garamond", serif !important;
  font-size: 1.9rem !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  margin-bottom: 0.5rem !important;
  color: var(--text) !important;
}

.hero-support {
  font-size: 1.35rem !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
  color: var(--text) !important;
  margin-bottom: 1rem !important;
  max-width: 700px !important;
}
/* FINAL HERO TEXT OVERRIDE */
p.hero-kicker {
  font-family: "Cormorant Garamond", serif !important;
  font-size: 2.4rem !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  color: var(--text) !important;
  margin: 0 0 0.6rem 0 !important;
}

p.hero-support {
  font-family: "Inter", sans-serif !important;
  font-size: 1.45rem !important;
  font-weight: 500 !important;
  line-height: 1.45 !important;
  color: var(--muted) !important;
  margin: 0 0 1rem 0 !important;
  max-width: 700px !important;
}
/* HERO KICKER = SAME SIZE AS MAIN HEADINGS */
p.hero-kicker {
  font-family: "Cormorant Garamond", serif !important;
  font-size: clamp(2.8rem, 4vw, 4rem) !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  margin-bottom: 0.6rem !important;
  color: var(--text) !important;
}
.hero-copy p.hero-kicker {
  font-family: "Cormorant Garamond", serif !important;
  font-size: 3.2rem !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  margin-bottom: 0.6rem !important;
  color: var(--text) !important;
}

.hero-copy h1 {
  font-family: "Cormorant Garamond", serif !important;
  font-size: 2.2rem !important;
  font-weight: 500 !important;
  line-height: 1.3 !important;
  margin-bottom: 1rem !important;
  max-width: 700px !important;
}
/* FINAL PETER REVISIONS */

/* HERO TOP LINE */
.hero-kicker {
  font-family: "Cormorant Garamond", serif !important;
  font-size: clamp(2.8rem, 4vw, 4rem) !important; /* same as main section headings */
  font-weight: 700 !important;
  line-height: 1.1 !important;
  text-align: center !important;
  margin: 0 0 0.75rem 0 !important;
  color: var(--text) !important;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-support {
  font-size: 1.35rem !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
  color: var(--muted) !important;
  margin: 0 0 1rem 0 !important;
  max-width: 700px !important;
}

.hero-copy h1 {
  font-family: "Cormorant Garamond", serif !important;
  font-size: 2.2rem !important;
  font-weight: 500 !important;
  line-height: 1.3 !important;
  margin-bottom: 1rem !important;
  max-width: 700px !important;
}
/* FORCE CREDENTIALS HEADING TO MATCH OTHER HEADINGS */
.credentials-heading-center h2 {
  font-family: "Cormorant Garamond", serif !important;
  font-size: clamp(2.8rem, 4vw, 4rem) !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  text-align: center !important;
}
/* FORCE APPROACH HEADING TO MATCH OTHERS */
#approach h2 {
  font-family: "Cormorant Garamond", serif !important;
  font-size: clamp(2.8rem, 4vw, 4rem) !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  text-align: center !important;
  margin-bottom: 0.75rem !important;
}
/* FOOTER CONTACT — BIGGER + BOLDER */
.footer-contact p {
  font-size: 1.1rem;
  margin: 0.4rem 0;
}

.footer-contact strong {
  font-weight: 700;
}

.footer-contact a {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
}
/* FORCE APPROACH TITLE SIZE (no matter what tag it is) */
#approach .eyebrow,
#approach h2,
#approach p:first-child {
  font-family: "Cormorant Garamond", serif !important;
  font-size: clamp(2.8rem, 4vw, 4rem) !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  text-align: center !important;
}
/* FOOTER CONTACT — FORCE BIG + BOLD */
footer a[href^="tel"],
footer a[href^="mailto"] {
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  color: var(--text) !important;
}

footer strong {
  font-weight: 700 !important;
}
/* FORCE PHONE + EMAIL BIGGER + BOLD */
footer a[href^="tel"],
footer a[href^="mailto"] {
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  color: var(--text) !important;
  text-decoration: none !important;
}

/* Also make the labels bold */
footer strong {
  font-weight: 800 !important;
}

/* Slight spacing improvement */
footer p {
  margin: 0.5rem 0;
}
.contact-line {
  font-size: 1.1rem;
  margin: 0.5rem 0;
}

.contact-line strong {
  font-weight: 800;
  color: var(--text);
}

.contact-highlight {
  font-size: 1.3rem !important;
  font-weight: 800 !important;
  color: var(--text) !important;
  text-decoration: none !important;
}



.approach-label {
  color: #1f1a17 !important;
}
.approach-label {
  color: #1f1a17 !important;
}

/* Mobile cleanup */
@media (max-width: 768px) {
  body {
    font-size: 16px;
    line-height: 1.6;
  }

  section {
    padding: 48px 20px;
  }

  .container {
    width: 100%;
    padding: 0 20px;
  }

  h1 {
    font-size: 2.2rem;
    line-height: 1.15;
  }

  h2 {
    font-size: 1.8rem;
    text-align: center;
  }

  h3 {
    font-size: 1.25rem;
  }

  .hero {
    padding: 70px 20px 50px;
    text-align: center;
  }

  .hero-content,
  .about-grid,
  .approach-grid,
  .services-grid,
  .credentials-grid,
  .testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero img,
  .about img {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    display: block;
  }

  .card,
  .service-card,
  .testimonial-card,
  .credential-card {
    padding: 22px;
    border-radius: 18px;
  }

  .btn,
  button,
  .cta-button {
    width: 100%;
    max-width: 320px;
    margin: 16px auto 0;
    display: block;
    text-align: center;
  }

  nav {
    padding: 14px 20px;
  }

  nav ul {
    gap: 14px;
    font-size: 0.9rem;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Mobile header fix */
@media (max-width: 768px) {
  .site-header {
    padding: 14px 18px;
  }

  .nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }

  .brand-logo {
    width: 72px;
    height: auto;
  }

  .brand-name {
    font-size: 2.2rem;
    line-height: 1.05;
    text-align: center;
  }

  .brand-subtitle {
    font-size: 1rem;
    line-height: 1.35;
    text-align: center;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
    width: 100%;
    padding: 0;
    margin: 8px 0 0;
  }

  .nav-links a {
    font-size: 1rem;
    white-space: nowrap;
  }
}
/* Floating Book Now Button */
.floating-book-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;

  background-color: #c8a96a; /* your gold */
  color: #000;
  text-decoration: none;

  padding: 14px 22px;
  border-radius: 30px;

  font-weight: 600;
  font-size: 1rem;

  box-shadow: 0 8px 20px rgba(0,0,0,0.2);

  z-index: 999;
  transition: all 0.3s ease;
}

.floating-book-btn:hover {
  background-color: #b89655;
  transform: translateY(-2px);
}

/* Mobile tweak */
@media (max-width: 768px) {
  .floating-book-btn {
    bottom: 16px;
    right: 16px;
    padding: 12px 18px;
    font-size: 0.95rem;
  }
}

/* Fix image centering */
.about img,
.hero img,
img {
  width: 100%;
  height: auto;
  display: block;
}

/* If image is inside a container with fixed height */
.about img {
  height: 300px; /* adjust if needed */
  object-fit: cover;
  object-position: center;
}

@media (max-width: 768px) {
  img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    display: block;
  }
}
@media (max-width: 768px) {
  .hero-photo {
    min-height: 360px;
    background-size: cover;
    background-position: center 35%;
    border-radius: 22px;
  }
}
@media (max-width: 768px) {
  .hero-photo {
    height: 300px !important;
    background-position: center 25% !important;
  }
}

/* FINAL MOBILE HERO PHOTO FORCE FIX */
@media only screen and (max-width: 768px) {
  .hero-photo {
    height: 300px !important;
    min-height: 300px !important;
    max-height: 300px !important;

    background-size: cover !important;
    background-position-x: center !important;
    background-position-y: 10% !important;
    background-repeat: no-repeat !important;
  }
}
@media only screen and (max-width: 768px) {
  .hero-photo {
    height: 360px !important;
    min-height: 360px !important;
    background-size: contain !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-color: #f8f5ee !important;
  }
}