/* ============================================================
   CULLINAN TILE & FLOORING — Main Stylesheet
   ============================================================ */

/* 1. Variables & Reset */
:root {
  --navy: #1B2A41;
  --navy-dark: #121d2d;
  --navy-light: #243552;
  --gold: #C9A24B;
  --gold-light: #d9b86a;
  --gold-pale: rgba(201, 162, 75, 0.12);
  --warm-white: #F7F4EC;
  --warm-white-2: #EDE9DF;
  --white: #ffffff;
  --text-dark: #1B2A41;
  --text-muted: #556678;
  --border: rgba(201, 162, 75, 0.25);
  --border-light: rgba(27, 42, 65, 0.1);

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;

  --shadow-sm: 0 2px 12px rgba(27, 42, 65, 0.08);
  --shadow-md: 0 4px 24px rgba(27, 42, 65, 0.12);
  --shadow-lg: 0 8px 48px rgba(27, 42, 65, 0.18);

  --transition: 0.3s ease;
  --radius: 2px;
  --radius-lg: 4px;

  --container: 1200px;
  --section-pad: 100px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background-color: var(--warm-white);
  color: var(--text-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* 2. Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.625rem); }
h4 { font-size: 1.125rem; }

p { color: var(--text-muted); }
.lead { font-size: 1.125rem; line-height: 1.8; }

/* 3. Layout */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-pad) 0; }

.section--dark { background-color: var(--navy); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--warm-white); }
.section--dark p { color: rgba(247, 244, 236, 0.72); }

.section--alt { background-color: var(--warm-white-2); }
.section--white { background-color: var(--white); }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-header { max-width: 620px; margin-bottom: 64px; }
.section-header.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 540px; }
.section-header.centered p { margin: 0 auto; }

.divider { width: 48px; height: 2px; background: var(--gold); margin: 20px 0; }
.divider.centered { margin: 20px auto; }

/* 4. Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 34px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius);
  text-decoration: none;
  line-height: 1;
}

.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline { background: transparent; color: var(--warm-white); border: 1.5px solid rgba(247, 244, 236, 0.4); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline-dark { background: transparent; color: var(--navy); border: 1.5px solid rgba(27, 42, 65, 0.35); }
.btn-outline-dark:hover { background: var(--navy); color: var(--warm-white); }

/* 5. Navigation */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.35s ease;
}

.nav.scrolled, .nav.nav-solid {
  background: var(--navy);
  box-shadow: 0 2px 24px rgba(0,0,0,0.22);
  padding: 14px 0;
}

.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.nav-logo { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.logo-main { font-family: var(--font-serif); font-size: 1.375rem; font-weight: 700; color: var(--warm-white); letter-spacing: 0.08em; }
.logo-sub { font-family: var(--font-sans); font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-top: 3px; }

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

.nav-links a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 244, 236, 0.82);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-links .btn-nav {
  background: var(--gold);
  color: var(--navy);
  padding: 10px 22px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-links .btn-nav::after { display: none; }
.nav-links .btn-nav:hover { background: var(--gold-light); color: var(--navy); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--warm-white);
  transition: var(--transition);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 6. Hero (home) */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(140deg, #0c1620 0%, #1B2A41 45%, #1e3352 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 72% 48%, rgba(201,162,75,0.07) 0%, transparent 58%),
    radial-gradient(ellipse at 18% 80%, rgba(201,162,75,0.04) 0%, transparent 45%);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,162,75,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,75,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
}

.hero-content { position: relative; z-index: 2; max-width: 800px; }

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before { content: ''; display: block; width: 36px; height: 1px; background: var(--gold); }

.hero h1 { color: var(--warm-white); margin-bottom: 24px; font-size: clamp(2.75rem, 5.5vw, 4.5rem); }
.hero h1 em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(247, 244, 236, 0.72);
  margin-bottom: 48px;
  max-width: 520px;
  line-height: 1.75;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  position: absolute;
  bottom: 52px;
  right: 0;
  left: 0;
  z-index: 2;
}

.hero-stats-inner {
  display: flex;
  gap: 64px;
  justify-content: flex-end;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.hero-stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.25rem;
  color: var(--gold);
  line-height: 1;
}
.hero-stat span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 244, 236, 0.55);
  margin-top: 5px;
  display: block;
}

