/* ========================================
   THE WRAP SHOP — Editorial Auto Repair Site
   Color Palette: Forest Green + Off-White + Gold
======================================== */

/* --- CSS Custom Properties --- */
:root {
  --green-deep: #1B4332;
  --green-mid: #2D6A4F;
  --green-light: #40916C;
  --green-pale: #B7E4C7;
  --cream: #FEFAE0;
  --cream-dark: #F5F0D8;
  --off-white: #FAF9F6;
  --white: #FFFFFF;
  --gold: #D4A84B;
  --gold-light: #E8C97A;
  --gold-dark: #B8912E;
  --charcoal: #1C1C1C;
  --gray-900: #2C2C2C;
  --gray-700: #4A4A4A;
  --gray-500: #6B6B6B;
  --gray-300: #B0B0B0;
  --gray-100: #E8E8E8;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

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

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  background-color: var(--off-white);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1280px;
  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(--green-deep);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(3rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.15rem; font-family: var(--font-sans); font-weight: 600; color: var(--green-deep); }

.accent-italic {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-dark);
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  margin-bottom: 24px;
}

.section-title--light,
.section-desc--light {
  color: var(--off-white);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 560px;
  line-height: 1.8;
}

.section-desc--light {
  color: rgba(250, 249, 246, 0.7);
  max-width: 480px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  text-decoration: none;
}

.btn--gold {
  background: var(--gold);
  color: var(--green-deep);
  border-color: var(--gold);
}

.btn--gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 168, 75, 0.3);
}

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

.btn--outline:hover {
  background: var(--green-deep);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-light {
  background: transparent;
  color: var(--off-white);
  border-color: rgba(250, 249, 246, 0.5);
}

.btn--outline-light:hover {
  background: var(--off-white);
  color: var(--green-deep);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 10px 18px;
  font-size: 0.82rem;
}

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

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

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(27, 67, 50, 0.08);
  transition: all 0.4s var(--ease-out);
}

.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(27, 67, 50, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--green-deep);
  text-decoration: none;
}

.logo--light {
  color: var(--off-white);
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 6px;
  display: block;
  position: relative;
}

.logo-mark::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  background: var(--green-deep);
  border-radius: 2px;
}

.logo-mark--light::after {
  background: var(--off-white);
}

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

.nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-700);
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.3s;
}

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

.nav a:hover {
  color: var(--green-deep);
}

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

.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-deep);
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

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

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

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--green-deep);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
}

.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--cream);
  font-weight: 500;
  transition: color 0.3s;
}

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

/* --- Hero --- */
.hero {
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 60px;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(45, 106, 79, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 20px;
}

.hero-title {
  margin-bottom: 28px;
  line-height: 1.05;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

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

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--gray-500);
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--gray-300);
}

.hero-visual {
  position: relative;
  min-height: 600px;
}

.hero-img-main {
  width: 100%;
  height: 600px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

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

.hero-img-float {
  position: absolute;
  bottom: -40px;
  left: -60px;
  width: 260px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(27, 67, 50, 0.2);
  background: var(--white);
}

.hero-img-float img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.float-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-deep);
  background: var(--white);
}

.hero-accent-line {
  position: absolute;
  top: 40px;
  right: -30px;
  width: 80px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--gray-500);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: float 2s ease-in-out infinite;
}

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

/* --- Marquee --- */
.marquee-strip {
  background: var(--green-deep);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  gap: 24px;
  align-items: center;
  animation: marquee 25s linear infinite;
}

.marquee-track span {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.marquee-track .dot {
  font-size: 0.6rem;
  color: var(--gold);
}

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

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

.services-header {
  text-align: center;
  margin-bottom: 72px;
}

.services-header .section-desc {
  margin: 0 auto;
}

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

.service-card {
  background: var(--white);
  border-radius: 8px;
  padding: 40px 32px;
  position: relative;
  border: 1px solid rgba(27, 67, 50, 0.06);
  transition: all 0.4s var(--ease-out);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-out);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(27, 67, 50, 0.1);
  border-color: transparent;
}

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

.service-card--featured {
  background: var(--green-deep);
  border-color: transparent;
}

.service-card--featured h3,
.service-card--featured .service-card-num,
.service-card--featured p {
  color: var(--cream);
}

.service-card--featured .link-arrow {
  color: var(--gold);
}

.service-card-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(27, 67, 50, 0.08);
  line-height: 1;
  margin-bottom: 16px;
}

.service-card--featured .service-card-num {
  color: rgba(250, 249, 246, 0.1);
}

.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(27, 67, 50, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-deep);
  margin-bottom: 24px;
}

.service-card--featured .service-card-icon {
  background: rgba(250, 249, 246, 0.1);
  color: var(--gold);
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 24px;
}

.link-arrow {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s var(--ease-out);
}

.link-arrow:hover {
  gap: 12px;
}

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

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

.about-visual {
  position: relative;
}

.about-img-primary {
  width: 100%;
  height: 560px;
  border-radius: 8px;
  overflow: hidden;
}

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

.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 260px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(27, 67, 50, 0.15);
  border: 4px solid var(--cream);
}

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

.about-experience-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--green-deep);
  color: var(--cream);
  padding: 24px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 16px 40px rgba(27, 67, 50, 0.3);
}

