/* McCormick Electric - Redesigned */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=DM+Serif+Display&display=swap');

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

:root {
  --bg: #0d0d0d;
  --bg-elevated: #1a1a1a;
  --text: #e8e4df;
  --text-muted: #8a8580;
  --gold: #c9a227;
  --gold-dim: #8b7019;
  --burgundy: #6b2d2d;
  --burgundy-deep: #3d1a1a;
  --cream: #f5f2ed;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* ================================
   PERSISTENT CONTACT BAR
   ================================ */
.contact-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--burgundy-deep);
  padding: 0.75rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  border-top: 1px solid var(--burgundy);
}

.contact-bar__text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-bar__text strong {
  color: var(--gold);
}

.contact-bar__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--cream);
  font-weight: 700;
  font-size: 1.1rem;
  transition: color 0.2s;
}

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

.contact-bar__phone svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 600px) {
  .contact-bar {
    justify-content: center;
    padding: 1rem;
  }
  .contact-bar__text { display: none; }
}

/* ================================
   HEADER
   ================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 1rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(10px);
}

.logo {
  display: block;
  height: 50px;
}

.logo img {
  height: 100%;
  width: auto;
}

.nav {
  display: flex;
  gap: 2.5rem;
}

.nav a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cream);
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s;
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

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

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: 0.3s;
}

@media (max-width: 768px) {
  .header {
    padding: 0.75rem 1.5rem;
  }

  .logo {
    height: 40px;
    z-index: 1002;
    position: relative;
  }

  .menu-toggle {
    display: flex;
    z-index: 1002;
    position: relative;
  }

  .nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: #000000 !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 25vh;
    gap: 2.5rem;
    display: none;
    z-index: 1001;
  }

  .nav.open {
    display: flex !important;
  }

  .nav a {
    font-size: 2rem;
    color: #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.75rem 1.5rem;
    display: block;
  }

  .nav a:hover,
  .nav a.active {
    color: var(--gold) !important;
  }

  .nav a::after {
    display: none;
  }

  /* Hamburger to X animation */
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* ================================
   HERO - SPLIT LAYOUT
   ================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-bottom: 60px;
}

.hero__left {
  background: var(--burgundy-deep);
  padding: 8rem 4rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__tagline {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero__tagline::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero__title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.hero__title span {
  color: var(--gold);
}

.hero__intro {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 400px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: var(--cream);
  font-weight: 500;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.5rem;
  transition: gap 0.3s;
}

.hero__cta:hover {
  gap: 1.5rem;
}

.hero__cta svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.hero__right {
  background: var(--bg-elevated);
  padding: 8rem 4rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.hero__stat {
  margin-bottom: 3rem;
}

.hero__stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 6rem;
  color: var(--burgundy);
  line-height: 1;
  -webkit-text-stroke: 1px var(--gold-dim);
}

.hero__stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 0.5rem;
}

.hero__services {
  border-top: 1px solid #333;
  padding-top: 2rem;
}

.hero__services-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.hero__services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__services-list span {
  padding: 0.5rem 1rem;
  border: 1px solid #333;
  font-size: 0.85rem;
  color: var(--text);
  transition: 0.2s;
}

.hero__services-list span:hover {
  border-color: var(--gold);
  color: var(--gold);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero__left {
    padding: 7rem 2rem 3rem;
    min-height: 70vh;
  }

  .hero__right {
    padding: 3rem 2rem;
    min-height: auto;
  }

  .hero__stat-number {
    font-size: 4rem;
  }
}

/* ================================
   CONTENT WRAPPER
   ================================ */
.content {
  padding-bottom: 80px;
}

/* ================================
   TEXT MARQUEE
   ================================ */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: 1.5rem 0;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  background: var(--bg);
}

.marquee__inner {
  display: flex;
  animation: scroll 30s linear infinite;
}

.marquee__text {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--text-muted);
  padding: 0 2rem;
}