/* Page hero (interior pages) */
.page-hero {
  padding: 168px 0 84px;
  background: linear-gradient(140deg, #0c1620 0%, #1B2A41 60%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,162,75,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,75,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
}

.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--warm-white); margin-bottom: 16px; }
.page-hero .lead { color: rgba(247, 244, 236, 0.68); max-width: 560px; }
.page-hero .section-label { margin-bottom: 10px; }

/* 7. Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 40px 32px;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 54px; height: 54px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon svg {
  width: 22px; height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 { margin-bottom: 12px; font-size: 1.25rem; }
.service-card p { font-size: 0.9375rem; line-height: 1.65; margin-bottom: 28px; max-width: none; }

.link-arrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition);
}
.link-arrow:hover { gap: 13px; }
.link-arrow svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 2; }

/* 8. Why Us / Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.feature { text-align: center; padding: 40px 20px; }

.feature-icon {
  width: 64px; height: 64px;
  background: rgba(247, 244, 236, 0.07);
  border: 1px solid rgba(201, 162, 75, 0.22);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}

.feature-icon svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }

.feature h3 { color: var(--warm-white); margin-bottom: 12px; font-size: 1.125rem; }
.feature p { font-size: 0.9rem; margin: 0 auto; max-width: 240px; }

/* 9. Project / Featured Cards */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-card { position: relative; overflow: hidden; cursor: pointer; }

.project-img {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  transition: transform 0.6s ease;
}

.project-card:hover .project-img { transform: scale(1.05); }

