/* ============================================
   HUSS DRYWALL — Editorial Style Website
   Plum + Amber Color Palette
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --plum-900: #3B0A1F;
  --plum-800: #5B2C6F;
  --plum-700: #7D3C98;
  --plum-600: #8E44AD;
  --plum-500: #A569BD;
  --plum-100: #F4ECF7;
  --plum-50:  #FBF5FF;
  --amber-500: #F59E0B;
  --amber-400: #FBBF24;
  --amber-300: #FCD34D;
  --amber-600: #D97706;
  --cream: #FDF8F0;
  --cream-dark: #F5EDE0;
  --white: #FFFFFF;
  --black: #1A1A1A;
  --gray-900: #2D2D2D;
  --gray-700: #555555;
  --gray-500: #888888;
  --gray-300: #D1D5DB;
  --gray-100: #F3F4F6;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- 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);
  color: var(--gray-900);
  background-color: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.1;
  color: var(--plum-900);
}

.section__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber-600);
  margin-bottom: 16px;
}

.section__title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 20px;
}

.section__title--accent {
  color: var(--plum-700);
  font-style: italic;
}

.section__subtitle {
  font-size: 1.1rem;
  color: var(--gray-700);
  max-width: 560px;
  line-height: 1.7;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--amber-500);
  color: var(--plum-900);
  border-color: var(--amber-500);
}

.btn--primary:hover {
  background: var(--amber-400);
  border-color: var(--amber-400);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--plum-800);
  border-color: var(--plum-800);
}

.btn--ghost:hover {
  background: var(--plum-800);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--plum-800);
}

.btn--small {
  padding: 10px 20px;
  font-size: 0.85rem;
}

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

.btn--large {
  padding: 18px 36px;
  font-size: 1rem;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 248, 240, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(91, 44, 111, 0.08);
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(253, 248, 240, 0.95);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--plum-900);
}

.nav__logo-mark {
  width: 36px;
  height: 36px;
  background: var(--plum-800);
  color: var(--amber-400);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
}

.nav__logo-text {
  font-size: 1.1rem;
}

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

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  position: relative;
  padding: 4px 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--amber-500);
  transition: width var(--transition);
}

.nav__link:hover {
  color: var(--plum-800);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--cta {
  background: var(--plum-800);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
}

.nav__link--cta::after {
  display: none;
}

.nav__link--cta:hover {
  background: var(--plum-700);
  color: var(--white) !important;
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--plum-800);
}

/* --- Mobile Menu --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--plum-800);
  padding: 8px;
}

.mobile-menu__link {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--plum-900);
  padding: 12px 24px;
  transition: color var(--transition);
}

.mobile-menu__link:hover {
  color: var(--amber-600);
}

.mobile-menu__link--cta {
  font-family: var(--font-sans);
  font-size: 1rem;
  background: var(--plum-800);
  color: var(--white) !important;
  padding: 16px 36px;
  border-radius: 50px;
  margin-top: 16px;
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero__bg-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, var(--plum-900) 0%, var(--plum-800) 100%);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.04;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content {
  padding-right: 20px;
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber-600);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--amber-500);
}

.hero__headline {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--plum-900);
  margin-bottom: 24px;
}

.hero__headline--accent {
  color: var(--plum-600);
  font-style: italic;
}

.hero__subheadline {
  font-size: 1.15rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-700);
}

.hero__trust-item svg {
  color: var(--amber-500);
  flex-shrink: 0;
}

/* Hero Image */
.hero__image {
  position: relative;
}

.hero__image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 2;
}

.hero__image-frame img {
  width: 100%;
  height: 780px;
  object-fit: cover;
  display: block;
}

.hero__image-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--amber-500);
  border-radius: var(--radius-lg);
  z-index: 1;
  opacity: 0.4;
}

.hero__image-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--plum-800);
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius-md);
  z-index: 3;
  box-shadow: var(--shadow-lg);
}

.hero__image-badge-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--amber-400);
  line-height: 1;
  margin-bottom: 4px;
}

.hero__image-badge-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
}

/* --- Services Section --- */
.services {
  padding: 120px 0;
  background: var(--white);
}

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

.services__header .section__subtitle {
  margin: 0 auto;
}

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

.service-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  transition: all var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--amber-500);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(91, 44, 111, 0.1);
  background: var(--white);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  background: var(--plum-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--plum-800);
  margin-bottom: 20px;
  transition: all var(--transition);
}

.service-card:hover .service-card__icon {
  background: var(--plum-800);
  color: var(--amber-400);
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--plum-900);
  margin-bottom: 12px;
}

.service-card__desc {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.7;
}

/* --- About Section --- */
.about {
  padding: 120px 0;
  background: var(--cream);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__image-stack {
  position: relative;
}

.about__image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about__image-main img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  display: block;
}

.about__image-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 260px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream);
}

