/* Dingwall Laser Clinic — static site stylesheet
   Palette: clinical-clean warm white + deep calm teal (single CTA colour).
   One button colour, one canonical story: calm, professional, local. */

:root {
  --teal: #0e6b63;
  --teal-dark: #0a524c;
  --teal-soft: #e4f0ee;
  --ink: #1f2d33;
  --muted: #5f6f76;
  --paper: #fbfaf7;
  --sand: #f2ede3;
  --card: #ffffff;
  --border: #e3ded3;
  --radius: 14px;
  --maxw: 1080px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
}

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ---------- Header ---------- */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 50;
}
.header-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 14px 20px;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.brand {
  font-size: 1.15rem; font-weight: 700; color: var(--ink);
  text-decoration: none; letter-spacing: -0.01em;
}
.brand span { color: var(--teal); }
.site-nav ul { list-style: none; display: flex; gap: 18px; flex-wrap: wrap; }
.site-nav a {
  color: var(--ink); text-decoration: none; font-weight: 500;
  padding: 4px 2px; border-bottom: 2px solid transparent;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--teal); border-bottom-color: var(--teal); }
.header-cta { margin-left: auto; }

/* ---------- Buttons (ONE colour: teal) ---------- */
.btn {
  display: inline-block; background: var(--teal); color: #fff;
  text-decoration: none; font-weight: 600; padding: 12px 22px;
  border-radius: 999px; border: none; cursor: pointer;
  font-size: 1rem; line-height: 1.2; transition: background 0.15s ease;
}
.btn:hover { background: var(--teal-dark); }
.btn-block { display: block; text-align: center; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, var(--teal-soft) 0%, var(--paper) 100%);
  padding: 64px 0 40px;
}
.hero h1 { font-size: 2.4rem; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 12px; }
.hero p.lede { font-size: 1.2rem; color: var(--muted); margin-bottom: 22px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-phone { color: var(--ink); font-weight: 600; text-decoration: none; }
.hero-phone:hover { color: var(--teal); }

/* ---------- Sections ---------- */
.section { padding: 48px 0; }
.section-alt { background: var(--sand); }
.section h2 { font-size: 1.7rem; letter-spacing: -0.01em; margin-bottom: 8px; }
.section .sub { color: var(--muted); margin-bottom: 26px; max-width: 720px; }

/* Treatment strip (pill links) */
.strip { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; padding: 6px 0; }
.strip a {
  background: var(--card); border: 1px solid var(--border); color: var(--ink);
  text-decoration: none; padding: 8px 16px; border-radius: 999px; font-size: 0.95rem;
}
.strip a:hover { border-color: var(--teal); color: var(--teal); }

/* Treatment cards */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 18px; }
.card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  text-decoration: none; color: var(--ink); transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(31, 45, 51, 0.10); }
.card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: var(--sand); }
.card-body { padding: 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card h3 { font-size: 1.1rem; }
.card p { color: var(--muted); font-size: 0.95rem; flex: 1; }
.card .price { color: var(--teal); font-weight: 700; font-size: 0.95rem; }

/* Promo banner */
.promo {
  background: var(--teal); color: #fff; border-radius: var(--radius);
  padding: 22px 26px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.promo h3 { font-size: 1.25rem; }
.promo p { opacity: 0.92; }
.promo a.btn { background: #fff; color: var(--teal); }
.promo a.btn:hover { background: var(--teal-soft); }

/* Testimonials */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.quote {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; display: flex; flex-direction: column; gap: 10px;
}
.quote blockquote { font-size: 1rem; font-style: normal; }
.quote cite { color: var(--muted); font-style: normal; font-size: 0.9rem; }

/* Info row (hours / location) */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.info-box { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.info-box h3 { font-size: 1.05rem; margin-bottom: 10px; }
.info-box ul { list-style: none; }
.info-box li { padding: 3px 0; color: var(--ink); }
.info-box .muted { color: var(--muted); }

/* ---------- Treatment page ---------- */
.treat-hero { padding: 48px 0 28px; }
.treat-hero .crumb { color: var(--muted); font-size: 0.9rem; margin-bottom: 10px; }
.treat-hero .crumb a { color: var(--muted); }
.treat-hero .crumb a:hover { color: var(--teal); }
.treat-hero h1 { font-size: 2.2rem; letter-spacing: -0.02em; margin-bottom: 6px; }
.treat-hero .tag { color: var(--teal); font-weight: 600; margin-bottom: 18px; }
.treat-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 32px; align-items: start; }
.treat-grid img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius);
  background: var(--sand); display: block;
}
.treat-body p { margin-bottom: 14px; }
.treat-body h2 { font-size: 1.25rem; margin: 22px 0 8px; }
.treat-body h3 { font-size: 1.05rem; margin: 18px 0 6px; color: var(--teal-dark); }
.treat-body ul, .treat-body ol { margin: 0 0 14px 22px; }
.price-box {
  background: var(--teal-soft); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; margin: 18px 0;
}
.price-box h2 { margin: 0 0 8px; font-size: 1.1rem; color: var(--teal-dark); }
.price-box .price { font-size: 1.5rem; font-weight: 800; color: var(--teal-dark); }
.price-box .note { color: var(--muted); font-size: 0.95rem; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin: 22px 0; }
.trust-line { color: var(--muted); font-size: 0.95rem; border-top: 1px solid var(--border); padding-top: 14px; }

/* More treatments strip (footer of each treatment page) */
.more { border-top: 1px solid var(--border); padding: 26px 0 40px; }
.more h2 { font-size: 1.05rem; margin-bottom: 12px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form label { font-weight: 600; font-size: 0.95rem; }
.contact-form input, .contact-form textarea {
  font: inherit; padding: 12px 14px; border: 1px solid var(--border);
  border-radius: 10px; background: var(--card); color: var(--ink); width: 100%;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: 2px solid var(--teal); outline-offset: 1px; border-color: var(--teal);
}
.form-note { color: var(--muted); font-size: 0.9rem; }
.policy-note { background: var(--sand); border-radius: var(--radius); padding: 16px; font-size: 0.95rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #dbe4e6; margin-top: 48px; }
.footer-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 40px 20px 24px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 28px;
}
.site-footer h3 { color: #fff; font-size: 1rem; margin-bottom: 12px; }
.site-footer ul { list-style: none; }
.site-footer li { padding: 3px 0; }
.site-footer a { color: #dbe4e6; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15); text-align: center;
  padding: 16px 20px; font-size: 0.85rem; color: #9fb0b5;
}
.footer-bottom p { margin: 2px 0; }
.footer-bottom .footer-credit { margin-top: 6px; color: #7d9198; font-size: 0.8rem; }
.footer-bottom .footer-credit a { color: #a9c6cc; text-decoration: none; }
.footer-bottom .footer-credit a:hover { color: #fff; text-decoration: underline; }

/* ---------- 404 ---------- */
.notfound { text-align: center; padding: 90px 20px; }
.notfound h1 { font-size: 2.4rem; margin-bottom: 10px; }
.notfound p { color: var(--muted); margin-bottom: 22px; }

/* ---------- Small screens ---------- */
@media (max-width: 760px) {
  .treat-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding: 40px 0 28px; }
  .hero h1 { font-size: 1.9rem; }
  .header-cta { margin-left: 0; }
}
