/* ============================================
   SUMMIT & STONE — LUXURY EDITORIAL STYLESHEET
   ============================================ */

:root {
  --navy: #1B2D4F;
  --navy-deep: #111E36;
  --cream: #FAF6F1;
  --cream-warm: #F5EDE3;
  --terracotta: #A0522D;
  --terracotta-light: #C4764D;
  --stone: #8B8B83;
  --stone-light: #B5B5AC;
  --gold: #C5A55A;
  --gold-light: #D4BA7A;
  --white: #FFFFFF;
  --black: #0A0A0A;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Cormorant Garamond', Garamond, 'Times New Roman', serif;

  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

  --section-pad: clamp(80px, 10vw, 160px);
  --side-pad: clamp(24px, 5vw, 80px);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.15vw, 20px);
  font-weight: 400;
  line-height: 1.7;
  color: var(--navy);
  background: var(--cream);
  overflow-x: hidden;
}

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

::selection {
  background: var(--gold);
  color: var(--navy-deep);
}

/* ============ SHARED ============ */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: clamp(13px, 0.85vw, 15px);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}

.section-tag--light { color: var(--gold-light); }

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 72px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.section-heading--light { color: var(--cream); }

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ NAVIGATION ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px var(--side-pad);
  transition: all 0.5s var(--ease-smooth);
}

.nav.scrolled {
  background: rgba(27, 45, 79, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px var(--side-pad);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: height 0.4s var(--ease-smooth);
}

.nav.scrolled .nav__logo img { height: 40px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__links a {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  transition: color 0.3s;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out-expo);
}

.nav__links a:hover::after { width: 100%; }

.nav__cta {
  padding: 10px 28px !important;
  border: 1px solid rgba(197, 165, 90, 0.5);
  transition: all 0.4s var(--ease-smooth) !important;
}

.nav__cta:hover {
  background: var(--gold);
  color: var(--navy-deep) !important;
  border-color: var(--gold);
}

.nav__cta::after { display: none !important; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  z-index: 1001;
}

.nav__burger span {
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.4s var(--ease-smooth);
  transform-origin: center;
}

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

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
}

.hero__parallax {
  position: absolute;
  inset: -80px 0 0 0;
  z-index: 0;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(17, 30, 54, 0.3) 0%,
      rgba(17, 30, 54, 0.1) 40%,
      rgba(17, 30, 54, 0.5) 70%,
      rgba(17, 30, 54, 0.85) 100%
    );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--side-pad) 100px;
  max-width: 900px;
}

.hero__tag {
  font-family: var(--font-body);
  font-size: clamp(12px, 0.8vw, 14px);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s var(--ease-out-expo) 0.3s forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 24px;
}

.hero__line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: heroFadeUp 1s var(--ease-out-expo) 0.5s forwards;
}

.hero__line--italic {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-light);
  animation-delay: 0.7s;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(18px, 1.4vw, 24px);
  font-weight: 300;
  color: rgba(250, 246, 241, 0.8);
  margin-bottom: 40px;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s var(--ease-out-expo) 0.9s forwards;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  border: 1px solid var(--gold);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.5s var(--ease-smooth);
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s var(--ease-out-expo) 1.1s forwards;
}

.hero__btn:hover {
  background: var(--gold);
  color: var(--navy-deep);
}

.hero__btn svg { transition: transform 0.3s var(--ease-smooth); }
.hero__btn:hover svg { transform: translate(3px, -3px); }

.hero__scroll {
  position: absolute;
  right: var(--side-pad);
  bottom: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero__scroll span {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 246, 241, 0.6);
  writing-mode: vertical-rl;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold-light), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============ ABOUT INTRO ============ */
.about-intro {
  padding: var(--section-pad) var(--side-pad);
  background: var(--cream);
}

.about-intro__inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.about-intro__image-col { position: relative; }

.about-intro__image-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.about-intro__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

.about-intro__image-frame:hover img { transform: scale(1.03); }

.about-intro__image-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gold);
  z-index: -1;
}

.about-intro__text-col .section-heading {
  margin-bottom: 20px;
}

.about-intro__divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 28px;
}

.about-intro__lead {
  font-size: clamp(20px, 1.5vw, 26px);
  font-weight: 500;
  line-height: 1.5;
  color: var(--navy);
  margin-bottom: 20px;
}

.about-intro__text-col p {
  color: var(--stone);
  margin-bottom: 16px;
  font-size: clamp(16px, 1.1vw, 19px);
}

.about-intro__stats {
  display: flex;
  gap: 48px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(139, 139, 131, 0.2);
}

.stat { text-align: left; }

