:root{
  --bg:#d6c7d8;        /* soft lavender background */
  --card:#5b3b4f;      /* deep plum cards */
  --text:#2f1e28;      /* dark elegant text */
  --muted:#6b4a5e;     /* muted plum */
  --accent:#7b3f5a;    /* button purple */
  --border:rgba(0,0,0,.08);
  --radius:16px;
}

*{box-sizing:border-box;}
body{
  margin:0;
  font-family:system-ui,Arial;
  background:var(--bg);
  color:var(--text);
}
img{max-width:100%;border-radius:var(--radius);}

.container{width:min(100% - 32px,1100px);margin:auto;}

.site-header{
  position:sticky;
  top:0;
  background:#d6c7d8;
  border-bottom:1px solid #b79fb3;
}
.logo{
  height: 44px;
  width: auto;
  object-fit: contain;
}

.header-inner{
  display:flex;justify-content:space-between;
  align-items:center;padding:14px 0;
}

.site-nav a{margin-left:12px;color:var(--muted);}
.site-nav{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap; /* prevents overlap */
}

/* Make nav links normal (not big buttons) */
.site-nav a{
  display:inline-block;
  padding:10px 12px;
  border-radius:12px;
  background:transparent;
  color:var(--text);
  text-decoration:none;
}

/* Contact highlight (small, not huge) */
.site-nav .nav-cta{
  border:1px solid rgba(0,0,0,.12);
  background:rgba(255,255,255,.18);
}
.btn{
  padding:12px 18px;
  border-radius:14px;
  background:#bfe8dc;   /* soft teal from logo leaves */
  color:#2f5f55;
  font-weight:600;
}
.btn:hover{
  background:#a8dccd;   /* slightly darker mint on hover */
}
.hero-cta{
  display:flex;
  flex-wrap:wrap;          /* allows buttons to go to next line */
  gap:12px;
  align-items:center;
}
.hero{padding:40px 0;}
.hero-inner{display:grid;grid-template-columns:1fr 1fr;gap:20px;}

.section{padding:40px 0;}
.section-alt{
  background:#cbb7c9;
}
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;}
.card{
  background:#5b3b4f;
  padding:18px;
  border-radius:18px;
  color:#f5eef3;
}

.gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;}
.gallery img{height:200px;object-fit:cover;}

.split{display:grid;grid-template-columns:1fr 1fr;gap:20px;}

.contact-form{
  background:var(--card);
  padding:16px;border-radius:var(--radius);
  display:grid;gap:10px;
}
input,textarea{
  padding:10px;border-radius:10px;
  border:1px solid var(--border);
  background:#ffffff05;color:var(--text);
}

.site-footer{
  padding:20px 0;border-top:1px solid var(--border);
  text-align:center;color:var(--muted);
}

@media(max-width:800px){
  .hero-inner,.split{grid-template-columns:1fr;}
  .cards{grid-template-columns:1fr;}
  .gallery{grid-template-columns:1fr 1fr;}
}
@media(max-width:700px){
  .hero-cta a{
    width:100%;            /* each button gets its own row */
    text-align:center;
  }
}
.muted{ opacity:.85; }

.service-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:18px;
  margin-top:18px;
}

.service-card{
  background:#ffffff2a;
  border:1px solid rgba(0,0,0,.08);
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 8px 22px rgba(0,0,0,.08);
}

.service-img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
}

.service-body{
  padding:16px;
}

.service-body h3{
  margin:0 0 6px 0;
}

.service-desc{
  margin:0 0 12px 0;
  line-height:1.5;
}

.service-meta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  padding:10px 0 14px 0;
  border-top:1px solid rgba(0,0,0,.08);
  border-bottom:1px solid rgba(0,0,0,.08);
  margin:10px 0 14px 0;
}

.price{
  font-weight:800;
}

.service-cta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.service-cta .btn,
.service-cta .btn-ghost{
  flex:1;
  min-width:110px;
  text-align:center;
}

/* Mobile */
@media(max-width:800px){
  .service-grid{
    grid-template-columns:1fr;
  }
  .service-img{
    height:200px;
  }
}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:18px;
}

.gallery-img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:14px;
  box-shadow:0 6px 18px rgba(0,0,0,.12);
  transition:transform .25s ease, box-shadow .25s ease;
  cursor:pointer;
}

.gallery-img:hover{
  transform:scale(1.03);
  box-shadow:0 10px 26px rgba(0,0,0,.18);
}

.gallery-cta{
  text-align:center;
  margin-top:22px;
}

/* Mobile */
@media(max-width:800px){
  .gallery-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .gallery-img{
    height:180px;
  }
}
.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.85);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}

.lightbox-img{
  max-width:90%;
  max-height:90%;
  border-radius:10px;
}

