/* ========================= styles.css ========================= */
:root {
  --bg: #daedff;
  --text: #0f172a;
  --muted: #33353b;
  --border: #0b0d0f;
  --elev: rgba(15, 23, 42, 0.06);

  /* Brand update for Classy K9 Cuts */
  --brand: #36759e;
  --brand-ink: #ffffff;

  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 2px 10px var(--elev), 0 6px 24px var(--elev);

  --container: 1100px;
  --space-1: 6px;
  --space-2: 10px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 36px;
  --space-6: 56px;
  --space-7: 80px;

  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  --font-display: "DM Serif Display", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; border-radius: 10px; }
a { color: var(--brand); text-decoration: none; }
p { margin: 0 0 var(--space-3); color: var(--muted); }
h1, h2, h3 { margin: 0 0 var(--space-3); color: var(--text); line-height: 1.2; }
h1 { color: white; font-size: clamp(2rem, 4vw, 3rem); font-family: var(--font-display); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.2rem); font-family: var(--font-display); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

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

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; background: color-mix(in srgb, var(--bg), transparent 0%); border-bottom: 1px solid var(--border); backdrop-filter: blur(6px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: var(--space-3) 0; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; color: var(--text); }
.nav { display: flex; align-items: center; gap: var(--space-4); }
.nav a { color: var(--text); }
.nav a:hover { opacity: 0.8; }
.nav .btn-sm { padding: 8px 12px; font-size: 0.9rem; color: white;}
.brand-mark {
  height: 28px; /* adjust as needed */
  width: auto;
  display: block;
}
#privacyh1 {color: var(--text)}


.nav-toggle { display: none; background: transparent; border: 1px solid var(--border); padding: 8px 12px; border-radius: 10px; }
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; color: var(--text);}
  .nav { position: absolute; right: 1rem; top: 64px; background: var(--bg); box-shadow: var(--shadow); padding: 12px; border-radius: 12px; display: none; }
  .nav.open { display: grid; gap: 8px; }
}