.ph-1 { background: linear-gradient(145deg, #192c44 0%, #2a3f5a 100%); }
.ph-2 { background: linear-gradient(145deg, #1a2d45 0%, #253e5c 100%); }
.ph-3 { background: linear-gradient(145deg, #162640 0%, #213856 100%); }
.ph-4 { background: linear-gradient(145deg, #1c2f48 0%, #28405e 100%); }
.ph-5 { background: linear-gradient(145deg, #18293f 0%, #243a54 100%); }
.ph-6 { background: linear-gradient(145deg, #1b2e46 0%, #263d58 100%); }
.ph-7 { background: linear-gradient(145deg, #142238 0%, #1f3450 100%); }
.ph-8 { background: linear-gradient(145deg, #1d3050 0%, #2a4060 100%); }
.ph-9 { background: linear-gradient(145deg, #172840 0%, #223b54 100%); }

.ph-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(201, 162, 75, 0.35);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,29,45,0.92) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.project-card:hover .project-overlay { opacity: 1; }
.project-info h4 { color: var(--warm-white); font-size: 1rem; margin-bottom: 3px; }
.project-info span { font-size: 0.75rem; color: var(--gold); letter-spacing: 0.07em; }

/* 10. Gallery */
.gallery-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }

.filter-btn {
  padding: 9px 22px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background: transparent;
  border: 1.5px solid var(--border-light);
  color: var(--text-muted);
  cursor: pointer;
  border-radius: var(--radius);
  transition: var(--transition);
  font-family: var(--font-sans);
}

.filter-btn:hover, .filter-btn.active { background: var(--gold); border-color: var(--gold); color: var(--navy); }

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

.gallery-item { position: relative; overflow: hidden; cursor: pointer; }

.gallery-img {
  aspect-ratio: 1;
  transition: transform 0.55s ease;
  position: relative;
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 29, 45, 0.72);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }

/* 11. FAQ */
.faq-list { max-width: 820px; margin: 0 auto; }

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

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 26px 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  gap: 20px;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  position: relative;
}

.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.faq-icon::before { width: 12px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 12px; }

.faq-item.open .faq-icon { border-color: var(--gold); background: var(--gold-pale); }
.faq-item.open .faq-icon::after { transform: rotate(90deg); opacity: 0; }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 0 28px; color: var(--text-muted); line-height: 1.78; max-width: 700px; }
.faq-item.open .faq-answer { max-height: 500px; }

/* 12. Contact */
.contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }

.contact-item { display: flex; gap: 18px; margin-bottom: 30px; align-items: flex-start; }

.contact-icon {
  width: 46px; height: 46px;
  background: var(--gold-pale);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }

.contact-item-text strong { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); margin-bottom: 4px; }
.contact-item-text a, .contact-item-text span { color: var(--text-muted); font-size: 0.9375rem; transition: color var(--transition); }
.contact-item-text a:hover { color: var(--gold); }

/* Form */
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group label { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--navy);
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.13);
}

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

/* 13. Areas */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.area-card {
  background: rgba(247, 244, 236, 0.04);
  border: 1px solid rgba(201, 162, 75, 0.18);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
  border-radius: var(--radius);
}

.area-card:hover { background: rgba(201, 162, 75, 0.07); border-color: var(--gold); }
.area-card h3 { color: var(--warm-white); font-size: 1.125rem; margin-bottom: 8px; }
.area-card p { color: rgba(247, 244, 236, 0.58); font-size: 0.875rem; }

.area-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--transition);
}
.area-card a:hover { gap: 12px; }
.area-card a svg { width: 13px; height: 13px; stroke: var(--gold); fill: none; stroke-width: 2.5; }

/* 14. CTA Banner */
.cta-banner {
  background: var(--navy);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,162,75,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,75,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
}

.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--warm-white); margin-bottom: 16px; }
.cta-banner p { color: rgba(247, 244, 236, 0.68); margin: 0 auto 40px; max-width: 500px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* 15. Footer */
.footer { background: var(--navy-dark); padding: 72px 0 32px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(247, 244, 236, 0.07);
  margin-bottom: 32px;
}

.footer-brand .nav-logo { display: inline-flex; }
.footer-brand p { font-size: 0.875rem; color: rgba(247, 244, 236, 0.52); margin-top: 16px; max-width: 290px; line-height: 1.65; }

.footer-col h4 { font-family: var(--font-sans); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.17em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.875rem; color: rgba(247, 244, 236, 0.55); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--warm-white); }

.footer-contact-item { display: flex; gap: 10px; align-items: center; margin-bottom: 12px; }
.footer-contact-item svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 1.75; flex-shrink: 0; }
.footer-contact-item a { font-size: 0.875rem; color: rgba(247, 244, 236, 0.55); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--warm-white); }
.footer-contact-item span { font-size: 0.875rem; color: rgba(247, 244, 236, 0.55); }

.footer-bottom { display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; color: rgba(247, 244, 236, 0.35); }

/* 16. Service Detail (services page) */
.service-detail { padding: 80px 0; }
.service-detail + .service-detail { border-top: 1px solid var(--border-light); }

.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.service-detail-inner.reverse { direction: rtl; }
.service-detail-inner.reverse > * { direction: ltr; }

.service-detail-img {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.service-detail-content h2 { margin-bottom: 16px; }
.service-detail-content p { margin-bottom: 16px; line-height: 1.78; }

.feature-list { list-style: none; margin: 24px 0; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.feature-list li::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

.schluter-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--gold-pale);
  border: 1px solid var(--border);
  padding: 18px 26px;
  border-radius: var(--radius);
  margin-top: 28px;
}

.schluter-badge svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 1.75; flex-shrink: 0; }
.schluter-badge-text strong { display: block; font-size: 0.8rem; font-weight: 700; color: var(--navy); letter-spacing: 0.05em; margin-bottom: 2px; }
.schluter-badge-text span { font-size: 0.78rem; color: var(--text-muted); }

/* 17. About page */
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.value-card { padding: 40px 32px; border: 1px solid var(--border-light); background: var(--white); text-align: center; }
.value-icon { width: 64px; height: 64px; background: var(--gold-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.value-icon svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.value-card h3 { margin-bottom: 12px; }
.value-card p { margin: 0 auto; font-size: 0.9375rem; }

.cert-block { background: var(--navy); border-radius: var(--radius-lg); padding: 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.cert-text h2 { color: var(--warm-white); margin-bottom: 16px; }
.cert-text p { color: rgba(247, 244, 236, 0.7); margin-bottom: 28px; max-width: none; }

.cert-items { display: flex; flex-direction: column; gap: 16px; }
.cert-item { display: flex; align-items: center; gap: 16px; background: rgba(247, 244, 236, 0.05); border: 1px solid rgba(201, 162, 75, 0.2); padding: 20px 24px; border-radius: var(--radius); }
.cert-item svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 1.75; flex-shrink: 0; }
.cert-item strong { display: block; color: var(--warm-white); font-size: 0.9rem; margin-bottom: 2px; }
.cert-item span { font-size: 0.8rem; color: rgba(247, 244, 236, 0.58); }

.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 27px; left: 12%; right: 12%; height: 1px; background: var(--border); }
.process-step { text-align: center; position: relative; z-index: 1; }
.step-num { width: 54px; height: 54px; background: var(--white); border: 2px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; color: var(--gold); margin: 0 auto 20px; }
.process-step h4 { margin-bottom: 8px; font-size: 1rem; }
.process-step p { font-size: 0.875rem; margin: 0 auto; max-width: 200px; }

/* 18. City pages */
.city-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.city-intro-img { aspect-ratio: 4/3; border-radius: var(--radius-lg); position: relative; overflow: hidden; }

.city-services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.city-service-item { display: flex; align-items: flex-start; gap: 14px; padding: 20px; background: var(--warm-white-2); border-radius: var(--radius); }
.city-service-item svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.75; flex-shrink: 0; margin-top: 2px; }
.city-service-item h4 { font-size: 0.9375rem; margin-bottom: 4px; }
.city-service-item p { font-size: 0.875rem; line-height: 1.5; max-width: none; }

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

.testimonial { background: var(--white); border: 1px solid var(--border-light); padding: 36px; position: relative; }
.testimonial::before { content: '\201C'; font-family: var(--font-serif); font-size: 5rem; color: var(--gold); opacity: 0.18; position: absolute; top: 4px; left: 24px; line-height: 1; }

.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.stars span { color: var(--gold); font-size: 13px; }

.testimonial-quote { font-size: 0.9375rem; line-height: 1.72; color: var(--text-muted); margin-bottom: 24px; padding-top: 16px; }

.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 40px; height: 40px; background: var(--gold-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-weight: 700; color: var(--gold); font-size: 0.875rem; flex-shrink: 0; }
.testimonial-author-info strong { display: block; font-size: 0.875rem; font-weight: 700; color: var(--navy); }
.testimonial-author-info span { font-size: 0.8rem; color: var(--text-muted); }

/* 20. Scroll-to-top */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px; height: 44px;
  background: var(--gold);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  z-index: 900;
}

.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { transform: translateY(-3px); }
.scroll-top svg { width: 18px; height: 18px; stroke: var(--navy); fill: none; stroke-width: 2.5; }

/* 21. Utilities */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.max-w-prose { max-width: 680px; }

/* Fade animations */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cert-block { padding: 44px; }
  .contact-layout { gap: 56px; }
}

