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

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

:root {
  --bronze: #bf8e5b;
  --red: #CC0000;
  --red-dark: #a80000;
  --black: #111111;
  --dark: #1e1e1e;
  --white: #ffffff;
  --offwhite: #f7f7f7;
  --lightgrey: #eeeeee;
  --grey: #888888;
  --text: #1e1e1e;
  --text-light: #555555;
  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); overflow-x: hidden; }

/* NAV */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--lightgrey);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 68px;
  position: relative;
}
.nav-redline { height: 3px; background: var(--red); }
.logo-text {
  color: var(--black);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.logo-text span {
  display: block;
  font-size: 0.6rem;
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--red);
  text-transform: uppercase;
}
.nav-links { display: flex; gap: 0; list-style: none; align-items: stretch; }
.nav-links > li { position: relative; display: flex; align-items: center; }
.nav-links > li > a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
  padding: 0 20px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.nav-links > li > a:hover { color: var(--red); }
.nav-links > li > a.has-mega::after {
  content: '▾';
  font-size: 0.65rem;
  margin-left: 2px;
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: #111; }

/* MEGA MENU */
.mega {
  display: none;
  position: absolute;
  top: 68px;
  left: 0;
  background: var(--black);
  min-width: 260px;
  z-index: 200;
  border-top: 3px solid var(--red);
  padding: 8px 0;
}
.nav-links > li:hover .mega { display: block; }
.mega a {
  display: block;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  padding: 11px 24px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.mega a:hover { background: var(--red); color: var(--white); }

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.hero-left {
  background: var(--black);
  display: flex;
  align-items: center;
  padding: 80px 70px;
}
.hero-right {
  overflow: hidden;
  min-height: 580px;
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-placeholder {
  width: 100%;
  height: 100%;
  min-height: 580px;
  background: #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.15);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.hero-content {
  width: 100%;
}
.eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ''; display: block; width: 28px; height: 2px; background: var(--red); }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 22px;
}
.hero p {
  color: rgba(255,255,255,0.7);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 36px;
}
.btn-primary {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 15px 34px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-ghost {
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,0.45);
  color: rgba(255,255,255,0.85);
  padding: 14px 34px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  margin-left: 16px;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: white; color: white; }
.btn-dark {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  padding: 15px 34px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-dark:hover { background: var(--dark); }

/* FEATURE STRIP */
.feature-strip {
  background: var(--black);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 3px solid var(--red);
}
.feature-item {
  padding: 30px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: background 0.2s;
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: rgba(204,0,0,0.12); }
.feature-item .fi-icon {
  width: 36px;
  height: 36px;
  background: var(--red);
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-item .fi-icon svg { width: 18px; height: 18px; fill: white; }
.feature-item h3 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

/* SECTIONS */
section { padding: 100px 80px; }
.s-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.s-eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: var(--red); }
.s-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.12;
  margin-bottom: 22px;
}
.s-body {
  font-size: 0.97rem;
  line-height: 1.82;
  color: var(--text-light);
  max-width: 580px;
}

/* ABOUT */
.about {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap { position: relative; height: 520px; }
.img-ph {
  width: 100%;
  height: 100%;
  background: var(--lightgrey);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.red-accent {
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 80px;
  height: 80px;
  background: var(--red);
}
.year-badge {
  position: absolute;
  top: 24px;
  right: -24px;
  background: var(--black);
  color: var(--white);
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.year-badge .num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 900; line-height: 1; color: var(--red); }
.year-badge .lbl { font-size: 0.55rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.6); text-align: center; margin-top: 4px; }
.about-text .btn-dark { margin-top: 36px; }

/* QUALITY */
.quality {
  background: var(--offwhite);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.quality-img { height: 480px; overflow: hidden; }
.quality-img img { width: 100%; height: 100%; object-fit: cover; }
.quality-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}
.quality-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}
.quality-list li::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: var(--red);
  flex-shrink: 0;
}

