/* ==========================================================================
   Notary Stamp Scarborough — hand-coded rebuild of notarystampscarborough.ca
   Design system: Playfair Display / Open Sans, gold & navy palette
   ========================================================================== */

:root {
  --gold: #C0B596;
  --gold-light: #D4C291;
  --gold-dark: #ADA282;
  --gold-text: #7E6D3F; /* WCAG AA on white/#F1F1F1 for small text */
  --navy: #282E3F;
  --dark: #151A30;
  --light: #F1F1F1;
  --text: #666666;
  --white: #FFFFFF;
  --border: #DDDDDD;
  --font-head: "Playfair Display", serif;
  --font-head-sc: "Playfair Display SC", serif;
  --font-body: "Open Sans", sans-serif;
  --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.25;
  margin: 0 0 .5em;
  font-weight: 700;
}

p { margin: 0 0 1em; }

a { color: var(--gold-text); text-decoration: none; transition: color .25s; }
a:hover { color: var(--navy); }
p a, li a:not([class]) { text-decoration: underline; text-underline-offset: 2px; }
.main-nav a, .site-footer ul a, .side-box a, .info-list a, .cta-info a, .breadcrumb a { text-decoration: none; }

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

.skip-link {
  position: absolute;
  left: -9999px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .5px;
  padding: 14px 34px;
  border-radius: 50px;
  border: 2px solid var(--gold);
  background: var(--gold);
  color: var(--dark);
  cursor: pointer;
  transition: all .3s;
  text-transform: uppercase;
}
.btn:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }

.btn-outline { background: transparent; color: var(--navy); }
.btn-outline:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

.btn-sm { padding: 9px 22px; font-size: 13px; }

.btn svg { width: 16px; height: 16px; fill: currentColor; flex: none; }

/* ---------- Top bar (mobile contacts) ---------- */
.topbar {
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  padding: 6px 0;
  display: none;
}
.topbar .container { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.topbar a { color: var(--white); display: inline-flex; align-items: center; gap: 6px; }
.topbar svg { width: 13px; height: 13px; fill: var(--gold-light); }

/* ---------- Header ---------- */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(21, 26, 48, .08);
  position: sticky;
  top: 0;
  z-index: 900;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 92px;
}
.brand { display: flex; align-items: center; gap: 10px; flex: none; }
.brand img.logo { width: auto; height: 58px; }
.brand img.stamp { width: 64px; height: 64px; }

.main-nav { flex: 1; display: flex; justify-content: center; }
.main-nav > ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  padding: 34px 13px;
  white-space: nowrap;
}
.main-nav a:hover, .main-nav li.active > a { color: var(--gold-dark); }

.main-nav li { position: relative; }
.main-nav li.has-sub > a::after {
  content: "";
  display: inline-block;
  margin-left: 7px;
  width: 7px; height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
}
.main-nav .sub {
  list-style: none;
  margin: 0; padding: 10px 0;
  position: absolute;
  top: 100%; left: 0;
  min-width: 300px;
  background: var(--white);
  box-shadow: 0 14px 40px rgba(21, 26, 48, .16);
  border-top: 3px solid var(--gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all .25s;
  z-index: 950;
}
.main-nav li:hover > .sub { opacity: 1; visibility: visible; transform: translateY(0); }
.main-nav .sub a {
  padding: 9px 24px;
  font-weight: 400;
  font-size: 14.5px;
  color: var(--navy);
}
.main-nav .sub a:hover { color: var(--gold-dark); padding-left: 30px; }

.header-cta { flex: none; }
.header-cta .btn { border-color: var(--gold); color: var(--navy); background: transparent; padding: 10px 24px; font-size: 15px; text-transform: none; }
.header-cta .btn:hover { background: var(--gold); color: var(--white); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  margin-left: auto;
}
.nav-toggle span { width: 26px; height: 3px; background: var(--navy); border-radius: 2px; transition: all .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(21,26,48,.72), rgba(21,26,48,.55));
}
.hero .container { position: relative; z-index: 1; max-width: 900px; }
.hero .kicker {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.hero h1 {
  color: var(--white);
  font-size: 56px;
  margin: 0 0 26px;
}
.hero .pricing {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2em;
  color: var(--white);
  margin-bottom: 34px;
}
.hero .pricing span { color: var(--gold-light); padding: 0 6px; }

/* ---------- Feature strip ---------- */
.features {
  background: var(--light);
  padding: 50px 0;
}
.features .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-box {
  background: var(--navy);
  padding: 38px 30px;
  text-align: center;
  border-bottom: 4px solid var(--gold);
  transition: transform .3s;
}
.feature-box:hover { transform: translateY(-6px); }
.feature-box img { width: 64px; height: 64px; margin: 0 auto 18px; }
.feature-box h2, .feature-box h3 { color: var(--white); font-size: 24px; margin: 0; }

/* ---------- Sections ---------- */
.section { padding: 90px 0; }
.section.gray { background: var(--light); }
.section.dark { background: var(--dark); }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-head .eyebrow,
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 10px;
}
.section-head h2, .split h2 { font-size: 42px; margin-bottom: 18px; }
.divider {
  width: 70px; height: 3px;
  background: var(--gold);
  margin: 0 auto 22px;
  border: 0;
}
.divider.left { margin: 0 0 22px; }