@media (max-width: 960px) {
  :root { --section-pad: 72px; }
  .service-detail-inner, .service-detail-inner.reverse { grid-template-columns: 1fr; direction: ltr; gap: 40px; }
  .city-intro { grid-template-columns: 1fr; gap: 40px; }
  .cert-block { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .hero-stats { display: none; }
  .project-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 56px; }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--navy);
    padding: 16px 24px 24px;
    gap: 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.24);
  }

  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; border-bottom: 1px solid rgba(247,244,236,0.07); }
  .nav-links a { padding: 14px 0; display: block; }
  .nav-links .btn-nav { display: inline-flex; margin: 14px 0 6px; }
  .nav-links .btn-nav::after { display: none; }
  .nav-toggle { display: flex; }

  .features-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .city-services { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 540px) {
  .project-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .cert-block { padding: 32px 24px; }
}

/* ============================================================
   NAV DROPDOWN
   ============================================================ */

.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; }

.has-dropdown { position: relative; }

.dropdown-toggle {
  background: none; border: none; cursor: pointer;
  padding: 3px 2px; display: inline-flex; align-items: center; margin-left: 2px;
}
.dropdown-toggle svg {
  width: 13px; height: 13px; stroke: rgba(247,244,236,0.72); fill: none; stroke-width: 2.5;
  transition: transform var(--transition), stroke var(--transition);
}
.has-dropdown.open .dropdown-toggle svg { stroke: var(--gold); transform: rotate(180deg); }

/* Mobile-first: accordion */
.dropdown-menu {
  list-style: none;
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease;
  pointer-events: none;
  background: rgba(255,255,255,0.03);
  border-left: 2px solid rgba(201,162,75,0.28);
  margin: 0 0 0 10px;
  padding: 0;
  width: calc(100% - 10px);
}
.has-dropdown.open .dropdown-menu { max-height: 600px; pointer-events: auto; }
.dropdown-menu li.dropdown-divider { height: 1px; background: rgba(247,244,236,0.07); margin: 5px 0; }
.dropdown-menu a {
  display: block; padding: 10px 16px;
  font-size: 0.76rem; font-weight: 600; color: rgba(247,244,236,0.7);
  letter-spacing: 0.04em; transition: color var(--transition), background var(--transition);
  text-transform: none; white-space: nowrap; text-decoration: none;
}
.dropdown-menu a:hover { color: var(--gold); }
.dropdown-menu a::after { display: none !important; }

