/* ============================================================
   Orleans Flooring Co. — Design System
   style.css
   ============================================================ */

/* ---- Google Fonts ----------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- Custom Properties ------------------------------------ */
:root {
  --ink:        #111111;
  --bg:         #f7f5f1;
  --gold:       #c9a96e;
  --gold-dark:  #a8844f;
  --dark:       #1a1a2e;
  --dark-mid:   #22223a;
  --text-mid:   #555555;
  --text-light: #888888;
  --white:      #ffffff;
  --border:     #e2ddd6;
  --radius:     8px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.14);
  --transition: 0.22s ease;
  --nav-h:      72px;
  --container:  1200px;
}

/* ---- CSS Reset -------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 600;
}

/* ---- Typography ------------------------------------------- */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
}

h4, h5, h6 {
  font-family: 'Inter', sans-serif;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.015em;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  font-weight: 600;
}

h4 {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

h5 {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

p {
  color: var(--text-mid);
  max-width: 68ch;
}

p.wide {
  max-width: 82ch;
}

p.full {
  max-width: none;
}

strong {
  font-weight: 600;
  color: var(--ink);
}

/* ---- Layout Utilities ------------------------------------- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.container--narrow {
  max-width: 780px;
  margin-inline: auto;
  padding-inline: 24px;
}

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

.text-center p { margin-inline: auto; }

/* ---- Section Padding -------------------------------------- */
.py-section {
  padding-block: 88px;
}

.py-section--sm {
  padding-block: 56px;
}

.py-section--lg {
  padding-block: 120px;
}

/* ---- Section Label (small caps above headings) ------------ */
.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-label--light {
  color: var(--gold);
  opacity: 0.85;
}

/* ---- Section Header block --------------------------------- */
.section-header {
  margin-bottom: 56px;
}

.section-header.text-center .section-label {
  display: block;
}

/* ---- Grid Utilities --------------------------------------- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* ---- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background-color: var(--gold);
  color: var(--ink);
  border: 2px solid var(--gold);
}

.btn-primary:hover {
  background-color: var(--gold-dark);
  border-color: var(--gold-dark);
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.35);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}

.btn-outline:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-outline--dark {
  color: var(--ink);
  border-color: var(--ink);
}

.btn-outline--dark:hover {
  background-color: var(--ink);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 2px solid transparent;
  padding: 14px 4px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.btn-ghost:hover {
  color: var(--gold-dark);
  transform: none;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1rem;
}

/* ---- Navigation ------------------------------------------- */
.site-nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--dark);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo img {
  height: 44px;
  width: auto;
  border-radius: 4px;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.nav-logo-tagline {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 8px 12px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background-color: rgba(255,255,255,0.08);
}

.nav-phone {
  font-weight: 600;
  color: var(--gold) !important;
  background: transparent !important;
}

.nav-phone:hover {
  color: var(--gold-dark) !important;
  background: transparent !important;
}

.nav-cta {
  margin-left: 8px;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 6px;
  transition: background var(--transition);
}

.nav-hamburger:hover {
  background: rgba(255,255,255,0.1);
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu drawer */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark);
  z-index: 999;
  flex-direction: column;
  padding: 32px 24px;
  overflow-y: auto;
  gap: 4px;
}

.nav-mobile.is-open {
  display: flex;
}

.nav-mobile a {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  font-weight: 500;
  padding: 14px 16px;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-mobile a:hover {
  background: rgba(255,255,255,0.07);
  color: var(--white);
}

.nav-mobile .nav-mobile-phone {
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 16px;
}

/* ---- Hero Section ----------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(17,17,17,0.65) 0%,
    rgba(17,17,17,0.55) 60%,
    rgba(17,17,17,0.72) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 48px 24px;
}

.hero-content .section-label {
  color: var(--gold);
  opacity: 1;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 22px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero-subhead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  max-width: 60ch;
  margin-inline: auto;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 20px;
}

.hero-link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color var(--transition);
}

.hero-link:hover {
  color: var(--gold);
}

/* ---- Trust / Dark Section --------------------------------- */
.trust-section {
  background-color: var(--dark);
  color: var(--white);
}

.trust-section h2,
.trust-section h3,
.trust-section h4 {
  color: var(--white);
}

.trust-section p {
  color: rgba(255,255,255,0.72);
  max-width: 72ch;
}

.trust-section .section-intro {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 52px;
}

.trust-section.text-center .section-intro {
  margin-inline: auto;
}

/* Trust Cards */
.trust-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: background var(--transition), border-color var(--transition);
}

.trust-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,169,110,0.3);
}