.stat__number {
  font-family: var(--font-display);
  font-size: clamp(36px, 3vw, 52px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}

.stat__plus, .stat__percent {
  font-family: var(--font-display);
  font-size: clamp(24px, 2vw, 36px);
  font-weight: 400;
  color: var(--gold);
}

.stat__label {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 8px;
}

/* ============ SERVICES ============ */
.services {
  padding: var(--section-pad) var(--side-pad);
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.services__header {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
}

.services__header .section-heading { color: var(--cream); }

.services__intro {
  font-size: clamp(17px, 1.15vw, 20px);
  color: var(--stone-light);
  margin-top: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.services__grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: rgba(250, 246, 241, 0.04);
  border: 1px solid rgba(197, 165, 90, 0.12);
  overflow: hidden;
  transition: all 0.5s var(--ease-smooth);
}

.service-card:hover {
  border-color: rgba(197, 165, 90, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-card__images {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.service-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.7s var(--ease-out-expo);
}

.service-card__img--back { opacity: 0; transform: scale(1.08); }

.service-card:hover .service-card__img--front { opacity: 0; transform: scale(1.08); }
.service-card:hover .service-card__img--back { opacity: 1; transform: scale(1); }

.service-card__content { padding: 32px; }

.service-card__number {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 12px;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 1.8vw, 30px);
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 14px;
  line-height: 1.2;
}

.service-card__content p {
  color: var(--stone-light);
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.65;
  margin-bottom: 24px;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: all 0.3s var(--ease-smooth);
}

.service-card__link:hover { color: var(--gold-light); }
.service-card__link svg { transition: transform 0.3s; }
.service-card__link:hover svg { transform: translateX(4px); }

/* ============ PORTFOLIO ============ */
.portfolio {
  padding: var(--section-pad) var(--side-pad);
  background: var(--cream);
}

.portfolio__header {
  text-align: center;
  margin-bottom: 32px;
}

.portfolio__filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.portfolio__filter {
  padding: 10px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  border: 1px solid transparent;
  transition: all 0.4s var(--ease-smooth);
}

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

.portfolio__filter.active {
  color: var(--navy);
  border-color: var(--navy);
}

.portfolio__grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  grid-auto-flow: dense;
}

.portfolio__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  transition: opacity 0.5s, transform 0.5s;
}

.portfolio__item[data-size="wide"] {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

.portfolio__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

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

.portfolio__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 30, 54, 0.9) 0%, rgba(17, 30, 54, 0) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s var(--ease-smooth);
}

.portfolio__item:hover .portfolio__item-overlay { opacity: 1; }

.portfolio__item-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.portfolio__item-overlay h4 {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.4vw, 24px);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.2;
}

.portfolio__item.hidden {
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
  position: absolute;
}

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 10, 10, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-smooth);
}

.lightbox.active { opacity: 1; pointer-events: all; }

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 36px;
  color: var(--cream);
  font-weight: 300;
  z-index: 2001;
  transition: color 0.3s;
}

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

.lightbox__img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  transform: scale(0.9);
  transition: transform 0.5s var(--ease-out-expo);
}

.lightbox.active .lightbox__img { transform: scale(1); }

.lightbox__caption {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--stone-light);
  margin-top: 20px;
  letter-spacing: 0.05em;
}

/* ============ PROCESS ============ */
.process {
  padding: var(--section-pad) var(--side-pad);
  background: var(--cream-warm);
  position: relative;
}

.process__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.process__header {
  text-align: center;
  margin-bottom: 64px;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.process__step {
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.process__step-number {
  font-family: var(--font-display);
  font-size: clamp(56px, 5vw, 80px);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  line-height: 1;
  margin-bottom: 20px;
}

.process__step-line {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 20px;
}

.process__step-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.6vw, 28px);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
}

.process__step p {
  font-size: clamp(15px, 1vw, 17px);
  color: var(--stone);
  line-height: 1.65;
}

/* ============ TEAM ============ */
.team {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team__parallax {
  position: absolute;
  inset: -60px 0 0 0;
  z-index: 0;
}

.team__parallax img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(17, 30, 54, 0.82);
}

.team__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  padding: var(--section-pad) var(--side-pad);
}

.team__divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 28px auto;
}

.team__text {
  font-size: clamp(17px, 1.2vw, 22px);
  color: rgba(250, 246, 241, 0.85);
  margin-bottom: 16px;
  font-weight: 300;
  line-height: 1.7;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  padding: var(--section-pad) var(--side-pad);
  background: var(--cream);
}

.testimonials__inner {
  max-width: 900px;
  margin: 0 auto;
}

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

.testimonials__slider {
  position: relative;
  min-height: 280px;
}

.testimonial {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s var(--ease-out-expo);
  pointer-events: none;
  text-align: center;
}

.testimonial.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
  position: relative;
}

.testimonial__icon {
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 24px;
}

.testimonial__text {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 30px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--navy);
  margin-bottom: 32px;
}

.testimonial__name {
  display: block;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.05em;
}

.testimonial__location {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--stone);
  margin-top: 4px;
  letter-spacing: 0.03em;
}

