/* ============================================
   LumaCasa Design Studio — Main Stylesheet
   lumacasadesign.com
   ============================================ */

/* --- CSS Variables --- */
:root {
  --ivory:       #f5f0e8;
  --ivory-light: #faf8f4;
  --ivory-mid:   #ede6d6;
  --copper:      #b5622a;
  --copper-light:#d4845a;
  --copper-dark: #8c4a1e;
  --bronze:      #6b4c2a;
  --bronze-light:#9a7050;
  --gold:        #c9973c;
  --gold-light:  #e0b96a;
  --dark:        #1a1008;
  --dark-mid:    #2d1e0a;
  --dark-warm:   #3d2a10;
  --text-dark:   #1a1008;
  --text-mid:    #5a4030;
  --text-light:  #8a7060;
  --white:       #ffffff;
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'DM Sans', 'Inter', sans-serif;
  --transition:  0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-sm:   0 2px 12px rgba(26,16,8,0.08);
  --shadow-md:   0 8px 32px rgba(26,16,8,0.14);
  --shadow-lg:   0 20px 60px rgba(26,16,8,0.20);
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-xl:   32px;
}

/* --- Reset & Base --- */
*, *::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(--ivory-light);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  line-height: 1.25;
  color: var(--text-dark);
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem);  font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }
h5 { font-size: 1rem;   font-weight: 600; }

p { color: var(--text-mid); font-size: 1.0625rem; }

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  color: var(--dark);
  margin-bottom: 1.25rem;
}

.section-subtitle {
  color: var(--text-mid);
  font-size: 1.0625rem;
  max-width: 560px;
  line-height: 1.75;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

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

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

/* --- Gold Divider --- */
.gold-divider {
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--copper), var(--gold));
  margin: 1.25rem 0;
  border-radius: 2px;
}
.gold-divider--center { margin: 1.25rem auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--copper) 0%, var(--copper-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(181,98,42,0.3);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--copper-light) 0%, var(--copper) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(181,98,42,0.4);
}

.btn--outline {
  border: 1.5px solid var(--copper);
  color: var(--copper);
  background: transparent;
}
.btn--outline:hover {
  background: var(--copper);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--light {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}
.btn--light:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--dark);
  color: var(--ivory);
}
.btn--dark:hover {
  background: var(--dark-mid);
  transform: translateY(-2px);
}

.btn svg { width: 18px; height: 18px; }

/* --- NAVBAR --- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.4rem 0;
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(250,248,244,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 0.9rem 0;
}

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

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.navbar__logo-icon {
  width: 36px;
  height: 36px;
}

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

.navbar__logo-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  transition: color var(--transition);
}

.navbar__logo-tagline {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--copper);
}

#navbar.hero-mode .navbar__logo-name { color: var(--white); }
#navbar.hero-mode .navbar__logo-tagline { color: rgba(255,255,255,0.75); }

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.navbar__nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.02em;
  position: relative;
  transition: color var(--transition);
}

.navbar__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--copper);
  transition: width var(--transition);
}

.navbar__nav a:hover,
.navbar__nav a.active { color: var(--copper); }
.navbar__nav a:hover::after,
.navbar__nav a.active::after { width: 100%; }

#navbar.hero-mode .navbar__nav a { color: rgba(255,255,255,0.9); }
#navbar.hero-mode .navbar__nav a:hover { color: var(--gold-light); }
#navbar.hero-mode .navbar__nav a::after { background: var(--gold-light); }

.navbar__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.navbar__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  transition: var(--transition);
  border-radius: 2px;
}
#navbar.hero-mode .navbar__burger span { background: var(--white); }

/* Mobile Nav */
.navbar__mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--ivory-light);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.navbar__mobile.open { display: flex; }

.navbar__mobile a {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--dark);
  transition: color var(--transition);
}
.navbar__mobile a:hover { color: var(--copper); }

.navbar__mobile-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-size: 2rem;
  color: var(--dark);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

/* --- HERO SECTION --- */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.05);
  transition: transform 12s ease;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,16,8,0.72) 0%,
    rgba(61,42,16,0.55) 50%,
    rgba(26,16,8,0.40) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 8rem 0 5rem;
  max-width: 700px;
}

