/* =========================================================
   CLEAR — clean, modern, minimal.
   White, generous space, one strong accent, no serifs.

   TO CHANGE THE LOOK, EDIT THE VALUES BELOW.
   ========================================================= */

:root {
  /* Colours */
  --ink:        #14171a;   /* main text */
  --ink-soft:   #566068;   /* less important text */
  --paper:      #ffffff;   /* page background */
  --paper-alt:  #f4f6f7;   /* alternating section background */
  --deep:       #14171a;   /* footer */
  --deep-text:  #e8ecee;   /* text on dark */
  --accent:     #1d6f63;   /* deep teal — buttons and links */
  --accent-dark:#175a50;   /* teal, darker, for hover */
  --line:       #dfe4e7;   /* borders */

  /* Type */
  --font-head: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Spacing */
  --gap: 1.25rem;
  --section-space: 5.5rem;
  --radius: 8px;
}

/* ---------- base ---------- */

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.1rem, 5.5vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); }
h3 { font-size: 1.1rem; }

p { margin: 0 0 1rem; }

a { color: var(--accent); }

.link { text-decoration: underline; text-underline-offset: 3px; }
.link:hover { color: var(--accent-dark); }

.muted { color: var(--ink-soft); font-size: 0.9rem; }
.center { text-align: center; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.skip {
  position: absolute;
  left: -9999px;
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
}
.skip:focus { left: 1rem; top: 1rem; z-index: 100; }

.wrap {
  width: min(1120px, 90%);
  margin-inline: auto;
}
.wrap.narrow { width: min(700px, 90%); }

/* ---------- header ---------- */

.site-header {
  background: var(--paper);
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--gap);
  justify-content: space-between;
}

.brand { text-decoration: none; color: var(--ink); display: block; }
.brand-name {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.brand-sub {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.site-header nav { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.site-header nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}
.site-header nav a:hover { color: var(--accent); }

.header-phone {
  color: #fff;
  background: var(--accent);
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  font-size: 0.95rem;
}
.header-phone:hover { background: var(--accent-dark); }

/* ---------- hero ---------- */

.hero {
  background: var(--paper);
  padding: clamp(3.5rem, 10vw, 7rem) 0;
  text-align: center;
}
.hero h1 { max-width: 20ch; margin-inline: auto; }
.lede {
  font-size: 1.2rem;
  max-width: 55ch;
  margin-inline: auto;
  color: var(--ink-soft);
}
.hero-note {
  margin-top: 2rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-dark); }
.btn-secondary {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- sections ---------- */

.section { padding: var(--section-space) 0; }
.section-alt { background: var(--paper-alt); }

.section h2 { text-align: center; margin-bottom: 2.5rem; }
.section.section-alt .wrap.narrow h2,
.wrap.narrow h2 { text-align: left; }

.grid {
  display: grid;
  gap: var(--gap);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  #services .grid { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
}
.card h3 { color: var(--ink); }
.card p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; }

.quote {
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
}
.quote p { color: var(--ink); }
.quote cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.faq dt {
  font-weight: 700;
  margin-top: 1.6rem;
  font-size: 1.05rem;
}
.faq dd { margin: 0.35rem 0 0; color: var(--ink-soft); }

/* ---------- form ---------- */

.form { margin-top: 1.75rem; }

.field { margin-bottom: 1.1rem; }

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}
.optional { font-weight: 400; color: var(--ink-soft); }

input, textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  font: inherit;
  font-size: 1rem;
  border: 1px solid #c4ccd1;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
}
input:hover, textarea:hover { border-color: #9aa5ab; }
textarea { resize: vertical; }

.form-note {
  margin-top: 1.1rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* ---------- footer ---------- */

.site-footer {
  background: var(--deep);
  color: #9aa5ab;
  padding: 3rem 0;
  margin-top: var(--section-space);
  font-size: 0.95rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  justify-content: space-between;
}
.site-footer p { margin: 0 0 0.35rem; }
.footer-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--deep-text);
}
.site-footer .link { color: #7fc8ba; }

/* =========================================================
   ADDITIONS
   ========================================================= */

/* ---------- piano-key motif (decorative) ----------
   A thin abstract keyboard strip. Delete the .keys div in
   index.html to remove it. */
.keys {
  height: 6px;
  background:
    repeating-linear-gradient(90deg,
      var(--ink) 0 2px,
      transparent 2px 18px);
  background-color: var(--accent);
}

/* ---------- trust strip ---------- */
.trust {
  background: var(--paper-alt);
  border-bottom: 1px solid var(--line);
  padding: 1.15rem 0;
}
.trust-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 3rem;
  justify-content: center;
  text-align: center;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.trust-item strong { color: var(--ink); font-weight: 700; }

/* ---------- sticky call bar (phones only) ---------- */
.callbar { display: none; }

@media (max-width: 720px) {
  .callbar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 50;
    box-shadow: 0 -2px 12px rgba(20,23,26,0.16);
  }
  .callbar a {
    padding: 0.95rem 0.5rem;
    text-align: center;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
  }
  .callbar-call { background: var(--accent); color: #fff; }
  .callbar-book { background: var(--ink); color: var(--deep-text); }
  body { padding-bottom: 3.5rem; }
  /* The sticky header plus a sticky bar is too much on a small screen. */
  .site-header { position: static; }
}

/* ---------- scroll reveal ----------
   Sections are visible by default. The animation only applies
   when JavaScript has run AND the visitor has not asked for
   reduced motion. */
.js-reveal .reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.js-reveal .reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .js-reveal .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- work gallery ---------- */
.gallery {
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(2, 1fr);
  margin-top: 1.5rem;
}
@media (min-width: 860px) { .gallery { grid-template-columns: repeat(4, 1fr); } }

.shot { margin: 0; }
.shot-ph {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--ink-soft);
  font-size: 0.85rem;
  background: var(--paper-alt);
}
/* When a real photo replaces the placeholder, this keeps it tidy. */
.shot img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.shot figcaption {
  margin-top: 0.6rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