/* SERVICES */
.services {
  background: var(--black);
  padding: 100px 40px;
  text-align: center;
}
.services .s-title { color: var(--white); }
.services .s-eyebrow { justify-content: center; }
.services .s-eyebrow::before { display: none; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}
.svc-card {
  position: relative;
  height: 400px;
  overflow: hidden;
  cursor: pointer;
}
.svc-card .img-ph { background: #222; height: 100%; }
.svc-card:hover .img-ph { background: #2a2a2a; }
.svc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: background 0.3s;
}
.svc-card:hover .svc-overlay { background: linear-gradient(to top, rgba(204,0,0,0.7) 0%, transparent 65%); }
.svc-tag {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 6px;
}
.svc-card:hover .svc-tag { color: rgba(255,255,255,0.8); }
.svc-card h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 12px;
}
.svc-link {
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.svc-link:hover { color: white; }

/* TESTIMONIAL */
.testimonial {
  background: var(--white);
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
}
.test-label { writing-mode: vertical-lr; transform: rotate(180deg); }
.test-label .s-eyebrow { justify-content: flex-start; }
.test-label .s-eyebrow::before { display: none; }
.test-label h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.05em;
}
.stars { color: var(--red); font-size: 1.1rem; letter-spacing: 5px; margin-bottom: 24px; }
blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: var(--black);
  line-height: 1.65;
  margin-bottom: 30px;
  border-left: 3px solid var(--red);
  padding-left: 24px;
}
.test-author { display: flex; align-items: center; gap: 16px; }
.test-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--lightgrey);
  border: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  font-size: 0.7rem;
}
.test-name { font-weight: 600; font-size: 0.9rem; color: var(--black); }
.test-loc { font-size: 0.8rem; color: var(--grey); }

/* CTA */
.cta {
  background: var(--offwhite);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
  padding: 0;
}
.cta-img { height: 460px; overflow: hidden; }
.cta-img img, .cta-img .img-ph { height: 100%; width: 100%; }
.cta-content { padding: 80px 70px; display: flex; flex-direction: column; justify-content: center; }
.cta-content .s-title { color: var(--black); }
.cta-details { margin-top: 28px; display: flex; flex-direction: column; gap: 10px; }
.cta-details p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }
.cta-details a { color: var(--red); text-decoration: none; font-weight: 500; }
.cta-details a:hover { text-decoration: underline; }
.cta-hours { font-weight: 600; color: var(--black); font-size: 0.88rem; }
.cta-content .btn-primary { margin-top: 36px; align-self: flex-start; }

/* FOOTER */
footer { background: var(--black); color: rgba(255,255,255,0.55); padding: 70px 80px 30px; }
.footer-top-line { display: block; height: 3px; background: var(--red); margin-bottom: 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-text { font-size: 1rem; display: block; margin-bottom: 16px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.75; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--red); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.fci { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; }
.fci-dot { width: 6px; height: 6px; background: var(--red); flex-shrink: 0; margin-top: 6px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.78rem;
}
.footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; margin-left: 20px; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--red); }

/* RESPONSIVE */
@media (max-width: 900px) {
  section { padding: 60px 24px; }
  nav { padding: 0 24px; }
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    background: var(--black);
    padding: 16px 0;
    z-index: 200;
    align-items: flex-start;
  }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.08); width: 100%; }
  .nav-links > li > a {
    padding: 14px 24px;
    height: auto;
    color: rgba(255,255,255,0.85);
  }
  .mega {
    position: static;
    border-top: none;
    padding: 0;
    width: 100%;
  }
  .mega a { padding: 10px 40px; }
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 50px 24px; }
  .hero-right { min-height: 300px; }
  .btn-ghost { display: none; }
  .feature-strip { grid-template-columns: repeat(2, 1fr); }
  .about, .quality { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap, .quality-img, .cta-img { height: 280px; }
  .year-badge { right: 0; top: 16px; }
  .services { padding: 60px 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .svc-card { height: 280px; }
  .testimonial { grid-template-columns: 1fr; gap: 20px; }
  .test-label { writing-mode: horizontal-tb; transform: none; }
  .cta { grid-template-columns: 1fr; }
  .cta-img { height: 260px; }
  .cta-content { padding: 40px 24px; }
  footer { padding: 50px 24px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

:root {
  --bronze: #bf8e5b;
  --red: #CC0000;
  --red-dark: #a80000;
  --black: #111111;
  --dark: #1e1e1e;
  --white: #ffffff;
  --offwhite: #f7f7f7;
  --lightgrey: #eeeeee;
  --grey: #888888;
  --text: #1e1e1e;
  --text-light: #555555;
  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); overflow-x: hidden; }

/* NAV */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--lightgrey);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 68px;
  position: relative;
}
.nav-redline { height: 3px; background: var(--red); }
.logo-text {
  color: var(--black);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.logo-text span {
  display: block;
  font-size: 0.6rem;
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--red);
  text-transform: uppercase;
}
.nav-links { display: flex; gap: 0; list-style: none; align-items: stretch; }
.nav-links > li { position: relative; display: flex; align-items: center; }
.nav-links > li > a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
  padding: 0 20px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.nav-links > li > a:hover { color: var(--red); }