/* ---------- Split (image + text) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split .img-wrap { position: relative; }
.split .img-wrap img {
  border-radius: 6px;
  box-shadow: 0 24px 60px rgba(21,26,48,.18);
  width: 100%;
  object-fit: cover;
}
.split .img-wrap::after {
  content: "";
  position: absolute;
  top: 22px; left: 22px; right: -22px; bottom: -22px;
  border: 2px solid var(--gold);
  border-radius: 6px;
  z-index: -1;
}

/* ---------- Service cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-bottom: 3px solid var(--gold);
  padding: 40px 32px 34px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: all .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 22px 44px rgba(21,26,48,.12); }
.card h3 { font-size: 23px; margin-bottom: 12px; }
.card p { font-size: 15px; flex: 1; }
.card .btn { margin: 18px auto 0; }
.cards.cards-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Counters ---------- */
.counters {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 84px 0;
}
.counters::before { content: ""; position: absolute; inset: 0; background: rgba(21,26,48,.85); }
.counters .container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.counter .num {
  font-family: var(--font-head);
  font-size: 54px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.counter .num sup { font-size: 30px; }
.counter h2 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 14px;
}

/* ---------- Guidelines ---------- */
.guides-list { list-style: none; margin: 0; padding: 0; }
.guides-list li {
  padding: 16px 0 16px 44px;
  position: relative;
  border-bottom: 1px dashed var(--border);
}
.guides-list li:last-child { border-bottom: 0; }
.guides-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 22px;
  width: 22px; height: 22px;
  background: var(--gold);
  border-radius: 50%;
  mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M6.2 12.6 1.8 8.2l1.4-1.4 3 3 6.6-6.6 1.4 1.4z"/></svg>') center / 14px no-repeat;
  -webkit-mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M6.2 12.6 1.8 8.2l1.4-1.4 3 3 6.6-6.6 1.4 1.4z"/></svg>') center / 14px no-repeat;
  background-color: var(--gold);
}
.guides-list strong { color: var(--navy); display: block; font-size: 16.5px; }

