/* ==========================================================================
   Pamper Align — stylesheet
   Palette pulled from the brand colour swatch:
   rose #C8697D · sage #606A51 · cream #F6EDE4 · gold #B69667 · brown #6A4936 · charcoal #26221F
   ========================================================================== */

:root {
  --rose: #c8697d;
  --rose-dark: #a8536a;
  --rose-light: #e9c3cd;
  --sage: #606a51;
  --sage-dark: #4a5340;
  --sage-light: #b9c0ab;
  --cream: #f8f1e8;
  --cream-alt: #efe2d1;
  --gold: #b69667;
  --gold-light: #ddc9a3;
  --brown: #6a4936;
  --charcoal: #2a2521;

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-width: 1180px;
  --radius: 18px;
  --shadow-soft: 0 12px 30px rgba(42, 37, 33, 0.09);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.no-scroll { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--brown);
  line-height: 1.2;
  margin: 0 0 0.5em;
  font-weight: 600;
}
h1 { font-size: clamp(2.2rem, 4vw + 1rem, 3.4rem); }
h2 { font-size: clamp(1.7rem, 2.6vw + 1rem, 2.4rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1.1em; }
.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--charcoal);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  z-index: 999;
}
.skip-link:focus { left: 16px; top: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  background: var(--rose);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  border: 2px solid var(--rose);
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
  box-shadow: var(--shadow-soft);
}
.btn:hover { background: var(--rose-dark); border-color: var(--rose-dark); transform: translateY(-2px); }
.btn--outline {
  background: transparent;
  color: var(--brown);
  border-color: var(--brown);
  box-shadow: none;
}
.btn--outline:hover { background: var(--brown); color: #fff; }
.btn--sage { background: var(--sage); border-color: var(--sage); }
.btn--sage:hover { background: var(--sage-dark); border-color: var(--sage-dark); }
.btn--small { padding: 10px 20px; font-size: 0.88rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 241, 232, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(106, 73, 54, 0.12);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand__mark { width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0; }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--brown);
}
.brand__tagline {
  font-size: 0.72rem;
  color: var(--sage-dark);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--brown);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav ul { display: flex; gap: 24px; align-items: center; }
.site-nav a {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--charcoal);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.site-nav a:hover,
.site-nav a.is-active { color: var(--rose-dark); border-color: var(--rose); }
.site-nav__cta { white-space: nowrap; }

/* ---------- Hero (generic, image-free) ---------- */
.hero {
  position: relative;
  padding: 76px 0 84px;
  overflow: hidden;
  background: radial-gradient(circle at 12% 20%, var(--cream-alt) 0%, var(--cream) 55%);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--sage-dark);
  margin-bottom: 14px;
}
.hero__eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}
.hero p.lead {
  font-size: 1.14rem;
  color: var(--brown);
  max-width: 46ch;
}
.hero__art {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero__art img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.petal-blob {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: var(--rose-light);
  opacity: 0.55;
  filter: blur(2px);
  z-index: 0;
}
.hero__art img { position: relative; z-index: 1; }
.cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 26px; }

/* ---------- Hero with photo background (Services) ---------- */
.hero-photo {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center 28%;
  color: #fff;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42,37,33,0.15) 0%, rgba(42,37,33,0.72) 100%);
}
.hero-photo__inner {
  position: relative;
  z-index: 1;
  padding: 60px 0;
}
.hero-photo h1 { color: #fff; }
.hero-photo p.lead { color: var(--cream-alt); max-width: 60ch; }

/* ---------- Sections ---------- */
.section { padding: 78px 0; }
.section--alt { background: var(--cream-alt); }
.section--brown { background: var(--brown); color: var(--cream); }
.section--brown h2, .section--brown h3 { color: var(--cream); }
.section-head { max-width: 700px; margin: 0 auto 48px; text-align: center; }
.section-head p { color: var(--sage-dark); }

.divider {
  display: flex;
  justify-content: center;
  margin: 8px 0 46px;
}
.divider img { width: 220px; opacity: 0.9; }

/* ---------- Trust / certification badge strip ---------- */
.trust-strip {
  background: var(--cream);
  padding: 20px 0;
  border-top: 1px solid rgba(42,37,33,0.06);
  border-bottom: 1px solid rgba(42,37,33,0.06);
}
.trust-strip__inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 26px;
  text-align: center;
}
.trust-strip__label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-dark);
  white-space: nowrap;
}
.trust-strip__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.trust-strip__badge { height: 62px; width: auto; }
.trust-strip__logo { height: 27px; width: auto; }
@media (max-width: 480px) {
  .trust-strip__inner { flex-direction: column; gap: 12px; }
  .trust-strip__badge { height: 52px; }
  .trust-strip__logo { height: 23px; }
  .trust-strip__logos { gap: 22px; }
}