.nav-links > li > a.has-mega::after {
  content: '▾';
  font-size: 0.65rem;
  margin-left: 2px;
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: #111; }

/* MEGA MENU */
.mega {
  display: none;
  position: absolute;
  top: 68px;
  left: 0;
  background: var(--black);
  min-width: 260px;
  z-index: 200;
  border-top: 3px solid var(--red);
  padding: 8px 0;
}
.nav-links > li:hover .mega { display: block; }
.mega a {
  display: block;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  padding: 11px 24px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.mega a:hover { background: var(--red); color: var(--white); }

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.hero-left {
  background: var(--black);
  display: flex;
  align-items: center;
  padding: 80px 70px;
}
.hero-right {
  overflow: hidden;
  min-height: 580px;
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-placeholder {
  width: 100%;
  height: 100%;
  min-height: 580px;
  background: #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.15);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.hero-content {
  width: 100%;
}
.eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ''; display: block; width: 28px; height: 2px; background: var(--red); }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 22px;
}
.hero p {
  color: rgba(255,255,255,0.7);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 36px;
}
.btn-primary {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 15px 34px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-ghost {
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,0.45);
  color: rgba(255,255,255,0.85);
  padding: 14px 34px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  margin-left: 16px;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: white; color: white; }
.btn-dark {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  padding: 15px 34px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-dark:hover { background: var(--dark); }

/* FEATURE STRIP */
.feature-strip {
  background: var(--black);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 3px solid var(--red);
}
.feature-item {
  padding: 30px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: background 0.2s;
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: rgba(204,0,0,0.12); }
.feature-item .fi-icon {
  width: 36px;
  height: 36px;
  background: var(--red);
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-item .fi-icon svg { width: 18px; height: 18px; fill: white; }
.feature-item h3 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

/* SECTIONS */
section { padding: 100px 80px; }
.s-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.s-eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: var(--red); }
.s-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.12;
  margin-bottom: 22px;
}
.s-body {
  font-size: 0.97rem;
  line-height: 1.82;
  color: var(--text-light);
  max-width: 580px;
}

/* ABOUT */
.about {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap { position: relative; height: 520px; }
.img-ph {
  width: 100%;
  height: 100%;
  background: var(--lightgrey);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.red-accent {
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 80px;
  height: 80px;
  background: var(--red);
}
.year-badge {
  position: absolute;
  top: 24px;
  right: -24px;
  background: var(--black);
  color: var(--white);
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.year-badge .num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 900; line-height: 1; color: var(--red); }
.year-badge .lbl { font-size: 0.55rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.6); text-align: center; margin-top: 4px; }
.about-text .btn-dark { margin-top: 36px; }

/* QUALITY */
.quality {
  background: var(--offwhite);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.quality-img { height: 480px; overflow: hidden; }
.quality-img img { width: 100%; height: 100%; object-fit: cover; }
.quality-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}
.quality-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}
.quality-list li::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: var(--red);
  flex-shrink: 0;
}