/* ---------- Testimonials ---------- */
.rating-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin-bottom: 40px;
}
.rating-badge img { width: 46px; height: 46px; }
.rating-badge .score { font-size: 30px; font-weight: 700; color: var(--navy); font-family: var(--font-head); }
.rating-badge .stars { color: #f6bb06; font-size: 20px; letter-spacing: 2px; }
.rating-badge small { display: block; color: var(--text); font-size: 13px; }

.t-slider { position: relative; overflow: hidden; padding: 10px 0 4px; }
.t-track { display: flex; align-items: stretch; transition: transform .5s ease; }
.t-slide { flex: 0 0 33.3333%; padding: 0 12px; display: flex; }
.t-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: 10px;
  padding: 26px 26px 22px;
  width: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 26px rgba(21,26,48,.06);
  transition: transform .3s, box-shadow .3s;
}
.t-card:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(21,26,48,.12); }
.t-card::after {
  content: "”";
  position: absolute;
  top: 4px; right: 20px;
  font-family: var(--font-head);
  font-size: 74px;
  line-height: 1;
  color: var(--gold);
  opacity: .35;
  pointer-events: none;
}
.t-card .stars { color: #f6bb06; font-size: 16px; letter-spacing: 3px; margin-bottom: 12px; }
.t-card p {
  font-size: 14.5px;
  flex: 1;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.t-card .who {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid #efefef;
  margin-top: auto;
}
.t-card .who .avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 17px;
  flex: none;
}
.t-card .who strong { color: var(--navy); font-size: 15px; display: block; line-height: 1.3; }
.t-card .who small { color: #6f6f6f; font-size: 12px; }

.t-nav { display: flex; justify-content: center; gap: 12px; margin-top: 34px; }
.t-nav button {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--navy);
  font-size: 18px;
  cursor: pointer;
  transition: all .3s;
}
.t-nav button:hover { background: var(--gold); color: var(--white); }

/* ---------- CTA prefooter ---------- */
.cta {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 90px 0;
  text-align: center;
}
.cta::before { content: ""; position: absolute; inset: 0; background: rgba(21,26,48,.88); }
.cta .container { position: relative; }
.cta h2 { color: var(--white); font-size: 42px; margin-bottom: 34px; }
.cta-info {
  list-style: none;
  margin: 0 auto; padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 44px;
  max-width: 980px;
}
.cta-info li { display: flex; align-items: center; gap: 10px; color: #e8e8e8; font-size: 15.5px; }
.cta-info a { color: #e8e8e8; }
.cta-info a:hover { color: var(--gold-light); }
.cta-info svg { width: 17px; height: 17px; fill: var(--gold-light); flex: none; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 300px;
  display: flex;
  align-items: center;
  text-align: center;
}
.page-hero::before { content: ""; position: absolute; inset: 0; background: rgba(21,26,48,.72); }
.page-hero .container { position: relative; }
.page-hero h1 { color: var(--white); font-size: 48px; margin: 0; }
.breadcrumb {
  list-style: none;
  margin: 14px 0 0; padding: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.breadcrumb a { color: #cfcfcf; }
.breadcrumb a:hover { color: var(--gold-light); }

/* ---------- Service layout ---------- */
.service-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.service-main > img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 36px;
}
.service-main h2 { font-size: 36px; }
.fee {
  font-family: var(--font-body);
  color: var(--gold-dark);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 22px;
}
.why-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  margin-top: 44px;
}
.why-row img { border-radius: 6px; width: 100%; object-fit: cover; }
.why-row h3 { font-size: 26px; }
.check-list { list-style: none; margin: 0; padding: 0; }
.check-list li {
  padding: 8px 0 8px 34px;
  position: relative;
  color: var(--text);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 13px;
  width: 20px; height: 20px;
  background-color: var(--gold);
  mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M6.2 12.6 1.8 8.2l1.4-1.4 3 3 6.6-6.6 1.4 1.4z"/></svg>') center / 13px no-repeat;
  -webkit-mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M6.2 12.6 1.8 8.2l1.4-1.4 3 3 6.6-6.6 1.4 1.4z"/></svg>') center / 13px no-repeat;
  border-radius: 50%;
}

/* Fee box */
.fee-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: var(--light);
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  padding: 22px 28px;
  margin: 6px 0 26px;
}
.fee-box-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.fee-box-price {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.area-line { font-size: 14.5px; color: #8a8a8a; font-style: italic; }

/* Steps */
.steps { margin-top: 54px; }
.steps-title, .bring-box h3, .mini-reviews h3, .faq > h3 {
  font-size: 28px;
  padding-bottom: 12px;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--gold);
  display: block;
}
.steps-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: 6px;
  padding: 26px 22px;
}
.step-num {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}
.step h4 { font-size: 19px; margin-bottom: 8px; }
.step p { font-size: 14px; margin: 0; }

/* What to bring */
.bring-box {
  margin-top: 54px;
  background: var(--navy);
  border-radius: 6px;
  padding: 34px 36px;
}
.bring-box h3 { color: var(--white); border-color: var(--gold); }
.bring-box .check-list li { color: #d5d8e2; }
.bring-box .check-list strong { color: var(--white); }
.check-list.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 0 30px; }
.bring-note { color: var(--gold-light); font-size: 14px; margin: 18px 0 0; }

/* Mini reviews on service pages */
.mini-reviews { margin-top: 54px; }
.mini-reviews-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}
.mini-reviews-head h3 { flex: 1; min-width: 240px; }
.mini-reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.mini-reviews-link img { width: 22px; height: 22px; }
.mini-reviews-link:hover { color: var(--gold-dark); }
.mini-reviews-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* Fees table */
.fees { margin-top: 54px; }
.fees h3 { font-size: 28px; padding-bottom: 12px; margin-bottom: 24px; border-bottom: 2px solid var(--gold); }
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: 6px; }
.fees-table { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 480px; }
.fees-table th {
  background: var(--navy);
  color: var(--white);
  text-align: left;
  padding: 13px 18px;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: .5px;
}
.fees-table td { padding: 12px 18px; border-top: 1px solid #ececec; color: var(--text); }
.fees-table tbody tr:nth-child(even) { background: #fafafa; }
.fees-table tr.current { background: #f5f1e6; }
.fees-table tr.current td:first-child { border-left: 3px solid var(--gold); }
.fees-table td a { color: var(--navy); font-weight: 600; text-decoration: none; }
.fees-table td a:hover { color: var(--gold-text); }
.fees-note { font-size: 13.5px; color: #8a8a8a; margin: 12px 0 0; }

/* Official resources */
.resources { margin-top: 44px; background: var(--light); border-left: 4px solid var(--gold); border-radius: 6px; padding: 24px 28px; }
.resources h3 { font-size: 20px; border: 0; padding: 0; margin-bottom: 10px; }
.resources ul { list-style: none; margin: 0; padding: 0; }
.resources li { padding: 4px 0; }
.resources a { text-decoration: underline; text-underline-offset: 2px; }

/* FAQ */
.faq { margin-top: 54px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 6px;
  margin-bottom: 12px;
  background: var(--white);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 17px 52px 17px 22px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  position: relative;
  transition: color .25s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px; top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 400;
  color: var(--gold-dark);
  transition: transform .25s;
}
.faq-item[open] summary { color: var(--gold-dark); }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { padding: 0 22px 18px; margin: 0; font-size: 15px; }

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 30px; position: sticky; top: 116px; }
.side-cta {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  overflow: hidden;
  text-align: center;
  padding: 52px 30px;
}
.side-cta::before { content: ""; position: absolute; inset: 0; background: rgba(21,26,48,.85); }
.side-cta h3 { position: relative; color: var(--white); font-size: 26px; margin-bottom: 24px; }
.side-cta .btn { position: relative; }

.side-box {
  background: var(--light);
  border-radius: 6px;
  padding: 32px 28px;
}
.side-box h4 {
  font-size: 22px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gold);
  margin-bottom: 8px;
}
.side-box ul { list-style: none; margin: 0; padding: 0; }
.side-box li { border-bottom: 1px solid #e2e2e2; }
.side-box li:last-child { border-bottom: 0; }
.side-box a {
  display: block;
  padding: 11px 2px 11px 22px;
  color: var(--text);
  font-size: 14.5px;
  position: relative;
  transition: all .25s;
}
.side-box a::before {
  content: "";
  position: absolute;
  left: 2px; top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  width: 7px; height: 7px;
  border-right: 2px solid var(--gold-dark);
  border-bottom: 2px solid var(--gold-dark);
}
.side-box a:hover { color: var(--gold-dark); padding-left: 28px; }
.side-box li.current a { color: var(--gold-dark); font-weight: 700; }

/* ---------- Booking page ---------- */
.booking-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 34px;
  align-items: start;
  max-width: 1060px;
  margin: 0 auto;
}
.booking-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: 10px;
  padding: 32px 30px;
  box-shadow: 0 10px 26px rgba(21,26,48,.06);
  position: relative;
}
.booking-card h3 { font-size: 21px; display: flex; align-items: center; gap: 10px; }
.booking-card h3 small { font-family: var(--font-body); font-weight: 400; font-size: 12.5px; color: #8a8a8a; }
.bstep {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 14px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  flex: none;
}
.booking select, .bfields input, .bfields textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--navy);
  background: var(--white);
}
.booking select:focus, .bfields input:focus, .bfields textarea:focus { outline: none; border-color: var(--gold); }
.bfields { display: flex; flex-direction: column; gap: 12px; }