.testimonials__nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.testimonials__dot {
  width: 40px;
  height: 3px;
  background: var(--stone-light);
  transition: all 0.4s var(--ease-smooth);
}

.testimonials__dot.active {
  background: var(--gold);
  width: 60px;
}

/* ============ CONTACT ============ */
.contact {
  padding: var(--section-pad) var(--side-pad);
  background: var(--navy-deep);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.contact__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.contact .section-heading { color: var(--cream); }

.contact__form {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 18px 0 10px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(181, 181, 172, 0.3);
  color: var(--cream);
  font-size: 17px;
  font-weight: 400;
  transition: border-color 0.3s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-group select { cursor: pointer; }

.form-group select option {
  background: var(--navy-deep);
  color: var(--cream);
}

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

.form-group label {
  position: absolute;
  top: 18px;
  left: 0;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--stone-light);
  letter-spacing: 0.04em;
  transition: all 0.3s var(--ease-smooth);
  pointer-events: none;
}

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

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group select:focus ~ label,
.form-group select:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: 0;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact__submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 44px;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  transition: all 0.4s var(--ease-smooth);
  margin-top: 12px;
  align-self: flex-start;
}

.contact__submit:hover {
  background: transparent;
  color: var(--gold);
}

.contact__submit svg { transition: transform 0.3s; }
.contact__submit:hover svg { transform: translate(3px, -3px); }

.contact__info-col {
  padding-top: 60px;
}

.contact__info-card {
  background: rgba(250, 246, 241, 0.04);
  border: 1px solid rgba(197, 165, 90, 0.15);
  padding: 40px;
}

.contact__info-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 16px;
}

.contact__info-divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 28px;
}

.contact__info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact__info-item svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 4px;
}

.contact__info-label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact__info-item a,
.contact__info-item span {
  color: var(--cream);
  font-size: 16px;
  line-height: 1.5;
  transition: color 0.3s;
}

.contact__info-item a:hover { color: var(--gold-light); }

.contact__service-areas {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(181, 181, 172, 0.15);
}

.contact__areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.contact__areas-list span {
  padding: 6px 16px;
  border: 1px solid rgba(181, 181, 172, 0.2);
  color: var(--stone-light);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.contact__license {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(181, 181, 172, 0.15);
}

.contact__license span {
  font-size: 13px;
  color: var(--stone);
  letter-spacing: 0.04em;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--black);
  padding: 60px var(--side-pad) 32px;
}

.footer__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 0.7fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(181, 181, 172, 0.1);
}

.footer__logo {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  margin-bottom: 16px;
}

.footer__tagline {
  font-family: var(--font-body);
  font-size: 16px;
  font-style: italic;
  color: var(--stone);
  max-width: 280px;
}

.footer__nav h4,
.footer__social h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer__nav li { margin-bottom: 10px; }

.footer__nav a {
  font-size: 15px;
  color: var(--stone);
  transition: color 0.3s;
}

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

.footer__social-links {
  display: flex;
  gap: 16px;
}

.footer__social-links a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(181, 181, 172, 0.2);
  color: var(--stone);
  transition: all 0.3s var(--ease-smooth);
}

.footer__social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 13px;
  color: var(--stone);
  letter-spacing: 0.03em;
}

/* ============ MOBILE RESPONSIVE ============ */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: 1fr; max-width: 600px; margin-left: auto; margin-right: auto; }
  .portfolio__grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio__item[data-size="wide"] { grid-column: span 2; }
  .process__steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .contact__inner { grid-template-columns: 1fr; }
  .contact__info-col { padding-top: 0; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--navy-deep);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    padding: 40px;
    transition: right 0.5s var(--ease-out-expo);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.4);
  }

  .nav__links.open { right: 0; }

  .nav__links a {
    font-size: 20px;
    letter-spacing: 0.12em;
  }

  .nav__burger { display: flex; }

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

  .about-intro__image-col { max-width: 400px; margin: 0 auto; }

  .about-intro__stats {
    gap: 32px;
    flex-wrap: wrap;
  }

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

  .portfolio__item[data-size="wide"] {
    grid-column: span 2;
  }

  .process__steps { grid-template-columns: 1fr; gap: 48px; }

  .form-row { grid-template-columns: 1fr; }

  .footer__top { grid-template-columns: 1fr; gap: 32px; }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .hero__content { padding-bottom: 80px; }
  .hero__scroll { display: none; }
}

@media (max-width: 480px) {
  .hero__title { font-size: clamp(36px, 10vw, 56px); }

  .portfolio__grid { grid-template-columns: 1fr; }
  .portfolio__item[data-size="wide"] { grid-column: span 1; aspect-ratio: 16/9; }
  .portfolio__item { aspect-ratio: 4/3; }

  .about-intro__stats { flex-direction: column; gap: 20px; }

  .testimonial__text { font-size: 20px; }
}
