/* site.css */
:root{
  --bg: #FFFFFF;
  --ink: #0F1A1A;
  --muted: #4B5B5B;

  /* “modern salon” palette */
  --ivory: #FBF6EF;       /* warm, clean section */
  --teal: #0E2B2B;        /* primary accent */
  --teal-2: #143A3A;
  --shadow: 0 10px 30px rgba(15, 26, 26, 0.08);

  --radius-lg: 26px;
  --container: 1100px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  position: relative;
  z-index: 0;
}

body::before{
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("assets/logo.png");
  background-repeat: no-repeat;
  background-position: center 90px;
  background-size: min(85vmin, 720px);
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
}

body > *{
  position: relative;
  z-index: 1;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; text-underline-offset: 4px; }

.container{
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

/* accessibility */
.skip-link{
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--teal);
  color: #fff;
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 9999;
}
.skip-link:focus{ left: 12px; }

/* header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-container{
  background: rgba(207, 239, 240, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(14, 43, 43, 0.10);
}

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

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}
.brand-name{
  font-weight: 650;
  letter-spacing: 0.2px;
}
.brand-sub{
  font-size: 13px;
  color: var(--muted);
  margin-top: -2px;
}

.nav{
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav a{
  font-size: 14px;
  color: rgba(15,26,26,.85);
}
.nav a:hover{ color: var(--ink); }

/* buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform .06s ease, background .12s ease, border-color .12s ease;
}
.btn:active{ transform: translateY(1px); }

.btn-primary{
  background: var(--teal);
  color: #fff;
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 12px 28px rgba(14,43,43,.18);
}
.btn-primary:hover{ background: var(--teal-2); }

.btn-ghost{
  background: rgba(255,255,255,0.62);
  border-color: rgba(14,43,43,0.14);
}
.btn-ghost:hover{ background: rgba(255,255,255,0.85); }

/* mobile nav */
.nav-toggle{
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(14,43,43,0.14);
  background: rgba(255,255,255,0.65);
  cursor: pointer;
}
.nav-toggle span{
  display: block;
  height: 2px;
  width: 18px;
  margin: 4px auto;
  background: rgba(15,26,26,.75);
  border-radius: 3px;
}

.nav-drawer{
  display: none;
  border-top: 1px solid rgba(14,43,43,0.10);
  border-bottom: 1px solid rgba(14, 43, 43, 0.10);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.nav-drawer.open{ display: block; }
.nav-drawer-inner{
  display: grid;
  gap: 12px;
  padding: 14px 0 18px;
}
.nav-drawer a{
  padding: 10px 12px;
  border-radius: 14px;
  background: transparent;
  border: 1px solid transparent;
}

/* sections */
.section{
  padding: 72px 0;
}
.section-tint{
  background: linear-gradient(180deg, rgba(207,239,240,.38), rgba(255,255,255,0));
}
.section-ivory{
  background: var(--ivory);
  border-top: 1px solid rgba(14,43,43,0.08);
  border-bottom: 1px solid rgba(14,43,43,0.08);
}

.section-head{
  margin-bottom: 26px;
}
.section-head h2{
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.3px;
}
.section-head p{
  margin: 0;
  color: var(--muted);
  max-width: 62ch;
}

/* hero */
.hero{
  padding: 74px 0 46px;
  background:
    radial-gradient(1200px 540px at 10% 0%, rgba(207,239,240,.55), rgba(255,255,255,0) 60%),
    radial-gradient(900px 420px at 90% 10%, rgba(176,138,74,.18), rgba(255,255,255,0) 56%);
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  align-items: start;
}
.hero h1{
  margin: 0 0 14px;
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.8px;
}
.lead{
  margin: 0 0 18px;
  color: rgba(15,26,26,.80);
  font-size: 18px;
  max-width: 62ch;
}

/* cards */
.card{
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(14,43,43,0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.hero-card .card{
  padding: 22px;
}
.card-title{
  margin: 0 0 12px;
  font-size: 18px;
}
.checklist{
  margin: 0;
  padding-left: 18px;
  color: rgba(15,26,26,.84);
}
.divider{
  height: 1px;
  background: rgba(14,43,43,0.10);
  margin: 16px 0;
}
.fine{
  margin: 0;
  font-size: 12.5px;
  color: rgba(15,26,26,.62);
}

.cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service.card{
  padding: 22px;
}
.service h3{
  margin: 0 0 6px;
  font-size: 18px;
  letter-spacing: -0.2px;
}
.meta{
  margin: 0 0 12px;
  color: rgba(15,26,26,.62);
  font-size: 13px;
}
.service p{
  margin: 0 0 12px;
  color: rgba(15,26,26,.80);
}
.text-link{
  color: var(--teal);
  font-weight: 650;
}

/* steps */
.steps{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.step.card{
  padding: 20px;
}
.step-num{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(176,138,74,.18);
  border: 1px solid rgba(176,138,74,.30);
  color: rgba(15,26,26,.88);
  font-weight: 700;
  margin-bottom: 10px;
}

/* about */
.about-grid{
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 16px;
  align-items: start;
}
.about-card.card{ padding: 22px; }
.about-card p{ color: rgba(15,26,26,.82); }
.bullets{
  margin: 14px 0 0;
  padding-left: 18px;
  color: rgba(15,26,26,.78);
}
.about-side{
  display: grid;
  gap: 16px;
}
.quote.card, .mini.card{
  padding: 22px;
}
.quote-text{
  margin: 0 0 12px;
  font-size: 16px;
  color: rgba(15,26,26,.86);
}
.quote-meta{
  margin: 0;
  font-size: 13px;
  color: rgba(15,26,26,.62);
}

/* form */
.form.card{
  padding: 22px;
}
.form-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
label span{
  display: block;
  font-size: 13px;
  color: rgba(15,26,26,.70);
  margin: 0 0 6px;
}
input, textarea{
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(14,43,43,0.16);
  border-radius: 14px;
  padding: 12px 12px;
  outline: none;
}
textarea{ resize: vertical; }
input:focus, textarea:focus{
  border-color: rgba(176,138,74,.55);
  box-shadow: 0 0 0 4px rgba(176,138,74,.14);
}
.full{ grid-column: 1 / -1; }

.form-actions{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  flex-wrap: wrap;
}

/* footer */
.site-footer{
  padding: 26px 0;
  border-top: 1px solid rgba(14,43,43,0.10);
  background: rgba(207,239,240,0.35);
}
.footer-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-brand{
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo{
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.footer-name{ font-weight: 650; }
.footer-sub{ color: rgba(15,26,26,.62); font-size: 13px; }

.footer-meta{
  color: rgba(15,26,26,.62);
  font-size: 13px;
}

/* responsive */
@media (max-width: 880px){
  .nav{ display: none; }
  .nav-toggle{ display: inline-block; }
  .nav-drawer{
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 60;
  }

  .hero-grid{
    grid-template-columns: 1fr;
  }
  .cards, .steps{
    grid-template-columns: 1fr;
  }
  .about-grid{
    grid-template-columns: 1fr;
  }
  .form-grid{
    grid-template-columns: 1fr;
  }
}