/* Hero */
.hero { min-height: clamp(420px, 60vh, 640px); display: grid; place-items: center; background: linear-gradient(to bottom, rgba(0,0,0,.65), rgba(0,0,0,.55)), var(--hero-image, #ddd) center/cover no-repeat; color: white; }
.hero-inner { text-align: center; padding: var(--space-7) 0; }
.hero-title { margin-bottom: var(--space-3); }
.hero-subtitle { color: #e6e9f5; margin-bottom: var(--space-4); }
.hero-cta { display: inline-flex; gap: 10px; flex-wrap: wrap; }
.hero-note { margin-top: 10px; font-weight: 600; color: #fff; opacity: 0.9; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 18px; border-radius: 999px; border: 1px solid transparent; font-family: var(--font-sans); font-weight: 600; transition: transform .06s ease, background-color 0.2s ease, color 0.2s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--brand); color: #FFF; border-color: #000000; font-size: 0.9rem;}
.btn-primary:hover { background: var(--brand-ink); color: #111; }
.btn-ghost { background: transparent; border-color: #ffffff66; color: #fff; }
.btn-ghost:hover { background: #ffffff16; color: #fff; }
.btn-sm { padding: 8px 12px; font-size: 0.9rem; }

/* Sections */
.section { padding: var(--space-7) 0; }
.section-alt { background: color-mix(in srgb, var(--brand) 6%, var(--bg)); }
.section-header { text-align: center; margin-bottom: var(--space-6); }
.strip { border-block: 1px solid var(--border); background: color-mix(in srgb, var(--bg), var(--brand) 6%); }
.strip-inner { display: flex; gap: 16px; align-items: center; justify-content: space-between; padding: 18px 0; flex-wrap: wrap; }
.badges { display: flex; gap: 8px; flex-wrap: wrap; }
.badge { background: #00000008; border: 1px solid var(--border); padding: 6px 10px; border-radius: 999px; font-size: 0.9rem; }

/* Layout */
.grid { display: grid; gap: var(--space-4); grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1100px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .grid { grid-template-columns: 1fr; } }
.split { display: grid; gap: var(--space-4); grid-template-columns: 1.2fr .8fr; align-items: start; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

/* Cards & Lists */
.card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: var(--space-5); box-shadow: var(--shadow); }
.checklist, .bullets { margin: 0; padding-left: 1.2rem; color: var(--muted); }
.checklist li { margin-bottom: 8px; list-style: "✓ "; }
.bullets li { margin-bottom: 8px; list-style: disc; }
.timeline { margin: 0; padding-left: 1.2rem; }
.timeline li { margin-bottom: 10px; }
.quote p { color: var(--text); font-style: italic; }
.quote footer { color: var(--muted); margin-top: 8px; }

/* Pricing Tables */
/* .pricing-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  font-size: 0.95rem;
} */

.pricing-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate; /* <-- important change */
  border-spacing: 0;         /* remove extra gaps */
  border: 1px solid var(--border);
  border-radius: 15px;
  overflow: hidden;
  font-size: 0.95rem;
}

.pricing-table thead {
  background: var(--brand);
  color: var(--brand-ink);
}

.pricing-table th,
.pricing-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  word-wrap: break-word;
}

/* Remove border from the last row */
.pricing-table tr:last-child th,
.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table th:nth-child(1),
.pricing-table td:nth-child(1) {
  width: 38%;
}

.pricing-table th:nth-child(2),
.pricing-table td:nth-child(2) {
  width: 26%;
}

.pricing-table th:nth-child(3),
.pricing-table td:nth-child(3) {
  width: 36%;
}

.pricing-table th {
  font-weight: 600;
}

.pricing-table td:last-child,
.pricing-table th:last-child {
  text-align: right;
}

.pricing-table tbody tr:nth-child(even) {
  background-color: color-mix(in srgb, var(--bg), var(--brand) 4%);
}

.pricing-table tbody tr:hover {
  background-color: color-mix(in srgb, var(--brand) 0%, white);
}



/* @media (max-width: 600px) {
  .pricing-table thead {
    display: none;
  }
  .pricing-table,
  .pricing-table tbody,
  .pricing-table tr,
  .pricing-table td {
    display: block;
    width: 100%;
  }
  .pricing-table tr {
    margin-bottom: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
  }
  .pricing-table td {
    text-align: right;
    padding: 10px;
    position: relative;
  }
  .pricing-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 10px;
    font-weight: 600;
    text-align: left;
    color: var(--muted);
  }
} */

/* Gallery */
.gallery-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
  .gallery-grid {
    gap: 12px;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    gap: 10px;
  }
}

.gallery-grid img { cursor: zoom-in; }

.lightbox {
  position: fixed; inset: 0;
  display: none; align-items: center; justify-content: center;
  background: rgba(0,0,0,.8); padding: 16px; z-index: 1000;
}
.lightbox.open { display: flex; }

.lightbox img {
  max-width: min(92vw, 1200px);
  max-height: 85vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
}
.lightbox .close {
  position: absolute; top: 12px; right: 12px;
  border: 0; background: transparent; color: #fff;
  font-size: 32px; line-height: 1; cursor: pointer;
}

/* Contact quick cards */
.contact-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 20px; }
.contact-card h3 { margin-bottom: 6px; }
@media (max-width: 900px) { .contact-cards { grid-template-columns: 1fr; } }

/* Forms */
/* .form { max-width: 900px; margin-inline: auto; } */
.form { margin-inline: auto; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 16px; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
label { display: grid; gap: 6px; font-weight: 600; color: var(--text); }
input, textarea { width: 100%; padding: 12px 14px; font: inherit; color: var(--text); border: 1px solid var(--border); border-radius: var(--radius-sm); background: #ffffff; }
input:focus, textarea:focus { outline: 2px solid color-mix(in srgb, var(--brand) 50%, transparent); border-color: var(--brand); }
.form-actions { display: flex; align-items: center; gap: 14px; margin-top: 16px;}
.form-note { color: var(--muted); margin-top: var(--space-3)}

/* Footer */
.site-footer { border-top: 1px solid var(--border); padding: var(--space-4) 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.footer-nav { display: flex; gap: 14px; align-items: center; }
#copyright { margin-top: var(--space-3);}

/* A11y smalls */
.skip-link { position: absolute; left: -999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.skip-link:focus { position: static; width: auto; height: auto; padding: 8px; background: #000; color: #fff; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0; }

/* Motion reduction */
@media (prefers-reduced-motion: reduce) { * { transition: none !important; scroll-behavior: auto !important; } }