.cal { border: 1px solid var(--border); border-radius: 8px; padding: 14px; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.cal-title { font-family: var(--font-head); color: var(--navy); font-size: 17px; }
.cal-nav {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy);
  font-size: 17px;
  cursor: pointer;
}
.cal-nav:hover:not(:disabled) { background: var(--gold); border-color: var(--gold); color: var(--white); }
.cal-nav:disabled { opacity: .3; cursor: default; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal .dow { text-align: center; font-size: 11.5px; font-weight: 700; color: #9a9a9a; text-transform: uppercase; padding: 4px 0; }
.cal .day {
  aspect-ratio: 1;
  border: 1px solid transparent;
  border-radius: 6px;
  background: none;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--navy);
  cursor: pointer;
}
.cal .day:hover:not(:disabled) { background: #f5f1e6; }
.cal .day:disabled { color: #c9c9c9; cursor: default; }
.cal .day.sel { background: var(--navy); color: var(--gold-light); font-weight: 700; }

.slots { display: flex; flex-wrap: wrap; gap: 8px; }
.slots-empty { color: #8a8a8a; font-size: 14px; margin: 0; }
.slot {
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 50px;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
}
.slot:hover { border-color: var(--gold); }
.slot.sel { background: var(--gold); border-color: var(--gold); color: var(--dark); }

.booking-summary {
  background: #f5f1e6;
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 14.5px;
  color: var(--navy);
  font-weight: 600;
  margin: 16px 0;
}
.booking .btn:disabled { opacity: .45; cursor: default; }
.booking .form-note { color: #8a8a8a; font-size: 12.5px; margin-top: 12px; }

.booking-done {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: 10px;
  padding: 54px 40px;
  box-shadow: 0 10px 26px rgba(21,26,48,.06);
}
.booking-done h3 { font-size: 30px; }

/* ---------- City landing pages ---------- */
.city-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 24px 0 26px;
}
.ct-item {
  flex: 1 1 120px;
  background: var(--light);
  border-radius: 8px;
  border-bottom: 3px solid var(--gold);
  padding: 16px 18px;
  text-align: center;
}
.ct-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 24px;
  color: var(--navy);
  line-height: 1.1;
}
.ct-item span { font-size: 12.5px; color: var(--text); }
.city-cta { display: flex; flex-wrap: wrap; gap: 12px; }

.directions-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  align-items: stretch;
}
.directions-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: 10px;
  padding: 30px 30px 34px;
  box-shadow: 0 10px 26px rgba(21,26,48,.06);
}
.dir-row {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 15px 0;
  border-bottom: 1px dashed #e4e4e4;
}
.dir-row:first-child { padding-top: 0; }
.dir-row svg { width: 26px; height: 26px; fill: var(--gold-dark); flex: none; margin-top: 2px; }
.dir-row strong {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 3px;
}
.dir-row div { color: var(--navy); font-size: 15px; line-height: 1.45; }
.directions-card .btn { margin-top: 22px; width: 100%; justify-content: center; }
.directions-map { border-radius: 10px; overflow: hidden; box-shadow: 0 10px 26px rgba(21,26,48,.08); min-height: 340px; }
.directions-map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

.services-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 960px;
  margin: 0 auto;
}
.svc-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 15px 18px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--navy);
  transition: all .25s;
}
.svc-chip i { color: var(--gold-dark); font-style: normal; font-size: 18px; transition: transform .25s; }
.svc-chip:hover { border-color: var(--gold); box-shadow: 0 8px 20px rgba(21,26,48,.08); color: var(--gold-text); }
.svc-chip:hover i { transform: translateX(4px); }