.lightbox-close{
  position:absolute;
  top:20px;
  right:24px;
  font-size:34px;
  color:#fff;
  cursor:pointer;
}
.service-card img{
  width:100%;
  height:220px;
  object-fit:cover;
  object-position:center 70%;
}
/* HERO polish */
.hero{
  padding: 38px 0 26px;
}

.hero .container{
  max-width: 980px;
}

.hero h1{
  letter-spacing: -0.5px;
  line-height: 1.05;
  margin-bottom: 12px;
}

.hero p{
  max-width: 60ch;
  line-height: 1.55;
  opacity: 0.9;
}

/* Soft glass card feel for the hero content */
.hero-card{
  background: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 18px;
  padding: 18px 16px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
  backdrop-filter: blur(8px);
}
.site-logo img {
  height: 56px;
}
.contact-section {
  max-width: 520px;
  margin: 80px auto;
  padding: 40px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.contact-subtext {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 32px;
}

.contact-form {
  text-align: left;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: #444;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 0.95rem;
  transition: border 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #7a9c90; /* logo green */
}

.btn-primary {
  width: 100%;
  padding: 14px;
  margin-top: 10px;
  background: #7a9c90;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #67867c;
}

.form-note {
  margin-top: 14px;
  font-size: 0.85rem;
}
.contact-links {
  text-align: center;
  padding: 60px 20px;
  background: #f6f8f7;
}

.contact-links h2 {
  margin-bottom: 28px;
  font-size: 1.9rem;
  font-weight: 600;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.contact-btn {
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  color: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
  min-width: 170px;
}

.contact-btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

/* Brand styling */
.instagram { background: #E1306C; }
.email     { background: #6A9C89; } /* logo green */
.phone     { background: #2f2f2f; }

.aftercare-dropdown {
  position: fixed;
  top: 80px;
  right: 16px;
  width: 90%;
  max-width: 420px;
  background: #f3e9ee;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  display: none;
  z-index: 999;
}

.aftercare-inner h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.aftercare-dropdown details {
  margin-bottom: 10px;
}

.aftercare-dropdown summary {
  font-weight: 600;
  cursor: pointer;
}

.aftercare-dropdown p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-top: 6px;
}
/* Header logo sizing */
.logo {
  height: 56px;        /* desktop size */
  width: auto;
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .logo {
    height: 64px;      /* slightly larger on mobile */
  }
}
/* ===== Mobile menu behavior ===== */
.nav-toggle{
  display:none;
  border:1px solid rgba(0,0,0,.12);
  background:rgba(255,255,255,.18);
  border-radius:12px;
  padding:10px 12px;
  font-size:18px;
}

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

  .site-nav{
    display:none;
    width:100%;
    padding-top:10px;
  }

  .site-nav.open{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
  }

  .header-inner{
    flex-wrap:wrap;  /* allows nav to drop under header row */
  }

  .site-nav a{
    width:100%;
  }
}
/* Header logo sizing (FINAL) */
.logo {
  height: 68px;          /* ⬅️ increase here */
  width: auto;
  max-width: 240px;      /* prevents layout push */
  object-fit: contain;
}

/* Mobile */
@media (max-width: 768px) {
  .logo {
    height: 76px;        /* ⬅️ mobile boost */
    max-width: 260px;
  }
}
.site-header{
  z-index: 1000;
}
.header-inner{
  position: relative;
}
.site-nav.open{
  display:flex;
  flex-direction:column;
  gap:10px;

  position: absolute;
  top: calc(100% + 10px);
  right: 0;

  width: min(260px, 92vw);
  padding: 12px;

  background: rgba(214, 199, 216, 0.98);
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);

  z-index: 1001;
}
.aftercare-list {
  margin: 10px 0 4px;
  padding-left: 18px;
}

.aftercare-list li {
  margin-bottom: 8px;
  line-height: 1.45;
  font-size: 0.92rem;
}
.site-nav .nav-aftercare{
  display:inline-block;
  padding:10px 12px;
  border-radius:12px;
  background:transparent;
  color:var(--text);
  border:none;
  cursor:pointer;
  font: inherit;
  text-align:left;
}
.site-nav a{ width:100%; }
@media (max-width: 768px){
  .site-nav .nav-aftercare{
    width:100%;
  }
}
/* Desktop nav layout */
.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
/* Desktop Aftercare panel */
@media (min-width: 769px) {
  .aftercare-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    right: 16px;

    width: 420px;
    max-height: 70vh;
    overflow-y: auto;

    background: rgba(243, 233, 238, 0.98);
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.22);
    z-index: 2000;
  }
}
@media (max-width: 768px) {
  .site-nav {
    display: none;
  }

  .site-nav.open {
    display: flex;
    flex-direction: column;
  }
}
.nav-aftercare {
  background: transparent;
  border: none;
  padding: 6px 10px;
  border-radius: 10px;
  cursor: pointer;
}