/* SERVICES */
.services {
  background: var(--black);
  padding: 100px 40px;
  text-align: center;
}
.services .s-title { color: var(--white); }
.services .s-eyebrow { justify-content: center; }
.services .s-eyebrow::before { display: none; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}
.svc-card {
  position: relative;
  height: 400px;
  overflow: hidden;
  cursor: pointer;
}
.svc-card .img-ph { background: #222; height: 100%; }
.svc-card:hover .img-ph { background: #2a2a2a; }
.svc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: background 0.3s;
}
.svc-card:hover .svc-overlay { background: linear-gradient(to top, rgba(204,0,0,0.7) 0%, transparent 65%); }
.svc-tag {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 6px;
}
.svc-card:hover .svc-tag { color: rgba(255,255,255,0.8); }
.svc-card h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 12px;
}
.svc-link {
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.svc-link:hover { color: white; }

/* TESTIMONIAL */
.testimonial {
  background: var(--white);
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
}
.test-label { writing-mode: vertical-lr; transform: rotate(180deg); }
.test-label .s-eyebrow { justify-content: flex-start; }
.test-label .s-eyebrow::before { display: none; }
.test-label h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.05em;
}
.stars { color: var(--red); font-size: 1.1rem; letter-spacing: 5px; margin-bottom: 24px; }
blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: var(--black);
  line-height: 1.65;
  margin-bottom: 30px;
  border-left: 3px solid var(--red);
  padding-left: 24px;
}
.test-author { display: flex; align-items: center; gap: 16px; }
.test-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--lightgrey);
  border: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  font-size: 0.7rem;
}
.test-name { font-weight: 600; font-size: 0.9rem; color: var(--black); }
.test-loc { font-size: 0.8rem; color: var(--grey); }

/* CTA */
.cta {
  background: var(--offwhite);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
  padding: 0;
}
.cta-img { height: 460px; overflow: hidden; }
.cta-img img, .cta-img .img-ph { height: 100%; width: 100%; }
.cta-content { padding: 80px 70px; display: flex; flex-direction: column; justify-content: center; }
.cta-content .s-title { color: var(--black); }
.cta-details { margin-top: 28px; display: flex; flex-direction: column; gap: 10px; }
.cta-details p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }
.cta-details a { color: var(--red); text-decoration: none; font-weight: 500; }
.cta-details a:hover { text-decoration: underline; }
.cta-hours { font-weight: 600; color: var(--black); font-size: 0.88rem; }
.cta-content .btn-primary { margin-top: 36px; align-self: flex-start; }

/* FOOTER */
footer { background: var(--black); color: rgba(255,255,255,0.55); padding: 70px 80px 30px; }
.footer-top-line { display: block; height: 3px; background: var(--red); margin-bottom: 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-text { font-size: 1rem; display: block; margin-bottom: 16px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.75; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--red); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.fci { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; }
.fci-dot { width: 6px; height: 6px; background: var(--red); flex-shrink: 0; margin-top: 6px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.78rem;
}
.footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; margin-left: 20px; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--red); }

/* RESPONSIVE */
@media (max-width: 900px) {
  section { padding: 60px 24px; }
  nav { padding: 0 24px; }
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    background: var(--black);
    padding: 16px 0;
    z-index: 200;
    align-items: flex-start;
  }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.08); width: 100%; }
  .nav-links > li > a {
    padding: 14px 24px;
    height: auto;
    color: rgba(255,255,255,0.85);
  }
  .mega {
    position: static;
    border-top: none;
    padding: 0;
    width: 100%;
  }
  .mega a { padding: 10px 40px; }
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 50px 24px; }
  .hero-right { min-height: 300px; }
  .btn-ghost { display: none; }
  .feature-strip { grid-template-columns: repeat(2, 1fr); }
  .about, .quality { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap, .quality-img, .cta-img { height: 280px; }
  .year-badge { right: 0; top: 16px; }
  .services { padding: 60px 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .svc-card { height: 280px; }
  .testimonial { grid-template-columns: 1fr; gap: 20px; }
  .test-label { writing-mode: horizontal-tb; transform: none; }
  .cta { grid-template-columns: 1fr; }
  .cta-img { height: 260px; }
  .cta-content { padding: 40px 24px; }
  footer { padding: 50px 24px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    
}