/* A Carpenter - Bespoke Joinery & Carpentry */

/* ---- VARIABLES ---- */
:root {
  --bg: #1a1614;
  --bg-alt: #231f1b;
  --surface: #2b2521;
  --surface-hover: #332d28;
  --border: #3a332e;
  --text: #c8c4bc;
  --text-muted: #9e9893;
  --heading: #f0ece4;
  --gold: #c8a456;
  --gold-hover: #d4b46a;
  --gold-muted: rgba(200, 164, 86, 0.12);
  --white: #fff;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 2px 16px rgba(0,0,0,0.25);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.35);
  --header-h: 72px;
}

/* ---- LIGHT THEME ---- */
[data-theme="light"] {
  --bg: #faf8f5;
  --bg-alt: #f0ece4;
  --surface: #fff;
  --surface-hover: #f5f2ed;
  --border: #e0dbd3;
  --text: #4a4640;
  --text-muted: #8a857e;
  --heading: #2a2520;
  --gold: #a68745;
  --gold-hover: #b8953f;
  --gold-muted: rgba(166, 135, 69, 0.1);
  --shadow: 0 2px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.1);
}

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

html { scroll-behavior: smooth; }

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

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-hover); }

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

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ---- HEADER ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 22, 20, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: -1;
}

[data-theme="light"] .header::before {
  background: rgba(250, 248, 245, 0.92);
}

.header--scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

[data-theme="light"] .header--scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--heading);
  font-family: 'Josefin Sans', var(--font-body);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.header__brand img { height: 48px; width: auto; }

.header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header__nav a {
  color: var(--text-muted);
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all 0.2s;
  letter-spacing: 0.2px;
}

.header__nav a:hover {
  color: var(--heading);
  background: var(--gold-muted);
}

.header__nav a.active {
  color: var(--gold);
  background: var(--gold-muted);
}

.header__phone {
  color: var(--gold) !important;
  font-weight: 600 !important;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.theme-toggle {
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.theme-toggle:hover { color: var(--gold); border-color: var(--gold); }
.icon-moon { display: none; }
[data-theme="light"] .icon-sun { display: none; }
[data-theme="light"] .icon-moon { display: block; }

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

.header__hamburger span {
  width: 22px;
  height: 2px;
  background: var(--heading);
  border-radius: 2px;
  transition: all 0.3s;
}

.header__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.header__hamburger.open span:nth-child(2) { opacity: 0; }
.header__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  text-decoration: none;
}

.btn--gold {
  background: var(--gold);
  color: #1a1500;
}
.btn--gold:hover { background: var(--gold-hover); color: #1a1500; }

.btn--outline {
  background: transparent;
  color: var(--heading);
  border: 1px solid var(--border);
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }

/* Hero-specific outline button - visible on dark backgrounds */
.btn--outline-hero {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn--outline-hero:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--gold);
  color: var(--gold);
}

[data-theme="light"] .btn--outline {
  border-color: var(--border);
  color: var(--heading);
}
[data-theme="light"] .btn--outline:hover { border-color: var(--gold); color: var(--gold); }

/* ---- HERO (Homepage) ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,22,20,0.85) 0%, rgba(26,22,20,0.5) 50%, rgba(26,22,20,0.75) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 0 24px;
  margin-left: max(24px, calc((100vw - 1140px) / 2 + 24px));
}

.hero__label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--white);
}

.hero__text {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero__scroll span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.4);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ---- PAGE HERO (Sub-pages) ---- */
.page-hero {
  position: relative;
  padding: 160px 0 60px;
  color: var(--white);
  overflow: hidden;
  text-align: center;
}

.page-hero + .section {
  padding-top: 60px;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,22,20,0.88) 0%, rgba(26,22,20,0.75) 100%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-hero__content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--white);
}

.page-hero__content p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
}

/* ---- TRUST BAR ---- */
.trust {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

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

.trust__item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust__item i {
  font-size: 20px;
  color: var(--gold);
  width: 44px;
  height: 44px;
  background: var(--gold-muted);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust__item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading);
}

.trust__item span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ---- SECTIONS ---- */
.section {
  padding: 100px 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section__header {
  text-align: center;
  margin-bottom: 56px;
}

.section__label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 12px;
}

.section__header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--heading);
  margin-bottom: 14px;
}

.section__desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.section__cta {
  text-align: center;
  margin-top: 48px;
}

/* ---- SERVICES GRID (Homepage preview) ---- */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.service:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service__img {
  height: 200px;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s;
}

.service:hover .service__img {
  transform: scale(1.03);
}

.service__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service h3,
.service h2 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--heading);
  margin-bottom: 10px;
}

.service p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.service__body > p + p {
  margin-top: 12px;
}

.service__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  transition: gap 0.2s;
}

.service:hover .service__link { gap: 10px; }

/* ---- SERVICES FULL (Services page - horizontal layout) ---- */
.services--full {
  grid-template-columns: 1fr;
  gap: 48px;
}

.service--horizontal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service--horizontal:hover {
  transform: none;
}

.service--horizontal.service--reverse {
  direction: rtl;
}

.service--horizontal.service--reverse > * {
  direction: ltr;
}

.service__img--large {
  height: 100%;
  min-height: 360px;
}

.service--horizontal .service__body {
  padding: 40px;
}

.service--horizontal h2 {
  font-size: clamp(1.5rem, 2.5vw, 1.8rem);
  margin-bottom: 16px;
}

.service--horizontal p {
  font-size: 15px;
}

.service__list {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.service__list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: var(--text);
  line-height: 2;
}

.service__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.service--horizontal .btn {
  margin-top: 8px;
  align-self: flex-start;
}

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

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

.gallery__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s;
}