.neigh-chips { display: flex; flex-wrap: wrap; gap: 9px; margin: 6px 0 26px; }
.neigh-chips span {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
}
.why-inline h3 { font-size: 22px; margin-bottom: 12px; }

.nearby {
  margin-top: 44px;
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}
.nearby h3 { font-size: 24px; margin-bottom: 18px; }
.nearby-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.nearby-chips a {
  background: var(--light);
  border: 1px solid transparent;
  border-radius: 50px;
  padding: 9px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: all .25s;
}
.nearby-chips a:hover { background: var(--gold); color: var(--dark); }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 44px;
  align-items: start;
}
.contact-card {
  background: var(--light);
  border-radius: 6px;
  padding: 44px 40px;
}
.contact-card h2 { font-size: 30px; }
.info-list { list-style: none; margin: 26px 0 0; padding: 0; }
.info-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 13px 0;
  border-bottom: 1px dashed #d8d8d8;
  color: var(--text);
  font-size: 15.5px;
}
.info-list li:last-child { border-bottom: 0; }
.info-list svg { width: 20px; height: 20px; fill: var(--gold-dark); flex: none; margin-top: 4px; }
.info-list a { color: var(--text); }
.info-list a:hover { color: var(--gold-dark); }

.contact-form-card {
  background: var(--navy);
  border-radius: 6px;
  padding: 44px 40px;
}
.contact-form-card h2 { color: var(--white); font-size: 30px; margin-bottom: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 4px;
  background: rgba(255,255,255,.07);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
}
.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder { color: #b9bdc9; }
.contact-form-card input:focus,
.contact-form-card textarea:focus { outline: none; border-color: var(--gold); }
.contact-form-card .btn { margin-top: 18px; }
.form-note { color: #aeb3c0; font-size: 12.5px; margin: 12px 0 0; }

.map-wrap { margin-top: 70px; }
.map-wrap iframe {
  width: 100%;
  height: 440px;
  border: 0;
  border-radius: 6px;
  display: block;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark);
  color: #c9cbd4;
  font-size: 14.5px;
}
.footer-top {
  padding: 74px 0 50px;
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 1.1fr 1.25fr;
  gap: 44px;
}
.footer-top h2 {
  color: var(--gold-light);
  font-size: 21px;
  margin-bottom: 20px;
}
.footer-brand img { width: 240px; margin-bottom: 20px; }
.footer-brand p { color: #c9cbd4; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer ul li { padding: 5px 0; }
.site-footer ul a { color: #c9cbd4; }
.site-footer ul a:hover { color: var(--gold-light); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 15px; height: 15px; fill: var(--gold-light); flex: none; margin-top: 6px; }

.footer-rating {
  margin-top: 22px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 280px;
}
.footer-rating img { width: 38px; height: 38px; margin: 0; }
.footer-rating .stars { color: #f6bb06; letter-spacing: 2px; font-size: 15px; }
.footer-rating strong { color: var(--white); }
.footer-rating small { display: block; color: #adb3c2; font-size: 12px; }

.footer-areas {
  margin-top: 18px;
  font-size: 13px;
  color: #adb3c2;
}
.footer-rating small a { color: #adb3c2; }
.footer-rating small a:hover { color: var(--gold-light); }
.side-hours .info-list li { border-color: #e2e2e2; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 22px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: #adb3c2;
}
.footer-bottom a { color: var(--gold-light); }

/* ---------- Floating book button ---------- */
.book-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 990;
  box-shadow: 0 12px 30px rgba(21,26,48,.35);
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .main-nav a { padding: 34px 8px; font-size: 14px; }
  .hero h1 { font-size: 44px; }
}

@media (max-width: 1024px) {
  .topbar { display: block; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .header-inner { min-height: 76px; }
  .brand img.logo { height: 46px; }
  .brand img.stamp { width: 48px; height: 48px; }

  .main-nav {
    position: fixed;
    top: 0; left: 0; bottom: 0;
    width: min(340px, 86vw);
    background: var(--white);
    box-shadow: 20px 0 60px rgba(21,26,48,.2);
    transform: translateX(-105%);
    transition: transform .35s;
    z-index: 980;
    overflow-y: auto;
    padding: 80px 0 40px;
    display: block;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav a { padding: 13px 28px; border-bottom: 1px solid #eee; }
  .main-nav .sub {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none;
    border-top: 0;
    background: var(--light);
    display: none;
    min-width: 0;
    padding: 0;
  }
  .main-nav li.sub-open > .sub { display: block; }
  .main-nav li.has-sub > a::after { float: right; margin-top: 9px; }

  .features .container { grid-template-columns: 1fr; }
  .cards, .cards.cards-4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 44px; }
  .counters .container { grid-template-columns: repeat(2, 1fr); gap: 44px 20px; }
  .t-slide { flex-basis: 50%; }
  .service-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .mini-reviews-row { grid-template-columns: repeat(2, 1fr); }
  .directions-grid { grid-template-columns: 1fr; }
  .services-mini { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .booking-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .hero { min-height: 78vh; }
  .hero h1 { font-size: 33px; }
  .hero .kicker { font-size: 14px; }
  .hero .pricing { font-size: 16px; }
  .section-head h2, .split h2, .cta h2 { font-size: 30px; }
  .page-hero h1 { font-size: 32px; }
  .cards, .cards.cards-4 { grid-template-columns: 1fr; }
  .counters .container { grid-template-columns: 1fr 1fr; }
  .counter .num { font-size: 40px; }
  .t-slide { flex-basis: 100%; }
  .why-row { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; }
  .mini-reviews-row { grid-template-columns: 1fr; }
  .check-list.two-col { grid-template-columns: 1fr; }
  .fee-box { padding: 18px 20px; }
  .fee-box-price { font-size: 20px; }
  .bring-box { padding: 26px 22px; }
  .steps-title, .bring-box h3, .mini-reviews h3, .faq > h3 { font-size: 23px; }
  .service-main h2 { font-size: 28px; }
  .services-mini { grid-template-columns: 1fr; }
  .city-cta { flex-direction: column; }
  .city-cta .btn { width: 100%; justify-content: center; }
  .footer-top { grid-template-columns: 1fr; padding: 54px 0 30px; }
  .footer-bottom .container { justify-content: center; text-align: center; }
  .book-float { right: 14px; bottom: 14px; }
}