.hero__award {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(201,151,60,0.18);
  border: 1px solid rgba(201,151,60,0.4);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.hero__award-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.hero__title {
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
  animation: scrollBounce 2s infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* --- STATS BAR --- */
.stats-bar {
  background: var(--dark);
  padding: 2rem 0;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid rgba(255,255,255,0.1);
}

.stats-bar__item {
  text-align: center;
  padding: 0.5rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stats-bar__item:last-child { border-right: none; }

.stats-bar__num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.stats-bar__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 0.4rem;
}

/* --- SECTIONS General --- */
section { padding: 6rem 0; }

/* --- INTRO / ABOUT TEASER --- */
#intro {
  background: var(--ivory-light);
}

.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.intro__image-wrap {
  position: relative;
}

.intro__img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.intro__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--copper);
  color: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.intro__badge-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}

.intro__badge-text {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 0.25rem;
}

.intro__content { padding-left: 1rem; }

.intro__list {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.intro__list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-mid);
}

.intro__list-item::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23b5622a'%3E%3Ccircle cx='10' cy='10' r='9' stroke='%23b5622a' stroke-width='1.5' fill='none'/%3E%3Cpath d='M6 10l3 3 5-5' stroke='%23b5622a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
  margin-top: 3px;
}

/* --- SERVICES PREVIEW --- */
#services-preview {
  background: var(--ivory-mid);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: default;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.service-card__img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.service-card__body {
  padding: 1.75rem 1.75rem 2rem;
}

.service-card__icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(181,98,42,0.12), rgba(201,151,60,0.12));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--copper);
}

.service-card__icon svg { width: 22px; height: 22px; }

.service-card__title {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.service-card__desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--copper);
  transition: gap var(--transition);
}
.service-card__link:hover { gap: 0.75rem; }

/* --- PORTFOLIO PREVIEW --- */
#portfolio-preview {
  background: var(--dark);
}

#portfolio-preview .section-label { color: var(--gold-light); }
#portfolio-preview .section-title { color: var(--white); }
#portfolio-preview .section-subtitle { color: rgba(255,255,255,0.6); }

.portfolio__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  gap: 2rem;
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

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

.portfolio__item:first-child {
  grid-column: 1 / 3;
  grid-row: 1;
}

.portfolio__item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.portfolio__item:first-child img { height: 460px; }

.portfolio__item:hover img { transform: scale(1.06); }

.portfolio__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,16,8,0.85) 0%, transparent 55%);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: var(--transition);
}

.portfolio__item-category {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}

.portfolio__item-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 600;
}

/* --- WHY CHOOSE US --- */
#why-us {
  background: var(--ivory-light);
}

.why-us__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 1rem;
}

.why-us__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.feature-card {
  background: var(--ivory-mid);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: var(--transition);
}

.feature-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.feature-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--copper), var(--copper-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 1rem;
}

.feature-card__icon svg { width: 24px; height: 24px; }

.feature-card__title {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.feature-card__desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.65;
}

.why-us__img-wrap {
  position: relative;
}

.why-us__img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.why-us__quote {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background: var(--white);
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  max-width: 280px;
  border-left: 3px solid var(--copper);
}

.why-us__quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.0625rem;
  color: var(--dark);
  line-height: 1.5;
}

.why-us__quote-author {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--copper);
  letter-spacing: 0.05em;
}

/* --- PROCESS SECTION --- */
#process {
  background: var(--ivory-mid);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  position: relative;
}

.process__steps::before {
  content: '';
  position: absolute;
  top: 2.2rem; left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--copper), var(--gold), var(--copper), transparent);
  opacity: 0.4;
}

.process-step {
  text-align: center;
  padding: 2rem 1.25rem;
}

.process-step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--copper), var(--copper-dark));
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(181,98,42,0.3);
}

.process-step__title {
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 0.6rem;
}

.process-step__desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* --- TESTIMONIALS --- */
#testimonials {
  background: var(--white);
}

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