.marquee__text span {
  color: var(--gold);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ================================
   ABOUT SECTION - OFFSET GRID
   ================================ */
.about {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  padding: 6rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

.about__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about__label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.about__heading {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.about__year {
  font-family: 'DM Serif Display', serif;
  font-size: 8rem;
  color: var(--burgundy-deep);
  line-height: 1;
  margin-bottom: 1rem;
  -webkit-text-stroke: 1px var(--burgundy);
}

.about__content {
  padding-top: 2rem;
}

.about__text {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.about__signature {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #333;
}

.about__signature-icon {
  width: 60px;
  height: 60px;
  background: var(--burgundy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--gold);
}

.about__signature-text {
  font-size: 0.9rem;
}

.about__signature-name {
  font-weight: 700;
  color: var(--cream);
}

.about__signature-role {
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .about {
    grid-template-columns: 1fr;
    padding: 4rem 2rem;
    gap: 2rem;
  }

  .about__year {
    font-size: 5rem;
  }
}

/* ================================
   SERVICES - STACKED LIST
   ================================ */
.services {
  padding: 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

.services__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #333;
}

.services__title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
}

.services__count {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.service-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 3rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid #222;
  align-items: center;
  transition: 0.3s;
}

.service-item:hover {
  padding-left: 1rem;
  border-color: var(--gold-dim);
}

.service-item__num {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--gold-dim);
}

.service-item__content h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.service-item:hover h3 {
  color: var(--gold);
}

.service-item__content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 500px;
}

.service-item__arrow {
  width: 50px;
  height: 50px;
  border: 1px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.service-item:hover .service-item__arrow {
  background: var(--gold);
  border-color: var(--gold);
}

.service-item__arrow svg {
  width: 20px;
  height: 20px;
  transition: 0.3s;
}

.service-item:hover .service-item__arrow svg {
  color: var(--bg);
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .services {
    padding: 3rem 2rem;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 2rem 0;
  }

  .service-item__num {
    font-size: 1rem;
  }

  .service-item__arrow {
    display: none;
  }
}

/* ================================
   WHY US - SIMPLE BLOCKS
   ================================ */
.why-us {
  background: var(--burgundy-deep);
  padding: 5rem 4rem;
}

.why-us__grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #333;
}

.why-us__item {
  background: var(--burgundy-deep);
  padding: 2.5rem;
  text-align: center;
}

.why-us__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.5rem;
  color: var(--gold);
}

.why-us__item h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.why-us__item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .why-us {
    padding: 3rem 2rem;
  }

  .why-us__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .why-us__grid {
    grid-template-columns: 1fr;
  }
}

/* ================================
   GOOGLE REVIEWS
   ================================ */
.reviews {
  padding: 5rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

.reviews__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #333;
}

.reviews__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviews__label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.reviews__title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
}

.reviews__google-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

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