/* ---------- What to know list ---------- */
.info-card {
  background: #fff;
  border: 1px solid rgba(106,73,54,0.1);
  border-radius: var(--radius);
  padding: 34px 36px;
  box-shadow: var(--shadow-soft);
}
.info-card h3 { margin-bottom: 18px; }
.check-list { display: grid; gap: 14px; }
.check-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--charcoal);
}
.check-list .mark {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  margin-top: 2px;
}

/* ---------- Service cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow-soft);
  border-top: 4px solid var(--rose);
  display: flex;
  flex-direction: column;
}
.service-card:nth-child(2) { border-top-color: var(--sage); }
.service-card:nth-child(3) { border-top-color: var(--gold); }
.service-card:nth-child(4) { border-top-color: var(--brown); }
.service-card__mode {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--sage-dark);
  margin-bottom: 6px;
}
.service-card__note {
  margin-top: auto;
  padding-top: 14px;
  font-size: 0.92rem;
  color: var(--rose-dark);
  font-weight: 700;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

/* ---------- About page ---------- */
.about-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
}
.about-hero__logo {
  background: var(--cream-alt);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-hero__logo img { max-width: 320px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 10px;
}
.value-pill {
  background: #fff;
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: var(--shadow-soft);
  border-left: 4px solid var(--gold);
  font-weight: 700;
  color: var(--brown);
}
.project-panel {
  background: var(--sage);
  color: #fff;
  border-radius: 26px;
  padding: 54px;
  margin-top: 24px;
}
.project-panel h2, .project-panel h3 { color: #fff; }
.project-panel p { color: var(--cream-alt); }
.project-list { display: grid; gap: 14px; margin-top: 20px; }
.project-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255,255,255,0.08);
  padding: 14px 18px;
  border-radius: 12px;
}
.project-list .mark {
  flex-shrink: 0;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.2rem;
}
blockquote.pull {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--rose-dark);
  border-left: 3px solid var(--rose);
  padding-left: 22px;
  margin: 34px 0;
}

/* ---------- Gallery / Library ---------- */
.library-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 22px;
}
.library-card {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #fff;
}
.library-card img {
  width: 100%;
  aspect-ratio: 3 / 4.1;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.library-card:hover img { transform: scale(1.045); }
.library-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(42, 37, 33, 0.78);
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
}
.library-note {
  text-align: center;
  max-width: 620px;
  margin: 44px auto 0;
  color: var(--sage-dark);
  font-weight: 600;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 17, 15, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 40px 20px;
}
.lightbox.is-visible { display: flex; }
.lightbox__img {
  max-width: min(90vw, 640px);
  max-height: 86vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox__close {
  position: absolute;
  top: 22px;
  right: 28px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
}

/* ---------- Shop / coming soon ---------- */
.coming-soon {
  text-align: center;
  padding: 100px 0 120px;
}
.coming-soon .petal-ring {
  width: 120px;
  margin: 0 auto 28px;
}
.coming-soon h1 { margin-bottom: 14px; }
.coming-soon p.lead { max-width: 52ch; margin: 0 auto 30px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: var(--cream-alt); padding-top: 56px; }
.site-footer a { color: var(--cream-alt); }
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(248,241,232,0.14);
}
.site-footer__mark { width: 46px; height: 46px; border-radius: 50%; margin-bottom: 10px; }
.site-footer__brand p { margin: 0 0 4px; font-family: var(--font-display); font-size: 1.15rem; color: #fff; }
.site-footer__tagline { font-family: var(--font-body) !important; font-size: 0.88rem !important; color: var(--gold-light) !important; }
.site-footer__nav { display: flex; flex-direction: column; gap: 10px; }
.site-footer__nav a:hover { color: var(--rose-light); }
.site-footer__contact { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.site-footer__contact a:hover { color: var(--rose-light); }
.site-footer__bottom { text-align: center; padding: 18px 0; font-size: 0.85rem; color: var(--sage-light); }
.site-footer__legal { display: flex; justify-content: center; align-items: center; gap: 10px; margin: 0 0 10px; }
.site-footer__legal a:hover { color: var(--rose-light); }
.site-footer__legal span { color: var(--sage-light); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero__inner, .about-hero { grid-template-columns: 1fr; }
  .hero__art { order: -1; }
  .services-grid { grid-template-columns: 1fr; }
  .project-panel { padding: 36px 26px; }
  .site-footer__inner { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 24px 26px;
    border-bottom: 1px solid rgba(106,73,54,0.12);
    transform: translateY(-130%);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .site-nav.is-open { transform: translateY(0); opacity: 1; }
  .site-nav ul { flex-direction: column; align-items: flex-start; gap: 4px; width: 100%; }
  .site-nav ul li { width: 100%; }
  .site-nav a { display: block; padding: 12px 0; border-bottom: 1px solid rgba(106,73,54,0.08); }
  .site-nav__cta { margin-top: 14px; }
  .brand__tagline { display: none; }
  .hero { padding: 48px 0 56px; }
  .section { padding: 56px 0; }
  .project-panel { border-radius: 18px; }
}