.testimonial-card {
  background: var(--ivory-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--copper);
  opacity: 0.15;
  position: absolute;
  top: 0.5rem; left: 1.5rem;
  line-height: 1;
}

.testimonial-card__text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
  color: var(--gold);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.testimonial-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--copper), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--dark);
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 1px;
}

/* --- CTA BANNER --- */
#cta-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-warm) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,151,60,0.12) 0%, transparent 70%);
  pointer-events: none;
}

#cta-banner .section-label { color: var(--gold-light); }
#cta-banner .section-title { color: var(--white); }
#cta-banner .section-subtitle { color: rgba(255,255,255,0.65); margin: 0 auto 2.5rem; }

.cta__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --- FOOTER --- */
footer {
  background: var(--dark);
  padding: 5rem 0 2rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.footer__brand-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.footer__brand-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 1rem;
}

.footer__brand-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.footer__socials {
  display: flex;
  gap: 0.875rem;
}

.footer__social-link {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer__social-link:hover {
  border-color: var(--copper);
  color: var(--copper);
  background: rgba(181,98,42,0.12);
}

.footer__social-link svg { width: 16px; height: 16px; }

.footer__col-title {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.25rem;
}

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

.footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--copper-light); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.footer__contact-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--copper-light);
}

.footer__contact-icon svg { width: 14px; height: 14px; }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

.footer__legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer__legal-links a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.footer__legal-links a:hover { color: var(--copper-light); }

/* --- Cookie Banner --- */
#cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 680px;
  width: calc(100% - 2rem);
  border: 1px solid rgba(201,151,60,0.25);
}

#cookie-banner.hidden { display: none; }

.cookie__text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.55;
  flex: 1;
}

.cookie__text a {
  color: var(--gold-light);
  text-decoration: underline;
}

.cookie__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  padding: 9rem 0 4rem;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-warm) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(201,151,60,0.15) 0%, transparent 60%);
}

.page-hero__label { color: var(--gold-light); margin-bottom: 0.75rem; }
.page-hero__title { color: var(--white); margin-bottom: 1rem; }
.page-hero__sub   { color: rgba(255,255,255,0.6); max-width: 560px; margin: 0 auto; }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
}

.breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--gold-light); }

/* --- Form --- */
.form-group { margin-bottom: 1.5rem; }

label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

input, textarea, select {
  width: 100%;
  padding: 0.875rem 1.1rem;
  border: 1.5px solid var(--ivory-mid);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(181,98,42,0.12);
}

textarea { resize: vertical; min-height: 140px; }

/* --- Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s 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; }
.fade-up--delay-4 { transition-delay: 0.4s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .intro__grid    { grid-template-columns: 1fr; gap: 3rem; }
  .intro__content { padding-left: 0; }
  .why-us__grid   { grid-template-columns: 1fr; gap: 3rem; }
  .footer__top    { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stats-bar__item:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
  .navbar__nav    { display: none; }
  .navbar__cta .btn { display: none; }
  .navbar__burger { display: flex; }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }

  section { padding: 4rem 0; }

  .services__grid      { grid-template-columns: 1fr; }
  .portfolio__grid     { grid-template-columns: 1fr; }
  .portfolio__item:first-child { grid-column: 1; }
  .portfolio__item:first-child img { height: 260px; }
  .portfolio__item img { height: 220px; }
  .portfolio__header   { flex-direction: column; align-items: flex-start; }
  .why-us__features    { grid-template-columns: 1fr; }
  .process__steps      { grid-template-columns: 1fr 1fr; }
  .testimonials__grid  { grid-template-columns: 1fr; }
  .footer__top         { grid-template-columns: 1fr; }
  .footer__bottom      { flex-direction: column; text-align: center; }
  .footer__legal-links { justify-content: center; }

  #cookie-banner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .cookie__actions { flex-direction: column; width: 100%; }

  .intro__badge {
    bottom: -1rem;
    right: 0.5rem;
  }

  .why-us__quote { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .process__steps  { grid-template-columns: 1fr; }
  .hero__actions   { flex-direction: column; }
}