.about__image-secondary img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.about__experience-badge {
  position: absolute;
  top: -20px;
  right: 40px;
  background: var(--amber-500);
  color: var(--plum-900);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.about__experience-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.about__experience-text {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.about__text-col .section__title {
  margin-bottom: 24px;
}

.about__divider {
  width: 60px;
  height: 3px;
  background: var(--amber-500);
  margin-bottom: 28px;
  border-radius: 2px;
}

.about__body {
  font-size: 1.05rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.about__value {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-900);
}

.about__value svg {
  color: var(--amber-500);
  flex-shrink: 0;
}

/* --- Work Section --- */
.work {
  padding: 120px 0;
  background: var(--white);
}

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

.work__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

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

.work__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.work__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(59, 10, 31, 0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}

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

.work__item-overlay span {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
}

.work__item--large {
  grid-column: 1 / 8;
  grid-row: 1 / 2;
}

.work__item--large img {
  height: 380px;
}

.work__item--tall {
  grid-column: 8 / 13;
  grid-row: 1 / 3;
}

.work__item--tall img {
  height: 100%;
  min-height: 780px;
}

.work__item:not(.work__item--large):not(.work__item--tall) {
  grid-column: span 4;
}

.work__item:not(.work__item--large):not(.work__item--tall) img {
  height: 350px;
}

/* --- Why Us Section --- */
.why-us {
  padding: 120px 0;
  background: var(--plum-900);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.why-us__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-us .section__eyebrow {
  color: var(--amber-400);
}

.why-us .section__title {
  color: var(--white);
  margin-bottom: 20px;
}

.why-us .section__title--accent {
  color: var(--amber-400);
}

.why-us .section__subtitle {
  color: rgba(255,255,255,0.7);
  margin-bottom: 48px;
}

.why-us__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.why-us__item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.why-us__item-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--amber-500);
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.6;
}

.why-us__item-content h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.why-us__item-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

.why-us__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.why-us__image img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  display: block;
}

/* --- CTA Banner --- */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--plum-800) 0%, var(--plum-900) 100%);
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-banner__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 12px;
}

.cta-banner__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 420px;
  line-height: 1.7;
}

.cta-banner__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-banner__actions .btn--primary {
  background: var(--amber-500);
  border-color: var(--amber-500);
  color: var(--plum-900);
}

.cta-banner__actions .btn--primary:hover {
  background: var(--amber-400);
  border-color: var(--amber-400);
}

/* --- Contact Section --- */
.contact {
  padding: 120px 0;
  background: var(--cream);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact__desc {
  font-size: 1.05rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.contact__detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact__detail-icon {
  width: 44px;
  height: 44px;
  background: var(--plum-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--plum-800);
  flex-shrink: 0;
}

.contact__detail-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  margin-bottom: 2px;
}

.contact__detail-value {
  font-size: 0.95rem;
  color: var(--gray-900);
  line-height: 1.5;
  font-weight: 500;
}

.contact__detail-value--link {
  color: var(--plum-700);
}

.contact__detail-value--link:hover {
  color: var(--plum-900);
  text-decoration: underline;
}

.contact__map {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* Contact Form */
.contact__form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

.contact__form-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--plum-900);
  margin-bottom: 8px;
}

.contact__form-subtitle {
  font-size: 0.95rem;
  color: var(--gray-500);
  margin-bottom: 32px;
}

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

.form__group {
  margin-bottom: 20px;
}

.form__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.form__input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--gray-900);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
}

.form__input:focus {
  border-color: var(--plum-600);
  box-shadow: 0 0 0 3px rgba(142, 68, 173, 0.1);
}

.form__input::placeholder {
  color: var(--gray-500);
}

.form__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 24 24' fill='none' stroke='%23888888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

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

/* Form Success */
.contact__form-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success__icon {
  width: 72px;
  height: 72px;
  background: var(--plum-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--plum-700);
}

.form-success__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--plum-900);
  margin-bottom: 8px;
}

.form-success__desc {
  font-size: 0.95rem;
  color: var(--gray-700);
  margin-bottom: 24px;
}

/* --- Footer --- */
.footer {
  background: var(--plum-900);
  color: var(--white);
  padding: 80px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__logo-mark {
  width: 36px;
  height: 36px;
  background: var(--amber-500);
  color: var(--plum-900);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
}

.footer__tagline {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 300px;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer__link-title {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber-400);
  margin-bottom: 20px;
}

.footer__link-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link-list a,
.footer__link-list li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer__link-list a:hover {
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copyright {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.footer__location {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* --- Scroll Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__content {
    padding-right: 0;
    text-align: center;
  }

  .hero__eyebrow {
    justify-content: center;
  }

  .hero__subheadline {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__trust {
    justify-content: center;
  }

  .hero__image {
    max-width: 500px;
    margin: 0 auto;
  }

  .hero__image-frame img {
    height: 500px;
  }

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

  .about__inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about__image-stack {
    max-width: 480px;
  }

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

  .why-us__image {
    max-width: 480px;
  }

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

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

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__toggle {
    display: block;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero__image-badge {
    bottom: -16px;
    left: -8px;
    padding: 16px 20px;
  }

  .hero__image-badge-number {
    font-size: 2rem;
  }

  .services {
    padding: 80px 0;
  }

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

  .work {
    padding: 80px 0;
  }

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

  .work__item--large {
    grid-column: 1 / 3;
  }

  .work__item--large img {
    height: 280px;
  }

  .work__item--tall {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .work__item--tall img {
    min-height: 300px;
  }

  .work__item:not(.work__item--large):not(.work__item--tall) img {
    height: 220px;
  }

  .why-us {
    padding: 80px 0;
  }

  .cta-banner {
    padding: 60px 0;
  }

  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner__actions {
    justify-content: center;
  }

  .contact {
    padding: 80px 0;
  }

  .contact__form-card {
    padding: 32px 24px;
  }

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

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

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

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

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero__headline {
    font-size: 2.2rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

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

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

  .about__image-secondary {
    right: -16px;
    bottom: -24px;
    width: 180px;
  }

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

  .work__item--large,
  .work__item--tall {
    grid-column: 1 / 2;
  }

  .work__item--large img,
  .work__item--tall img {
    height: 260px;
    min-height: auto;
  }

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