.about-experience-badge .exp-number {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.about-experience-badge .exp-text {
  font-size: 0.78rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.about-content {
  padding-top: 20px;
}

.about-text {
  font-size: 1.02rem;
  color: var(--gray-500);
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--green-deep);
}

.value-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

/* --- Why Us --- */
.why-us {
  padding: 120px 0;
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 48px;
}

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

.why-num {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  min-width: 36px;
}

.why-text h4 {
  margin-bottom: 6px;
  color: var(--cream);
}

.why-text p {
  font-size: 0.92rem;
  color: rgba(250, 249, 246, 0.6);
  line-height: 1.7;
}

.why-us-visual {
  position: relative;
}

.why-us-visual img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 8px;
}

.why-quote {
  position: absolute;
  bottom: -30px;
  left: -30px;
  right: -30px;
  background: var(--cream);
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.why-quote svg {
  color: var(--gold);
  margin-bottom: 12px;
}

.why-quote blockquote {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--green-deep);
  line-height: 1.6;
  margin-bottom: 12px;
}

.why-quote span {
  font-size: 0.82rem;
  color: var(--gray-500);
  font-style: normal;
}

/* --- Gallery --- */
.gallery {
  padding: 120px 0;
  background: var(--off-white);
}

.gallery-header {
  text-align: center;
  margin-bottom: 60px;
}

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

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 67, 50, 0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--cream);
  font-weight: 500;
}

.gallery-item--large {
  grid-column: 1 / 8;
  grid-row: 1 / 2;
  height: 420px;
}

.gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
  height: 200px;
}

.gallery-item--wide {
  grid-column: 1 / 8;
  grid-row: 2 / 3;
  height: 220px;
}

.gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
  grid-column: span 3;
  grid-row: 1 / 2;
}

/* --- CTA --- */
.cta {
  padding: 120px 0;
  background: var(--cream);
}

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

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.cta-visual {
  height: 500px;
  border-radius: 8px;
  overflow: hidden;
}

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

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}

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

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

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

.contact-item span,
.contact-item a {
  font-size: 1rem;
  color: var(--green-deep);
  font-weight: 500;
  line-height: 1.6;
}

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

.contact-form-wrap {
  background: var(--white);
  border-radius: 12px;
  padding: 48px;
  border: 1px solid rgba(27, 67, 50, 0.06);
  box-shadow: 0 20px 60px rgba(27, 67, 50, 0.06);
}

.contact-form h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.form-note {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 32px;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-100);
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--gray-900);
  background: var(--off-white);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}

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

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: rgba(45, 106, 79, 0.06);
  border-radius: 8px;
  margin-top: 16px;
  color: var(--green-deep);
  font-weight: 500;
  font-size: 0.95rem;
}

.form-success.show {
  display: flex;
}

.form-success svg {
  color: var(--green-mid);
  flex-shrink: 0;
}

/* --- Map --- */
.map-section {
  height: 380px;
  filter: grayscale(30%);
}

.map-section iframe {
  width: 100%;
  height: 100%;
}

/* --- Footer --- */
.footer {
  background: var(--charcoal);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-brand p {
  font-size: 0.92rem;
  color: rgba(250, 249, 246, 0.5);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 0.9rem;
  color: rgba(250, 249, 246, 0.5);
  transition: color 0.3s;
}

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

.footer-col address {
  font-style: normal;
  font-size: 0.9rem;
  color: rgba(250, 249, 246, 0.5);
  line-height: 1.7;
}

.footer-col p {
  font-size: 0.9rem;
  color: rgba(250, 249, 246, 0.5);
  margin-top: 6px;
}

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

.footer-bottom {
  border-top: 1px solid rgba(250, 249, 246, 0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(250, 249, 246, 0.3);
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

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

  .hero-visual {
    min-height: 400px;
    order: -1;
  }

  .hero-img-main {
    height: 400px;
  }

  .hero-img-float {
    left: 20px;
    bottom: -20px;
    width: 200px;
  }

  .hero-accent-line {
    display: none;
  }

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

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

  .about-img-secondary {
    right: 20px;
    bottom: -20px;
  }

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

  .why-us-visual {
    order: -1;
  }

  .why-us-visual img {
    height: 400px;
  }

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

  .cta-visual {
    height: 350px;
    order: -1;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .gallery-item--large {
    grid-column: 1 / -1;
    height: 350px;
  }

  .gallery-item--wide {
    grid-column: 1 / -1;
  }

  .gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
    grid-column: span 6;
  }
}

@media (max-width: 768px) {
  .nav,
  .header-phone {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    padding-top: 80px;
    min-height: auto;
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-divider {
    height: 36px;
  }

  .services {
    padding: 80px 0;
  }

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

  .service-card--featured {
    order: -1;
  }

  .about {
    padding: 80px 0;
  }

  .about-img-primary {
    height: 360px;
  }

  .about-img-secondary {
    width: 180px;
    right: 10px;
    bottom: -10px;
  }

  .about-experience-badge {
    top: -10px;
    left: -10px;
    padding: 16px 14px;
  }

  .about-experience-badge .exp-number {
    font-size: 1.8rem;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

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

  .why-quote {
    left: 10px;
    right: 10px;
    bottom: -20px;
  }

  .gallery {
    padding: 80px 0;
  }

  .gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
    grid-column: span 12;
    height: 200px !important;
  }

  .gallery-item--wide {
    height: 180px;
  }

  .cta {
    padding: 80px 0;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .btn {
    justify-content: center;
  }

  .contact {
    padding: 80px 0;
  }

  .contact-form-wrap {
    padding: 32px 24px;
  }

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

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

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

  .hero-scroll-indicator {
    display: none;
  }
}

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

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .hero-stats {
    flex-wrap: wrap;
  }

  .stat-divider {
    display: none;
  }
}