.trust-card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.trust-card h4 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.trust-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: none;
}

/* ---- Service Cards ---------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
  text-decoration: none;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.service-card-icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
  display: block;
}

.service-card h4 {
  color: var(--ink);
  margin-bottom: 8px;
  font-size: 0.98rem;
  line-height: 1.3;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.55;
  max-width: none;
}

.service-card-arrow {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
}

/* ---- Project Cards ---------------------------------------- */
.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.project-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.project-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.project-card-body {
  padding: 22px 20px;
}

.project-card h4 {
  color: var(--ink);
  margin-bottom: 6px;
}

.project-card p {
  font-size: 0.875rem;
  color: var(--text-mid);
  max-width: none;
}

/* ---- Area Cards ------------------------------------------- */
.area-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--ink);
  transition: border-color var(--transition), background var(--transition), color var(--transition);
  text-align: center;
}

.area-card:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

/* ---- Gallery Grid ----------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item--tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(17,17,17,0.75));
  padding: 20px 16px 14px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item-caption {
  opacity: 1;
}

/* Full gallery grid */
.gallery-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-full-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.gallery-full-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-full-item:hover img {
  transform: scale(1.03);
}

.gallery-full-caption {
  padding: 14px 16px;
}

.gallery-full-caption p {
  font-size: 0.85rem;
  color: var(--text-mid);
  max-width: none;
  margin: 0;
}

/* ---- Problems Grid ---------------------------------------- */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.problem-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  padding: 20px 16px;
  color: rgba(255,255,255,0.82);
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  transition: background var(--transition), border-color var(--transition);
}

.problem-item:hover {
  background: rgba(201,169,110,0.1);
  border-color: rgba(201,169,110,0.3);
}

.problem-item-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 10px;
}

/* ---- FAQ Accordion ---------------------------------------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 22px 28px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  transition: background var(--transition), color var(--transition);
}

.faq-question:hover {
  background: var(--bg);
}

.faq-question.is-open {
  color: var(--gold-dark);
  background: var(--bg);
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
  color: var(--text-mid);
  transition: border-color var(--transition), color var(--transition), transform var(--transition), background var(--transition);
}

.faq-question.is-open .faq-icon {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,169,110,0.1);
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 28px 24px;
  color: var(--text-mid);
  font-size: 0.93rem;
  line-height: 1.7;
  background: var(--bg);
}

.faq-answer.is-open {
  display: block;
}

.faq-answer p {
  max-width: none;
  color: var(--text-mid);
}

/* ---- Quote Form ------------------------------------------- */
.quote-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 52px 48px;
  box-shadow: var(--shadow-md);
  max-width: 900px;
  margin-inline: auto;
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.quote-form .form-full {
  grid-column: 1 / -1;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--ink);
  font-size: 0.93rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 24 24'%3E%3Cpath stroke='%23555' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.form-group input[type="file"] {
  padding: 10px 16px;
  cursor: pointer;
}

.form-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 4px;
}

.form-radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
}

.form-radio-label input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  cursor: pointer;
}

.form-submit-row {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.form-note {
  font-size: 0.82rem;
  color: var(--text-light);
  max-width: none;
}

/* ---- Step/Process Cards ----------------------------------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  position: relative;
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.step-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

.step-card h4 {
  margin-bottom: 10px;
  color: var(--ink);
}

.step-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  max-width: none;
}

/* ---- Equipment Section ------------------------------------ */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.equipment-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.equipment-card:hover {
  box-shadow: var(--shadow-md);
}

.equipment-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.equipment-card-body {
  padding: 22px 20px;
}

.equipment-card h4 {
  color: var(--ink);
  margin-bottom: 8px;
  font-size: 0.98rem;
}

.equipment-card p {
  font-size: 0.875rem;
  color: var(--text-mid);
  max-width: none;
}

/* ---- Focus Cards (About page) ----------------------------- */
.focus-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border-top: 3px solid var(--gold);
  transition: box-shadow var(--transition);
}

.focus-card:hover {
  box-shadow: var(--shadow-md);
}

.focus-card h4 {
  color: var(--ink);
  margin-bottom: 10px;
}

.focus-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  max-width: none;
}

/* ---- Breadcrumbs ------------------------------------------ */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-mid);
  padding-block: 16px;
}

