/* ============================================================
   SHUTTERS OF SYDNEY — styles.css
   Production stylesheet — all Phase 1 pages
   ============================================================ */

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #1a1a18;
  background: #f5f2ed;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font: inherit; }
p { max-width: 68ch; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.2;
  color: #1a1a18;
  font-weight: normal;
}
h1 { font-size: clamp(1.65rem, 4.5vw, 2.6rem); }
h2 { font-size: clamp(1.25rem, 2.8vw, 1.9rem); }
h3 { font-size: clamp(0.97rem, 1.8vw, 1.15rem); }

/* ── Layout ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2rem);
}
.section      { padding: clamp(2.5rem, 6vw, 5rem) 0; }
.section--dark  { background: #1a1a18; color: #f5f2ed; }
.section--dark h2,
.section--dark h3 { color: #f5f2ed; }
.section--dark p  { color: #c0bdb6; }
.section--mid   { background: #242420; }
.section--tint  { background: #eeebe4; }

.label {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #d4862a;
  display: block;
  margin-bottom: 0.4rem;
}
.divider {
  width: 2.5rem;
  height: 2px;
  background: #d4862a;
  margin: 0.75rem 0 1.25rem;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.8rem 1.5rem;
  border-radius: 3px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
  text-align: center;
}
.btn--primary         { background: #d4862a; color: #fff; border-color: #d4862a; }
.btn--primary:hover   { background: #b87020; border-color: #b87020; }
.btn--outline         { background: transparent; color: #1a1a18; border-color: #1a1a18; }
.btn--outline:hover   { background: #1a1a18; color: #f5f2ed; }
.btn--outline-light         { background: transparent; color: #f5f2ed; border-color: #f5f2ed; }
.btn--outline-light:hover   { background: #f5f2ed; color: #1a1a18; }
.btn--white           { background: #fff; color: #1a1a18; border-color: #fff; }
.btn--white:hover     { background: #f5f2ed; }
.btn--full { width: 100%; justify-content: center; }
.btn-group { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 1rem; }

.icon-ph { width: 14px; height: 14px; flex-shrink: 0; }

/* Mobile: hide duplicate callback btn in hero (form has one already) */
.hero-callback-btn { display: none; }
@media (min-width: 900px) { .hero-callback-btn { display: inline-flex; } }