/* Desktop: floating dropdown on hover */
@media (min-width: 769px) {
  .dropdown-toggle { display: none; }
  .has-dropdown { display: flex; align-items: center; }
  .has-dropdown:hover .dropdown-toggle svg { stroke: var(--gold); transform: rotate(180deg); }

  .dropdown-menu {
    position: absolute;
    top: calc(100% + 14px); left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 258px;
    background: var(--navy-dark);
    border: 1px solid rgba(201,162,75,0.22);
    border-top: 2px solid var(--gold);
    padding: 8px 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.32);
    z-index: 300;
    max-height: none; overflow: visible; margin: 0; width: auto;
    border-left-width: 1px;
    opacity: 0; pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .has-dropdown:hover .dropdown-menu,
  .has-dropdown:focus-within .dropdown-menu,
  .has-dropdown.open .dropdown-menu {
    opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0);
  }
  .dropdown-menu a { padding: 10px 20px; }
}

/* ============================================================
   SERVICE PAGE COMPONENTS
   ============================================================ */

.highlight-box {
  background: var(--gold-pale);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  padding: 24px 28px;
  border-radius: var(--radius);
  margin: 24px 0;
}
.highlight-box p { color: var(--text-dark); font-size: 0.9375rem; line-height: 1.72; max-width: none; }

.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 40px 0; }
.stat-item { text-align: center; padding: 28px 16px; background: var(--warm-white-2); border-radius: var(--radius); }
.stat-item strong { display: block; font-family: var(--font-serif); font-size: 2rem; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.stat-item span { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; letter-spacing: 0.04em; }

.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 32px 0; }
.comparison-col { padding: 32px; border: 1px solid var(--border-light); border-radius: var(--radius); background: var(--white); }
.comparison-col h4 { margin-bottom: 16px; }
.comparison-col.featured { border-color: var(--gold); background: var(--warm-white-2); }
.comparison-col.featured h4 { color: var(--gold); }

.related-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-service-card {
  padding: 28px 24px; background: var(--white);
  border: 1px solid var(--border-light); border-radius: var(--radius);
  transition: var(--transition);
}
.related-service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.related-service-card h4 { margin-bottom: 8px; font-size: 1rem; }
.related-service-card p { font-size: 0.875rem; margin-bottom: 16px; max-width: none; line-height: 1.55; }

.city-links-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.city-link-pill {
  padding: 9px 20px; background: var(--warm-white-2);
  border-radius: 99px; font-size: 0.78rem; font-weight: 600;
  color: var(--navy); letter-spacing: 0.05em;
  transition: var(--transition); text-decoration: none;
}
.city-link-pill:hover { background: var(--gold); color: var(--navy); }

.warning-box {
  background: rgba(201,162,75,0.06);
  border: 1px solid rgba(201,162,75,0.3);
  padding: 20px 24px;
  border-radius: var(--radius);
  margin: 20px 0;
  display: flex; gap: 14px; align-items: flex-start;
}
.warning-box svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 2px; }
.warning-box p { color: var(--text-dark); font-size: 0.9rem; line-height: 1.65; max-width: none; }

@media (max-width: 768px) {
  .stat-row { grid-template-columns: 1fr 1fr; }
  .comparison-grid { grid-template-columns: 1fr; }
  .related-services { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .stat-row { grid-template-columns: 1fr; }
}

/* ============================================================
   22. Trust Bar
   ============================================================ */

.trust-bar {
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(201,162,75,0.18);
  padding: 13px 0;
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.trust-items li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,244,236,0.72);
  white-space: nowrap;
}

.trust-items svg {
  width: 13px; height: 13px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

/* ============================================================
   23. Mobile Sticky CTA Bar
   ============================================================ */

.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 800;
  background: var(--navy-dark);
  border-top: 2px solid var(--gold);
  padding: 10px 20px;
  gap: 12px;
  align-items: center;
}

.mobile-cta-call {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--warm-white);
  text-decoration: none;
  padding: 10px 0;
}

.mobile-cta-call svg {
  width: 15px; height: 15px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.75;
  flex-shrink: 0;
}