.breadcrumb a {
  color: var(--text-mid);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb-sep {
  color: var(--border);
}

.breadcrumb-current {
  color: var(--ink);
  font-weight: 500;
}

/* ---- Contact Block ---------------------------------------- */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item h5 {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
  color: rgba(255,255,255,0.8);
  font-size: 0.92rem;
  max-width: none;
}

.contact-item a:hover {
  color: var(--gold);
}

/* ---- Footer ----------------------------------------------- */
.site-footer {
  background-color: var(--dark);
  color: var(--white);
  padding-top: 72px;
  padding-bottom: 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 36px;
}

.footer-brand img {
  height: 48px;
  width: auto;
  margin-bottom: 20px;
  border-radius: 4px;
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.footer-brand-tag {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-nap {
  font-size: 0.9rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.7);
}

.footer-nap strong {
  color: var(--white);
}

.footer-nap a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-nap a:hover {
  color: var(--gold-dark);
}

.footer-nap .areas-served {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
  max-width: none;
}

.footer-col h5 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: color var(--transition);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  transition: color var(--transition);
  text-decoration: none;
}

.footer-social a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
}

.footer-copy a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}

.footer-copy a:hover {
  color: var(--gold);
}

/* ---- Page Hero (inner pages) ------------------------------ */
.page-hero {
  background-color: var(--dark);
  padding: 64px 0 52px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,169,110,0.07) 0%, transparent 65%);
}

.page-hero .container {
  position: relative;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 66ch;
}

.page-hero .breadcrumb {
  margin-bottom: 28px;
}

.page-hero .breadcrumb a,
.page-hero .breadcrumb-sep {
  color: rgba(255,255,255,0.45);
}

.page-hero .breadcrumb a:hover {
  color: var(--gold);
}

.page-hero .breadcrumb-current {
  color: rgba(255,255,255,0.75);
}

/* ---- Map placeholder -------------------------------------- */
.map-placeholder {
  background: var(--border);
  border-radius: var(--radius-lg);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  font-size: 0.9rem;
  font-weight: 500;
  flex-direction: column;
  gap: 12px;
}

.map-placeholder-icon {
  font-size: 2rem;
  opacity: 0.5;
}

/* ---- Inline contact list ---------------------------------- */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ---- Schema-ready classes --------------------------------- */
.h-card {}
.p-name {}
.p-tel {}
.p-email {}
.p-adr {}
.p-locality {}
.p-region {}
.p-country-name {}

/* ---- Utility divider -------------------------------------- */
.divider {
  height: 1px;
  background: var(--border);
  border: none;
  margin-block: 0;
}

.divider--dark {
  background: rgba(255,255,255,0.08);
}

/* ---- Section CTA row -------------------------------------- */
.section-cta {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.section-cta.center {
  justify-content: center;
}

/* ---- About page story section ----------------------------- */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-story-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-story-img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.about-story-text h2 {
  margin-bottom: 24px;
}

.about-story-text p {
  margin-bottom: 18px;
}

/* ---- Intro / Lead paragraph ------------------------------- */
.lead {
  font-size: 1.12rem;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 72ch;
}

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --nav-h: 66px;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .problems-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }

  .about-story {
    gap: 48px;
  }
}

/* ============================================================
   RESPONSIVE — 768px (Tablet / Mobile)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --nav-h: 60px;
  }

  .py-section {
    padding-block: 52px;
  }

  .py-section--sm {
    padding-block: 36px;
  }

  .py-section--lg {
    padding-block: 72px;
  }

  /* Nav */
  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  /* Hero */
  .hero h1 {
    font-size: clamp(1.9rem, 7vw, 2.6rem);
  }

  .hero-subhead {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .hero-buttons .btn {
    max-width: 280px;
  }

  /* Grids */
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .problems-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-full {
    grid-template-columns: repeat(2, 1fr);
  }

  .equipment-grid {
    grid-template-columns: 1fr;
  }

  /* Quote form */
  .quote-form-wrap {
    padding: 32px 24px;
  }

  .quote-form {
    grid-template-columns: 1fr;
  }

  .quote-form .form-full {
    grid-column: 1;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* About story */
  .about-story {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-story-img {
    order: -1;
  }

  .about-story-img img {
    aspect-ratio: 16/9;
  }

  /* Section header */
  .section-header {
    margin-bottom: 36px;
  }
}

/* ============================================================
   RESPONSIVE — 480px (Small mobile)
   ============================================================ */
@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .problems-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid,
  .gallery-full {
    grid-template-columns: 1fr;
  }

  .gallery-item--tall {
    grid-row: span 1;
  }

  .quote-form-wrap {
    padding: 24px 16px;
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 0.92rem;
  }

  .faq-answer {
    padding: 0 20px 20px;
  }
}

/* ---- Print ------------------------------------------------ */
@media print {
  .site-nav,
  .nav-mobile,
  .hero-buttons,
  .quote-form-wrap,
  .site-footer {
    display: none;
  }
}
