/* Stewart McGowan Luxury Bathrooms — brand: charcoal/silver, Trajan(→Cinzel)/Montserrat */
:root {
  --charcoal: #1a1a1a;
  --dark-grey: #333333;
  --silver: #c0c0c0;
  --light-grey: #a6a6a6;
  --off-white: #f5f5f5;
  --ink-deep: #111111;
  --whatsapp: #1fa855;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--charcoal);
  color: var(--off-white);
  line-height: 1.7;
  font-weight: 300;
  letter-spacing: 0.02em;
}
h1, h2, h3, .serif {
  font-family: 'Cinzel', 'Trajan Pro', Georgia, serif;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
a { color: inherit; }
img { display: block; max-width: 100%; }

/* ---------- Header ---------- */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(17,17,17,0.96);
  border-bottom: 1px solid #2c2c2c;
  backdrop-filter: blur(6px);
}
.nav-wrap {
  max-width: 1160px; margin: 0 auto; padding: 14px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.brand img.mark { height: 46px; width: auto; }
.brand .words { display: flex; flex-direction: column; }
.brand .name {
  font-family: 'Cinzel', serif; font-size: 17px; letter-spacing: 0.18em;
  color: var(--off-white); text-transform: uppercase;
}
.brand .tag {
  font-size: 9.5px; letter-spacing: 0.42em; color: var(--light-grey);
  text-transform: uppercase; margin-top: 2px;
}
nav.main { display: flex; gap: 26px; align-items: center; }
nav.main a {
  text-decoration: none; font-size: 12px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--silver); padding: 6px 0;
  border-bottom: 1px solid transparent; transition: color .2s, border-color .2s;
}
nav.main a:hover, nav.main a.active { color: #fff; border-bottom-color: var(--silver); }
nav.main a.cta {
  border: 1px solid var(--silver); padding: 9px 18px; color: #fff;
}
nav.main a.cta:hover { background: var(--silver); color: var(--charcoal); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 86vh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  overflow: hidden;
}
.hero .bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.42) saturate(0.9);
}
.hero .veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(17,17,17,.55), rgba(26,26,26,.25) 45%, var(--charcoal) 98%); }
.hero .inner { position: relative; z-index: 2; padding: 90px 24px; max-width: 860px; }
.hero-logo { width: min(340px, 72vw); margin: 0 auto 30px; }
.hero h1 {
  font-size: clamp(30px, 5vw, 54px); color: #fff; line-height: 1.25;
  text-shadow: 0 2px 24px rgba(0,0,0,.6);
}
.hero .strap {
  margin-top: 18px; font-size: clamp(12px, 1.6vw, 15px);
  letter-spacing: 0.38em; text-transform: uppercase; color: var(--silver);
}
.hero .sub { margin-top: 22px; font-size: 16.5px; color: #e4e4e4; font-weight: 300; }
.btn-row { margin-top: 38px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 15px 30px; border: 1px solid var(--silver); color: #fff;
  transition: background .2s, color .2s; font-weight: 400;
}
.btn:hover { background: var(--off-white); color: var(--charcoal); }
.btn.solid { background: var(--off-white); color: var(--charcoal); }
.btn.solid:hover { background: transparent; color: #fff; }
.btn.wa { border-color: var(--whatsapp); background: var(--whatsapp); color: #fff; }
.btn.wa:hover { background: transparent; color: var(--whatsapp); }

/* ---------- Sections ---------- */
section.block { max-width: 1160px; margin: 0 auto; padding: 84px 22px; }
.kicker {
  font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--light-grey); margin-bottom: 14px; font-weight: 400;
}
h2.title { font-size: clamp(22px, 3vw, 32px); color: #fff; margin-bottom: 18px; }
.rule { width: 64px; height: 1px; background: var(--silver); margin: 22px 0 30px; }
.center { text-align: center; }
.center .rule { margin-left: auto; margin-right: auto; }
p.lead { max-width: 700px; color: #d6d6d6; font-size: 16px; }
.center p.lead { margin: 0 auto; }

/* trust bar */
.trust {
  border-top: 1px solid #2c2c2c; border-bottom: 1px solid #2c2c2c;
  background: var(--ink-deep);
}
.trust-wrap {
  max-width: 1160px; margin: 0 auto; padding: 26px 22px;
  display: flex; justify-content: center; gap: 8px 54px; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 12px; font-size: 12.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--silver); }
.trust-item .dot { width: 5px; height: 5px; background: var(--silver); transform: rotate(45deg); }

/* services */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 26px; margin-top: 10px; }
.svc {
  border: 1px solid #2e2e2e; padding: 34px 28px; background: #1e1e1e;
  transition: border-color .25s, transform .25s;
}
.svc:hover { border-color: var(--silver); transform: translateY(-3px); }
.svc h3 { font-size: 15px; color: #fff; margin-bottom: 12px; }
.svc p { font-size: 14px; color: #c9c9c9; }

/* gallery */
.gal-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; margin-top: 8px; }
.gal-item { position: relative; overflow: hidden; cursor: pointer; border: 1px solid #2b2b2b; background: #101010; }
.gal-item img { width: 100%; height: 340px; object-fit: cover; transition: transform .45s ease, opacity .3s; }
.gal-item:hover img { transform: scale(1.045); }
.gal-item .cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 30px 18px 14px; font-size: 11.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: #ececec; background: linear-gradient(180deg, transparent, rgba(10,10,10,.88));
}
/* lightbox */
.lb {
  position: fixed; inset: 0; background: rgba(8,8,8,.94); z-index: 100;
  display: none; align-items: center; justify-content: center; flex-direction: column; padding: 30px;
}
.lb.open { display: flex; }
.lb img { max-height: 82vh; max-width: 92vw; object-fit: contain; border: 1px solid #333; }
.lb .lb-cap { margin-top: 14px; font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--silver); }
.lb .x {
  position: absolute; top: 18px; right: 26px; font-size: 34px; color: var(--silver);
  background: none; border: none; cursor: pointer; line-height: 1;
}
.lb .arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: none; border: 1px solid #444; color: var(--silver);
  font-size: 22px; padding: 10px 16px; cursor: pointer;
}
.lb .arrow:hover { border-color: var(--silver); }
.lb .prev { left: 22px; } .lb .next { right: 22px; }

/* testimonials */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
.quote { border: 1px solid #2e2e2e; background: #1e1e1e; padding: 34px 30px; }
.quote .stars { color: var(--silver); letter-spacing: 6px; font-size: 14px; }
.quote p.words { margin: 18px 0 20px; font-size: 15px; color: #e2e2e2; font-style: italic; }
.quote .who { font-size: 11.5px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--light-grey); }

/* CTA band */
.band {
  background: var(--ink-deep); border-top: 1px solid #2c2c2c; border-bottom: 1px solid #2c2c2c;
  text-align: center; padding: 74px 22px;
}
.band h2 { font-size: clamp(20px, 2.6vw, 28px); color: #fff; }
.band p { color: var(--light-grey); margin-top: 12px; }

/* ---------- Enquiry form ---------- */
form.enquiry { max-width: 680px; margin: 0 auto; }
.field { margin-bottom: 26px; }
.field label {
  display: block; font-size: 11.5px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--silver); margin-bottom: 10px; font-weight: 400;
}
.field input[type=text], .field input[type=tel], .field select, .field textarea {
  width: 100%; background: #111; border: 1px solid #3a3a3a; color: var(--off-white);
  font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 300;
  padding: 14px 16px; outline: none; transition: border-color .2s;
  -webkit-appearance: none; appearance: none; border-radius: 0;
}
.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8'><path d='M1 1l5 5 5-5' stroke='%23c0c0c0' fill='none' stroke-width='1.5'/></svg>");
  background-repeat: no-repeat; background-position: right 16px center;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--silver); }
.field textarea { min-height: 120px; resize: vertical; }
.hint { font-size: 12.5px; color: #8f8f8f; margin-top: 8px; }
.form-actions { margin-top: 36px; display: flex; flex-direction: column; gap: 14px; align-items: stretch; }
.form-actions .btn { justify-content: center; }
.or { text-align: center; font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: #777; }

/* ---------- Footer ---------- */
footer.site {
  background: #101010; border-top: 1px solid #2c2c2c;
  padding: 60px 22px 40px; text-align: center;
}
footer img.f-logo { height: 96px; width: auto; margin: 0 auto; }
footer .f-contact { margin-top: 24px; font-size: 14px; color: #cfcfcf; }
footer .f-contact a { color: #fff; text-decoration: none; }
footer .f-links { margin-top: 18px; display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; }
footer .f-links a { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--silver); text-decoration: none; }
footer .f-links a:hover { color: #fff; }
footer .f-small { margin-top: 30px; font-size: 11.5px; color: #6e6e6e; }

/* floating WhatsApp */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--whatsapp); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 22px rgba(0,0,0,.5); text-decoration: none;
}
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

@media (max-width: 760px) {
  nav.main { gap: 14px; }
  nav.main a { font-size: 10.5px; letter-spacing: 0.14em; }
  .brand .name { font-size: 13px; }
  .brand .tag { letter-spacing: 0.3em; }
  .brand img.mark { height: 36px; }
  .hero-logo { width: min(240px, 64vw); }
  .hero { min-height: 72vh; }
  .gal-item img { height: 280px; }
}