.reviews__google-icon {
  width: 24px;
  height: 24px;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review-card {
  background: var(--bg-elevated);
  padding: 2rem;
  border: 1px solid #222;
  transition: border-color 0.3s;
}

.review-card:hover {
  border-color: var(--gold-dim);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-card__avatar {
  width: 48px;
  height: 48px;
  background: var(--burgundy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
}

.review-card__name {
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.25rem;
}

.review-card__date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.review-card__stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.review-card__text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.review-card__tag {
  display: inline-block;
  padding: 0.4rem 0.75rem;
  background: var(--burgundy-deep);
  border: 1px solid var(--burgundy);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .reviews {
    padding: 4rem 2rem;
  }

  .reviews__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

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

/* ================================
   CONTACT PAGE
   ================================ */
.page-intro {
  padding: 10rem 4rem 4rem;
  max-width: 900px;
}

.page-intro__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.page-intro__title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.page-intro__text {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 0 4rem 6rem;
  max-width: 1200px;
}

.contact-info {
  padding-top: 1rem;
}

.contact-info__item {
  margin-bottom: 2.5rem;
}

.contact-info__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.contact-info__value {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
}

.contact-info__value a {
  transition: color 0.2s;
}

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

.contact-info__hours {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.contact-form {
  background: var(--bg-elevated);
  padding: 3rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form__group {
  margin-bottom: 1.5rem;
}

.form__label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 1rem;
  background: var(--bg);
  border: 1px solid #333;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form__textarea {
  min-height: 150px;
  resize: vertical;
}

.form__select {
  cursor: pointer;
}

.form__submit {
  width: 100%;
  padding: 1.25rem;
  background: var(--gold);
  color: var(--bg);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  transition: 0.2s;
}

.form__submit:hover {
  background: var(--cream);
}

.form-success {
  background: #1a2e1a;
  border: 1px solid var(--gold);
  padding: 3rem;
  text-align: center;
  margin: 0 4rem 3rem;
}

.form-success__icon {
  width: 60px;
  height: 60px;
  background: var(--gold);
  color: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 auto 1.5rem;
}

.form-success__title {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.form-success__text {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .page-intro {
    padding: 8rem 2rem 3rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    padding: 0 2rem 4rem;
  }

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

  .contact-form {
    padding: 2rem;
  }

  .form-success {
    margin: 0 2rem 3rem;
    padding: 2rem;
  }
}

/* ================================
   ABOUT PAGE
   ================================ */
.story-section {
  padding: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.story-section__text {
  font-size: 1.2rem;
  line-height: 2;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.story-section__text:first-letter {
  font-family: 'DM Serif Display', serif;
  font-size: 4rem;
  float: left;
  line-height: 1;
  margin-right: 1rem;
  color: var(--gold);
}

.team-section {
  background: var(--bg-elevated);
  padding: 5rem 4rem;
}

.team-section__title {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 4rem;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.team-member {
  text-align: center;
}

.team-member__avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  background: var(--burgundy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--gold);
  border: 2px solid var(--gold-dim);
}

.team-member__name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.team-member__role {
  color: var(--gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.team-member__bio {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .story-section {
    padding: 3rem 2rem;
  }

  .team-section {
    padding: 3rem 2rem;
  }

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

/* ================================
   SERVICES PAGE - DETAILED
   ================================ */
.service-detail {
  padding: 4rem;
  max-width: 1000px;
  margin: 0 auto;
  border-bottom: 1px solid #222;
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail__header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.service-detail__num {
  font-family: 'DM Serif Display', serif;
  font-size: 4rem;
  color: var(--burgundy);
  -webkit-text-stroke: 1px var(--gold-dim);
  line-height: 1;
}

.service-detail__title {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  font-weight: 400;
}

.service-detail__desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 700px;
}

.service-detail__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.service-detail__images img {
  width: 100%;
  height: 250px;
  object-fit: contain;
}

.service-detail__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.service-detail__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  font-size: 0.95rem;
}

.service-detail__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .service-detail {
    padding: 3rem 2rem;
  }

  .service-detail__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .service-detail__num {
    font-size: 3rem;
  }

  .service-detail__title {
    font-size: 1.75rem;
  }

  .service-detail__list {
    grid-template-columns: 1fr;
  }

  .service-detail__images {
    grid-template-columns: 1fr;
  }

  .service-detail__images img {
    height: 200px;
  }
}

/* ================================
   CALL TO ACTION
   ================================ */
.cta {
  background: var(--burgundy);
  padding: 5rem 4rem;
  text-align: center;
}

.cta__title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 1rem;
}

.cta__text {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 2rem;
}

.cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--gold);
  color: var(--bg);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: 0.2s;
}

.cta__btn:hover {
  background: var(--cream);
}

/* ================================
   FOOTER
   ================================ */
.footer {
  background: var(--bg);
  padding: 4rem;
  border-top: 1px solid #222;
  margin-bottom: 60px;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
}

.footer__brand {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer__desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer__heading {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--cream);
}

.footer__bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid #222;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .footer {
    padding: 3rem 2rem;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}