.nav-aftercare:hover {
  background: rgba(0,0,0,0.06);
}
/* Desktop logo sizing */
@media (min-width: 1024px) {
  .logo img,
  .site-logo img,
  header img {
    height: 72px;
    width: auto;
    max-width: none;
  }
}
/* ===== Desktop horizontal navigation fix ===== */
@media (min-width: 769px){

  .header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:10px 0; /* reduces header height */
  }

  .site-nav{
    display:flex;
    flex-direction:row;
    align-items:center;
    gap:22px;
    flex-wrap:nowrap; /* prevents vertical stacking */
  }

  .site-nav a,
  .nav-aftercare{
    width:auto;
    padding:6px 8px;
    font-size:0.95rem;
  }

}
/* ===== Center hero buttons + hero image on desktop ===== */
.hero-cta{
  max-width: 980px;
  margin: 0 auto;              /* centers the whole block */
  justify-content: center;      /* centers the buttons */
}

.hero-media{
  max-width: 980px;
  margin: 18px auto 0;          /* centers the image block */
  display: flex;
  justify-content: center;      /* centers the image */
}

.hero-media img{
  width: 100%;
  max-width: 980px;
  height: auto;
  display: block;
}
/* Aftercare dropdown under nav button */
.aftercare-wrap{
  position: relative;
  display: inline-block;
}

.aftercare-wrap .aftercare-dropdown{
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);

  width: 420px;
  max-width: 92vw;
  max-height: 70vh;
  overflow-y: auto;

  background: rgba(243, 233, 238, 0.98);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.22);
  padding: 20px;

  display: none;
  z-index: 3000;
}

.aftercare-wrap .aftercare-dropdown.open{
  display: block;
}
/* ===== TRUE dropdown under Aftercare button ===== */

.aftercare-wrap{
  position: relative;
  display: inline-flex;
  align-items: center;
}

.aftercare-dropdown{
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);

  width: 420px;
  max-width: 92vw;
  max-height: 70vh;
  overflow-y: auto;

  background: rgba(243, 233, 238, 0.98);
  border-radius: 18px;
  box-shadow: 0 28px 60px rgba(0,0,0,.22);
  padding: 20px;

  display: none;
  z-index: 9999;
}

.aftercare-dropdown.open{
  display: block;
}

/* nice hover */
.nav-aftercare:hover{
  background: rgba(0,0,0,.06);
}
/* ===== CENTER HERO IMAGE + BUTTONS ===== */

.hero-cta{
  max-width: 980px;
  margin: 0 auto;
  justify-content: center;
}

.hero-media{
  max-width: 980px;
  margin: 22px auto 0;
  display:flex;
  justify-content:center;
}

.hero-media img{
  width:100%;
  max-width:980px;
  height:auto;
}
/* ===== HERO: center buttons + make image fill width nicely ===== */
.hero-cta{
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 16px auto 0;
}

.hero-media{
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 16px auto 0;
}

.hero-media img{
  width: 100%;
  max-width: 1100px;   /* bigger on desktop */
  height: auto;
  display: block;
  object-fit: cover;
}

/* Mobile: buttons centered + image almost edge-to-edge */
@media (max-width: 768px){
  .hero-cta{
    justify-content: center;
    padding: 0 12px;
  }

  .hero-cta a{
    width: auto;        /* keeps them centered instead of full-width */
    min-width: 160px;
    text-align: center;
  }

  .hero-media{
    padding: 0 12px;
  }

  .hero-media img{
    max-width: 100%;
  }
}

/* ===== Mobile Aftercare dropdown: expand INSIDE the open menu ===== */
@media (max-width: 768px){
  .aftercare-wrap{
    width: 100%;
    display: block;
  }

  .aftercare-dropdown{
    position: static !important;
    transform: none !important;
    width: 100%;
    max-width: 100%;
    margin-top: 8px;
    box-shadow: none;
  }

  .aftercare-dropdown.open{
    display: block;
  }
}
/* About photo sizing + alignment */
#about .split{
  align-items: center;
}

.about-photo{
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 18px;
  object-fit: cover;
}

/* Stack About section on smaller screens */
@media (max-width: 900px){
  #about .split{
    grid-template-columns: 1fr;
  }
  .about-photo{
    max-width: 100%;
  }
}
.ombre-focus{
  object-position: 5% center; /* adjust until perfect */
}
.service-card img{
  width:100%;
  height:220px;
  object-fit:cover;
  object-position:right center;
}