.gallery__item:hover .gallery__caption {
  opacity: 1;
  transform: translateY(0);
}

/* ---- LIGHTBOX ---- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox.active {
  display: flex;
}

.lightbox__wrap {
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  animation: lbFadeIn 0.25s ease;
}

@keyframes lbFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.lightbox__caption {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
  margin-top: 16px;
  text-align: center;
}

.lightbox__counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 36px;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
  z-index: 10;
}

.lightbox__close:hover { color: #fff; }

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 10;
}

.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.lightbox__prev { left: 24px; }
.lightbox__next { right: 24px; }

@media (max-width: 640px) {
  .lightbox__prev,
  .lightbox__next {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  .lightbox__prev { left: 12px; }
  .lightbox__next { right: 12px; }
  .lightbox__close { top: 12px; right: 16px; }
}

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

.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s;
}

.testimonial:hover {
  border-color: var(--gold);
}

.testimonial__stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  font-size: 14px;
}

.testimonial__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  flex: 1;
}

.testimonial__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.testimonial__author strong {
  font-size: 14px;
  color: var(--heading);
}

.testimonial__author span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ---- AREAS COVERED ---- */
.areas__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.areas__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--heading);
  transition: border-color 0.2s;
}

.areas__item i {
  color: var(--gold);
  font-size: 12px;
}

.areas__item:hover {
  border-color: var(--gold);
}

.areas__note {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- ABOUT ---- */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about__image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  color: var(--heading);
  margin-bottom: 20px;
}

.about__text p {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about__text .btn { margin-top: 12px; }

/* ---- CTA ---- */
.cta {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta__inner {
  text-align: center;
  padding: 80px 24px;
  max-width: 600px;
  margin: 0 auto;
}

.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--heading);
  margin-bottom: 14px;
}

.cta p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- CONTACT ---- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact__details { display: flex; flex-direction: column; gap: 20px; }

.contact__row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact__icon {
  width: 42px;
  height: 42px;
  background: var(--gold-muted);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 16px;
}

.contact__row strong {
  display: block;
  font-size: 13px;
  color: var(--heading);
  margin-bottom: 2px;
}

.contact__row a,
.contact__row span {
  font-size: 14px;
  color: var(--text-muted);
}

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

.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 260px;
  border: 1px solid var(--border);
}

.contact__map iframe {
  display: block;
}

.contact__side {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ---- FORM ---- */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form__group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--heading);
}

.form__group input,
.form__group select,
.form__group textarea {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--heading);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}

.form__group input::placeholder,
.form__group textarea::placeholder {
  color: var(--text-muted);
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--gold);
}

.form__group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238a8580' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

[data-theme="light"] .form__group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234a4640' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
}

.form__group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.form-status {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 0.95rem;
  text-align: center;
}
.form-status--success {
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}
.form-status--error {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}
[data-theme="light"] .form-status--success {
  background: #f0fdf4;
  color: #16a34a;
  border-color: #bbf7d0;
}
[data-theme="light"] .form-status--error {
  background: #fef2f2;
  color: #dc2626;
  border-color: #fecaca;
}

/* ---- FOOTER ---- */
.footer {
  background: #0a0a09;
  padding: 56px 0 0;
}

[data-theme="light"] .footer {
  background: #1e1c18;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__brand img { opacity: 0.9; height: 160px; width: 160px; align-self: flex-start; margin-left: -35px; }

.footer__brand h3 {
  font-family: 'Josefin Sans', var(--font-body);
  color: var(--white);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.footer__brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.footer__phone {
  color: var(--gold) !important;
  font-weight: 600;
  font-size: 16px;
  margin-top: 4px;
}

.footer__col h4 {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 10px; }
.footer__col a { color: rgba(255,255,255,0.6); font-size: 14px; }
.footer__col a:hover { color: var(--gold); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 48px;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.footer__credit a {
  color: rgba(255,255,255,0.5);
}
.footer__credit a:hover { color: var(--gold); }

/* ---- LIGHT MODE IMAGE SHADOWS ---- */
[data-theme="light"] .service { box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
[data-theme="light"] .service:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
[data-theme="light"] .gallery__item { box-shadow: 0 2px 12px rgba(0,0,0,0.10); }
[data-theme="light"] .about__image { box-shadow: 0 2px 12px rgba(0,0,0,0.10); border-radius: var(--radius-lg); }

/* ---- FADE IN ---- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .header__nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    width: 100vw;
    height: calc(100vh - var(--header-h));
    height: calc(100dvh - var(--header-h));
    background: var(--bg);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    z-index: 9999;
    overflow-y: auto;
  }

  .header__nav.open { display: flex; }
  .header__nav a { padding: 14px 16px; font-size: 16px; }

  .header__hamburger { display: flex; }

  .hero__content { margin-left: 24px; }

  .trust__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

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

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

  .service--horizontal.service--reverse {
    direction: ltr;
  }

  .service__img--large {
    min-height: 240px;
  }

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

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

  .gallery__item--wide { grid-column: span 1; }

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

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

  .about {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__image img { height: 320px; }

  .contact { grid-template-columns: 1fr; }
  .contact__map { min-height: 300px; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 6px; text-align: center; }

  .section { padding: 72px 0; }

  .page-hero { padding: 130px 0 60px; }
}

@media (max-width: 480px) {
  .hero { min-height: 90vh; }
  .hero__title { font-size: 2rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .trust__grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .gallery--preview { grid-template-columns: 1fr; }
  .gallery__item img { height: 220px; }
  .cta__actions { flex-direction: column; align-items: center; }
  .cta__actions .btn { width: 100%; justify-content: center; }
  .form__row { grid-template-columns: 1fr; }
  .areas__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 24px; }
}