.mobile-cta-quote {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 16px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition);
}

.mobile-cta-quote:hover { background: var(--gold-light); }

@media (max-width: 768px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 70px; }
  .scroll-top { bottom: 86px; right: 16px; }
}

/* ============================================================
   24. Breadcrumbs
   ============================================================ */

.breadcrumb-nav {
  background: var(--warm-white-2);
  border-bottom: 1px solid var(--border-light);
  padding: 11px 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  list-style: none;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  font-size: 0.76rem;
  color: var(--text-muted);
}

.breadcrumb li + li::before {
  content: '›';
  margin: 0 8px;
  color: var(--border-light);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--gold);
  font-weight: 600;
  transition: color var(--transition);
  text-decoration: none;
}

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

.breadcrumb [aria-current="page"] {
  color: var(--navy);
  font-weight: 500;
}

/* ============================================================
   25. Testimonial — Service Page variant (2-col)
   ============================================================ */

.testimonial-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 768px) {
  .testimonial-grid-2 { grid-template-columns: 1fr; }
  .trust-items { gap: 18px; }
}

/* ============================================================
   26. Real project images inside placeholder containers
   ============================================================ */

/* ============================================================
   27. Hero — Cinematic Photo Background + Zoom
   ============================================================ */

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  animation: heroZoom 28s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes heroZoom {
  from { transform: scale(1.0); }
  to   { transform: scale(1.12); }
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(10, 18, 28, 0.94) 0%,
    rgba(18, 30, 48, 0.82) 48%,
    rgba(27, 42, 65, 0.62) 100%
  );
}

.hero::before { z-index: 1; }
.hero-grid-overlay { z-index: 1; opacity: 0.35; }
.hero-content { position: relative; z-index: 3; }
.hero-stats { z-index: 3; }

/* Larger, more editorial hero headline */
.hero h1 {
  font-size: clamp(3.25rem, 7vw, 5.75rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

/* Tighter section labels — more editorial */
.section-label {
  font-size: 0.62rem;
  letter-spacing: 0.26em;
}

/* ============================================================
   28. Image Break — Cinematic Full-Width Photo Panel
   ============================================================ */

.image-break {
  position: relative;
  height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-break-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.image-break-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.image-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 18, 28, 0.50) 0%,
    rgba(10, 18, 28, 0.78) 100%
  );
}

.image-break-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 760px;
}

.image-break-content h2 {
  color: var(--warm-white);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.15;
  margin: 12px 0 24px;
}

.image-break-content h2 em {
  color: var(--gold);
  font-style: italic;
}

.image-break-content .divider { margin: 0 auto 28px; }

@media (max-width: 768px) {
  .image-break { height: 400px; }
}

/* ============================================================
   29. Project Cards — Portrait format + gold overlay
   ============================================================ */

.project-img { aspect-ratio: 3/4; }

.project-overlay {
  background: linear-gradient(
    to top,
    rgba(10, 18, 28, 0.97) 0%,
    rgba(10, 18, 28, 0.55) 42%,
    transparent 70%
  );
}

.project-info h4 {
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 5px;
  letter-spacing: 0;
}

.project-info span {
  font-size: 0.7rem;
  color: rgba(247, 244, 236, 0.65);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   30. Footer — Richer brand mark & CTA strip
   ============================================================ */

.footer-cta-strip {
  background: linear-gradient(100deg, #0c1620 0%, var(--navy) 100%);
  border-top: 1px solid rgba(201, 162, 75, 0.25);
  border-bottom: 1px solid rgba(201, 162, 75, 0.12);
  padding: 60px 0;
}

.footer-cta-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-cta-text {}
.footer-cta-text .section-label { margin-bottom: 10px; }
.footer-cta-text h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--warm-white);
  line-height: 1.2;
}

.footer-cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.footer-brand-wordmark {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--warm-white);
  letter-spacing: 0.07em;
  display: block;
  line-height: 1;
  margin-bottom: 3px;
}

.footer-brand-sub {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

@media (max-width: 768px) {
  .footer-cta-strip .container { flex-direction: column; align-items: flex-start; }
}

.project-img img,
.gallery-img img,
.service-detail-img img,
.city-intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* FAQ group heading */
.faq-group-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 28px 0 8px;
  border-top: 2px solid var(--gold-pale);
  margin-top: 16px;
  display: block;
}