/* ── Header ───────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #1a1a18;
  border-bottom: 1px solid #2a2a26;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 54px;
}
.logo {
  font-family: Georgia, serif;
  font-size: 1.05rem;
  color: #f5f2ed;
  flex-shrink: 0;
}
.logo span { color: #d4862a; }
.header-right { display: flex; align-items: center; gap: 0.65rem; }
.header-phone {
  color: #f5f2ed; font-weight: 600; font-size: 0.85rem;
  display: flex; align-items: center; gap: 0.3rem;
}
.nav-toggle {
  background: none; border: none; color: #f5f2ed;
  cursor: pointer; padding: 4px; display: flex; align-items: center;
}

/* Nav drawer — mobile */
.site-nav {
  position: fixed; inset: 54px 0 0 0;
  background: #1a1a18;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  overflow-y: auto; z-index: 99;
  padding: 1.5rem clamp(1rem, 5vw, 2rem);
}
.site-nav.is-open { transform: translateX(0); }
.site-nav ul { display: flex; flex-direction: column; }
.site-nav a {
  display: block; color: #f5f2ed;
  padding: 0.8rem 0; border-bottom: 1px solid #2a2a26;
  font-weight: 500; font-size: 0.95rem;
}
.site-nav a:hover { color: #d4862a; }
.nav-cta-mob {
  display: flex; flex-direction: column; gap: 0.65rem;
  margin-top: 1.4rem; padding-top: 1.4rem;
  border-top: 1px solid #2a2a26;
}
.hdr-btn-desk { display: none; }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .site-nav {
    position: static; transform: none; background: none;
    padding: 0; overflow: visible; inset: auto;
  }
  .site-nav ul { flex-direction: row; }
  .site-nav a {
    border: none; padding: 0.35rem 0.75rem;
    font-size: 0.84rem; color: #c0bdb6;
  }
  .nav-cta-mob { display: none; }
  .hdr-btn-desk { display: inline-flex; }
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  background: #1a1a18; color: #f5f2ed;
  padding: clamp(1.1rem, 3vw, 3.5rem) 0 0;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 70% at 100% 0%, rgba(212,134,42,0.09) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 0% 100%, rgba(212,134,42,0.05) 0%, transparent 50%);
}
.hero-inner { position: relative; display: flex; flex-direction: column; }
.hero-content { display: flex; flex-direction: column; }
.hero h1 { color: #f5f2ed; }
.hero h1 em { font-style: italic; color: #d4862a; }

/* Mobile inline form: order 1 — directly after H1 */
.hero-form-mob {
  order: 1;
  background: #f5f2ed; color: #1a1a18;
  border-radius: 3px; padding: 1.1rem;
  margin-top: 1rem;
  box-shadow: 0 6px 24px rgba(0,0,0,0.28);
}
.hero-form-mob h3 { font-size: 0.95rem; margin-bottom: 0.7rem; color: #1a1a18; }
.hero-btns  { order: 2; }
.hero-trust {
  order: 3;
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 0.35rem 0.65rem;
  margin-top: 0.65rem;
  font-size: 0.72rem; color: #9a9890;
}
.hero-trust .dot {
  width: 3px; height: 3px; background: #d4862a; border-radius: 50%;
}
.hero-sub     { display: none; }
.hero-form-desk { display: none; }

/* Two-col field rows in mobile form */
.frow2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
@media (max-width: 479px) { .frow2 { grid-template-columns: 1fr; } }

/* Hero full-width image */
.hero-img {
  margin-top: clamp(1rem, 3vw, 2rem);
  width: 100%; height: clamp(155px, 36vw, 380px);
  background: #252520;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0.85; display: block;
}
.hero-img::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 45%; pointer-events: none;
  background: linear-gradient(to bottom, transparent, #1a1a18);
}

@media (min-width: 900px) {
  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 350px;
    align-items: start; gap: 3.5rem;
    flex-direction: unset;
  }
  .hero-btns  { order: unset; }
  .hero-trust { order: unset; margin-top: 1.25rem; font-size: 0.78rem; gap: 0.4rem 0.9rem; }
  .hero-sub {
    display: block; margin-top: 1rem;
    font-size: 1rem; color: #c0bdb6; max-width: 50ch;
  }
  .hero-form-desk {
    display: block;
    background: #f5f2ed; color: #1a1a18;
    border-radius: 3px; padding: 1.6rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.28);
    position: sticky; top: 70px;
  }
  .hero-form-desk h3 { font-size: 1rem; margin-bottom: 1rem; color: #1a1a18; }
  .hero-form-mob { display: none; }
  .hero-img { grid-column: 1 / -1; height: clamp(230px, 24vw, 350px); }
}

/* ── Form fields ──────────────────────────────────────────── */
.ff { margin-bottom: 0.5rem; }
.ff label {
  display: block; font-size: 0.67rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: #6b6b65; margin-bottom: 0.22rem;
}
.ff input,
.ff select,
.ff textarea {
  width: 100%; padding: 0.52rem 0.8rem;
  border: 1.5px solid #d8d4cc; border-radius: 3px;
  background: #fff; color: #1a1a18; font-size: 0.87rem;
  transition: border-color 0.15s;
  appearance: none; -webkit-appearance: none;
}
.ff input:focus,
.ff select:focus,
.ff textarea:focus { outline: none; border-color: #d4862a; }
.ff select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6b65' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.8rem center;
  padding-right: 2.2rem;
}
.ff textarea { min-height: 90px; resize: vertical; }
.fnote { font-size: 0.7rem; color: #6b6b65; margin-top: 0.4rem; }
.honeypot { display: none !important; visibility: hidden; }

/* ── Service page hero ────────────────────────────────────── */
.page-hero {
  background: #1a1a18; color: #f5f2ed;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 70% at 100% 0%, rgba(212,134,42,0.09) 0%, transparent 55%);
}
.page-hero .inner { position: relative; max-width: 680px; }
.page-hero h1 { color: #f5f2ed; }
.page-hero h1 em { font-style: italic; color: #d4862a; }
.page-hero .sub {
  margin-top: 1rem; font-size: 1.05rem;
  color: #c0bdb6; max-width: 52ch;
}
.page-hero .btn-group { margin-top: 1.5rem; }
.page-hero .trust {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 0.4rem 0.9rem;
  margin-top: 1.25rem;
  font-size: 0.78rem; color: #9a9890;
}
.page-hero .trust .dot {
  width: 3px; height: 3px; background: #d4862a; border-radius: 50%;
}

/* ── Fault list ───────────────────────────────────────────── */
.fault-list {
  margin-top: 1.5rem;
  border: 1px solid #d8d4cc; border-radius: 3px; overflow: hidden;
}
.fault-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 0.9rem 1.2rem;
  background: #f5f2ed;
  border-bottom: 1px solid #d8d4cc;
}
.fault-item:last-child { border-bottom: none; }
.fdot {
  width: 7px; height: 7px; background: #d4862a;
  border-radius: 50%; flex-shrink: 0; margin-top: 0.55rem;
}
.fault-item strong { display: block; font-size: 0.93rem; }
.fault-item span   { font-size: 0.84rem; color: #6b6b65; }

/* ── How it works steps ───────────────────────────────────── */
.steps-grid { display: grid; gap: 1.5rem; margin-top: 1.75rem; }
@media (min-width: 700px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
.step { display: flex; gap: 1rem; align-items: flex-start; }
@media (min-width: 700px) { .step { flex-direction: column; } }
.step-num {
  width: 2rem; height: 2rem; background: #d4862a; color: #fff;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-weight: 700; font-size: 0.85rem;
  flex-shrink: 0;
}
.step-body h3 { margin-bottom: 0.3rem; }
.step-body p  { font-size: 0.88rem; color: #6b6b65; }

/* ── Systems grid (homepage) ──────────────────────────────── */
.sys-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 0.9rem; margin-top: 1.75rem;
}
@media (min-width: 600px) { .sys-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .sys-grid { grid-template-columns: repeat(3, 1fr); } }
.sc {
  background: #242420; border-radius: 3px;
  padding: 1.5rem; border-left: 3px solid #d4862a;
  transition: border-color 0.15s;
}
.sc:hover { border-left-color: #f0a040; }
.sc h3 { color: #f5f2ed; font-size: 0.97rem; margin-bottom: 0.5rem; }
.sc p  { color: #9a9890; font-size: 0.84rem; margin-bottom: 0.9rem; max-width: 100%; }
.sc a  {
  color: #d4862a; font-size: 0.83rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: 0.35rem;
  transition: gap 0.15s;
}
.sc a:hover { gap: 0.6rem; }
.arr { width: 14px; height: 14px; flex-shrink: 0; }

/* ── What We Do tiles ─────────────────────────────────────── */
.tiles4 {
  display: grid; grid-template-columns: 1fr;
  gap: 1px; background: #d8d4cc;
  border: 1px solid #d8d4cc; border-radius: 3px;
  overflow: hidden; margin-top: 1.75rem;
}
@media (min-width: 560px) { .tiles4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .tiles4 { grid-template-columns: repeat(4, 1fr); } }
.tile { background: #f5f2ed; padding: 1.4rem 1.3rem; }
.tile h3 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.tile p  { font-size: 0.84rem; color: #6b6b65; max-width: 30ch; }
.tile-ico {
  width: 1.9rem; height: 1.9rem; background: #d4862a;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin-bottom: 0.8rem; color: #fff;
}

/* ── Why Us ───────────────────────────────────────────────── */
.why-grid { display: grid; gap: 1.5rem; margin-top: 1.75rem; }
@media (min-width: 700px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
.wi { display: flex; gap: 1rem; align-items: flex-start; }
.wn {
  font-family: Georgia, serif; font-size: 1.9rem;
  color: #d4862a; line-height: 1; opacity: 0.38;
  flex-shrink: 0; width: 2rem; text-align: right;
}
.wb h3 { margin-bottom: 0.3rem; }
.wb p  { font-size: 0.87rem; color: #6b6b65; }

/* ── Brands ───────────────────────────────────────────────── */
.brands { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1.2rem; }
.bp {
  background: #2e2e2a; color: #c0bdb6;
  border: 1px solid #3a3a36; border-radius: 2rem;
  padding: 0.27rem 0.9rem; font-size: 0.78rem; font-weight: 500;
}

/* ── Gallery ──────────────────────────────────────────────── */
.gal { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; margin-top: 1.5rem; }
.gs {
  aspect-ratio: 4/3; background: #252520; border-radius: 3px;
  overflow: hidden; position: relative;
}
.gs img { width: 100%; height: 100%; object-fit: cover; }

/* ── Trust bar ────────────────────────────────────────────── */
.trust-bar { display: flex; flex-wrap: wrap; gap: 1.75rem; margin-top: 1.5rem; }
.ts strong {
  display: block; font-family: Georgia, serif;
  font-size: 1.85rem; color: #d4862a; line-height: 1.1;
}
.ts span { font-size: 0.79rem; color: #9a9890; }

/* ── Area pills ───────────────────────────────────────────── */
.apills { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1.2rem; }
.ap {
  background: #2e2e2a; border: 1px solid #3a3a36;
  border-radius: 2rem; padding: 0.26rem 0.85rem;
  font-size: 0.78rem; color: #9a9890;
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list { margin-top: 1.5rem; border-top: 1px solid #d0cdc6; }
.faq-item { border-bottom: 1px solid #d0cdc6; }
.faq-q {
  display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
  padding: 1rem 0; cursor: pointer; font-weight: 600;
  font-size: 0.92rem; background: none; border: none;
  width: 100%; text-align: left; color: #1a1a18;
  transition: color 0.15s;
}
.faq-q:hover { color: #d4862a; }
.faq-ico {
  width: 22px; height: 22px; border: 1.5px solid #9a9890;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
  font-size: 1.1rem; font-weight: 300; color: #9a9890; line-height: 1;
  transition: background 0.18s, border-color 0.18s, transform 0.2s, color 0.18s;
}
.faq-item.is-open .faq-ico {
  transform: rotate(45deg); background: #d4862a;
  border-color: #d4862a; color: #fff;
}
.faq-a {
  display: none; padding: 0 0 1.1rem;
  font-size: 0.88rem; color: #6b6b65; max-width: 64ch;
}
.faq-item.is-open .faq-a { display: block; }

/* ── Internal link list (service pages) ───────────────────── */
.link-list { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1.25rem; }
.link-list a {
  color: #d4862a; font-size: 0.9rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: 0.35rem;
  transition: gap 0.15s;
}
.link-list a:hover { gap: 0.6rem; }

/* ── Final CTA ────────────────────────────────────────────── */
.cta-sec { background: #d4862a; padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
.cta-in  { display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 700px) {
  .cta-in { flex-direction: row; align-items: center; justify-content: space-between; }
}
.cta-sec h2 { color: #fff; max-width: 22ch; }
.cta-sec p  { color: rgba(255,255,255,0.85); margin-top: 0.5rem; }
.cta-btns   { display: flex; flex-wrap: wrap; gap: 0.65rem; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer { background: #111110; color: #7a7a74; padding: clamp(2.5rem, 5vw, 4rem) 0 1.5rem; }
.ft-grid { display: grid; gap: 2.25rem; }
@media (min-width: 700px) { .ft-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.ft-logo {
  font-family: Georgia, serif; font-size: 1.05rem;
  color: #f5f2ed; display: block; margin-bottom: 0.55rem;
}
.ft-logo span { color: #d4862a; }
.ft-brand p  { font-size: 0.82rem; max-width: 28ch; }
.soc { display: flex; gap: 0.75rem; margin-top: 0.8rem; }
.soc a { font-size: 0.8rem; color: #7a7a74; transition: color 0.15s; }
.soc a:hover { color: #d4862a; }
.ft-col h4 {
  font-family: -apple-system, system-ui, sans-serif;
  font-size: 0.69rem; font-weight: 700; letter-spacing: 0.11em;
  text-transform: uppercase; color: #9a9890; margin-bottom: 0.75rem;
}
.ft-col ul { display: flex; flex-direction: column; gap: 0.38rem; }
.ft-col a  { font-size: 0.82rem; color: #7a7a74; transition: color 0.15s; }
.ft-col a:hover { color: #d4862a; }
.ft-con p  { font-size: 0.82rem; margin-bottom: 0.28rem; }
.ft-con a  { color: #c0bdb6; transition: color 0.15s; }
.ft-con a:hover { color: #d4862a; }
.ft-bot {
  margin-top: 2rem; padding-top: 1rem;
  border-top: 1px solid #1e1e1c;
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: 0.5rem; font-size: 0.73rem;
}

/* ── Contact page ─────────────────────────────────────────── */
.contact-grid { display: grid; gap: 3rem; margin-top: 2rem; }
@media (min-width: 800px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-detail {
  display: flex; gap: 0.75rem; align-items: center; margin-bottom: 0.85rem;
}
.contact-detail svg { color: #d4862a; flex-shrink: 0; }
.contact-detail a  { color: #1a1a18; font-weight: 500; }
.contact-detail a:hover { color: #d4862a; }

/* ── About page ───────────────────────────────────────────── */
.about-grid { display: grid; gap: 3rem; margin-top: 2rem; }
@media (min-width: 800px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 1.5rem; }
.about-stat {
  padding: 1.1rem 1.3rem;
  border-left: 3px solid #d4862a;
}
.about-stat strong {
  display: block; font-family: Georgia, serif;
  font-size: 1.9rem; color: #1a1a18; line-height: 1.1;
}
.about-stat span { font-size: 0.82rem; color: #6b6b65; }

/* ── Utility ──────────────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
