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

:root {
  --burgundy: #7B2D3B;
  --burgundy-dark: #5C1F2B;
  --burgundy-deep: #3D1419;
  --blush: #F5D5CE;
  --blush-light: #FDEDE8;
  --blush-pale: #FFF5F2;
  --accent: #E8A87C;
  --accent-warm: #D4845A;
  --cream: #FFF9F7;
  --charcoal: #1A1A1A;
  --dark: #2C2C2C;
  --gray: #6B6B6B;
  --gray-light: #9A9A9A;
  --white: #FFFFFF;
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

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

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

.nav.scrolled {
  background: rgba(255, 249, 247, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(123, 45, 59, 0.1);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.nav-logo-mark {
  width: 40px;
  height: 40px;
  background: var(--burgundy);
  color: var(--blush);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, 100% 15%, 85% 100%, 15% 100%);
  transition: transform 0.3s var(--ease-out);
}

.nav-logo:hover .nav-logo-mark {
  transform: rotate(-5deg) scale(1.05);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--white);
  transition: color 0.3s;
}

.nav.scrolled .nav-logo-text {
  color: var(--charcoal);
}

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

.nav-links a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s;
  position: relative;
}

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

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

.nav-links a:hover {
  color: var(--white);
}

.nav.scrolled .nav-links a {
  color: var(--gray);
}

.nav.scrolled .nav-links a:hover {
  color: var(--burgundy);
}

.nav-cta {
  background: var(--burgundy) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 0;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%) !important;
  transition: background 0.3s, transform 0.3s var(--ease-out) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--burgundy-dark) !important;
  transform: translateY(-2px);
}

.nav.scrolled .nav-cta {
  color: var(--white) !important;
}

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

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s var(--ease-out);
  display: block;
}

.nav.scrolled .nav-toggle span {
  background: var(--charcoal);
}

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

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

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

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--burgundy-deep);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(61, 20, 25, 0.92) 0%,
    rgba(123, 45, 59, 0.75) 50%,
    rgba(92, 31, 43, 0.85) 100%
  );
}

.hero-geo {
  position: absolute;
  z-index: 2;
  opacity: 0.15;
}

.hero-geo--blush {
  width: 500px;
  height: 500px;
  background: var(--blush);
  border-radius: 50%;
  top: -150px;
  right: -100px;
  filter: blur(0px);
}

.hero-geo--burgundy {
  width: 300px;
  height: 300px;
  background: var(--burgundy);
  bottom: 10%;
  right: 15%;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  opacity: 0.3;
}

.hero-geo--accent {
  width: 150px;
  height: 150px;
  background: var(--accent);
  top: 30%;
  right: 5%;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 100px;
  max-width: 720px;
}

.hero-tag {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-tag::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--accent);
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.5rem, 10vw, 7rem);
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero-headline br {
  display: none;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 40px;
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 32px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  position: relative;
}

.btn--primary {
  background: var(--burgundy);
  color: var(--white);
  clip-path: polygon(0 0, 100% 0, 96% 100%, 0% 100%);
  padding-right: 40px;
}

.btn--primary:hover {
  background: var(--burgundy-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(123, 45, 59, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
  clip-path: polygon(0 0, 100% 0, 96% 100%, 0% 100%);
  padding-right: 40px;
}

.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.btn--burgundy {
  background: var(--burgundy);
  color: var(--white);
  clip-path: polygon(0 0, 100% 0, 96% 100%, 0% 100%);
  padding-right: 40px;
}

.btn--burgundy:hover {
  background: var(--burgundy-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(123, 45, 59, 0.3);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
  clip-path: polygon(0 0, 100% 0, 96% 100%, 0% 100%);
  padding-right: 40px;
}

.btn--outline-light:hover {
  background: var(--white);
  color: var(--burgundy);
  transform: translateY(-3px);
}

.btn--lg {
  padding: 20px 40px;
  font-size: 1rem;
}

.btn--full {
  width: 100%;
  justify-content: center;
  clip-path: none;
  border-radius: 0;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

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

/* ===== MARQUEE ===== */
.marquee {
  background: var(--burgundy);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 24px;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.marquee span {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}

.marquee-dot {
  color: var(--accent) !important;
  font-size: 0.5rem !important;
  letter-spacing: 0 !important;
}

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

/* ===== SECTION HEADERS ===== */
.section-header {
  margin-bottom: 64px;
}

.section-header--center {
  text-align: center;
}

.section-tag {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-header--center .section-tag {
  justify-content: center;
}

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

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

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

/* ===== SERVICES ===== */
.services {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.services-shape {
  position: absolute;
  z-index: 0;
}

.services-shape--blush {
  width: 400px;
  height: 400px;
  background: var(--blush);
  border-radius: 50%;
  top: -100px;
  left: -150px;
  opacity: 0.4;
}

.services-shape--accent {
  width: 200px;
  height: 200px;
  background: var(--accent);
  bottom: 50px;
  right: -50px;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  opacity: 0.2;
}

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

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

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

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(123, 45, 59, 0.12);
}

.service-card-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: var(--blush);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.4s var(--ease-out);
}

.service-card:hover .service-card-accent {
  opacity: 0.5;
  transform: scale(1.5);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--blush-light);
  color: var(--burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s var(--ease-out);
}

.service-card:hover .service-icon {
  background: var(--burgundy);
  color: var(--white);
}

.service-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--charcoal);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.service-desc {
  font-size: 0.925rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ===== ABOUT ===== */
.about {
  padding: 120px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

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

.about-images {
  position: relative;
  height: 600px;
}

.about-img-main {
  width: 75%;
  height: 80%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

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

.about-img-float {
  width: 55%;
  height: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
  overflow: hidden;
  border: 8px solid var(--white);
}

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

.about-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--burgundy);
  color: var(--white);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.about-badge-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1;
}

.about-badge-text {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.8;
}

.about-geo-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: var(--accent);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  opacity: 0.3;
  z-index: -1;
}

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

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

.about-stats {
  display: flex;
  gap: 32px;
  margin: 40px 0;
  padding: 32px 0;
  border-top: 1px solid rgba(123, 45, 59, 0.1);
  border-bottom: 1px solid rgba(123, 45, 59, 0.1);
}

.about-stat {
  text-align: center;
  flex: 1;
}

.about-stat-number {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--burgundy);
  line-height: 1;
  margin-bottom: 8px;
}

.about-stat-label {
  font-size: 0.8rem;
  color: var(--gray);
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.about-stat-divider {
  width: 1px;
  background: rgba(123, 45, 59, 0.15);
  align-self: stretch;
}

/* ===== GALLERY ===== */
.gallery {
  padding: 120px 0 80px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.gallery-bg-shape {
  position: absolute;
  width: 600px;
  height: 600px;
  background: var(--blush);
  border-radius: 50%;
  top: -200px;
  right: -200px;
  opacity: 0.3;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 16px;
  margin-top: 64px;
  position: relative;
  z-index: 1;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  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.08);
}

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

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

.gallery-item-overlay span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.gallery-item--large {
  grid-column: span 7;
}

.gallery-item--tall {
  grid-column: span 5;
  grid-row: span 2;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.testimonials-burgundy {
  position: absolute;
  inset: 0;
  background: var(--burgundy);
}

.testimonials .container {
  position: relative;
  z-index: 1;
}

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

.testimonial-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 40px 32px;
  transition: all 0.4s var(--ease-out);
  backdrop-filter: blur(10px);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-6px);
}

.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.8;
  color: var(--accent);
  margin-bottom: 8px;
}

.testimonial-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: var(--burgundy-deep);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
}

.testimonial-location {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== CTA ===== */
.cta {
  padding: 120px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.cta-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-shape {
  position: absolute;
}

.cta-shape--circle {
  width: 300px;
  height: 300px;
  border: 2px solid rgba(245, 213, 206, 0.1);
  border-radius: 50%;
  top: -80px;
  left: -80px;
}

.cta-shape--square {
  width: 150px;
  height: 150px;
  background: var(--burgundy);
  opacity: 0.3;
  bottom: -30px;
  right: 10%;
  transform: rotate(45deg);
}

.cta-shape--triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 100px 100px;
  border-color: transparent transparent var(--accent) transparent;
  opacity: 0.15;
  top: 20%;
  right: 5%;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.cta-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== CONTACT ===== */
.contact {
  padding: 120px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

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

.contact-detail {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-detail-icon {
  width: 52px;
  height: 52px;
  background: var(--blush-light);
  color: var(--burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.6;
}

.contact-detail-value a {
  color: var(--burgundy);
  transition: color 0.3s;
}

.contact-detail-value a:hover {
  color: var(--burgundy-dark);
  text-decoration: underline;
}

.contact-map {
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.contact-map-link {
  display: block;
  position: relative;
}

.contact-map-link img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  filter: saturate(0.3) contrast(1.1);
  transition: filter 0.4s;
}

.contact-map-link:hover img {
  filter: saturate(0.6) contrast(1.1);
}

.contact-map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(123, 45, 59, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.3s;
}

.contact-map-link:hover .contact-map-overlay {
  background: rgba(123, 45, 59, 0.85);
}

/* Contact Form */
.contact-form-wrap {
  position: relative;
}

.contact-form-bg {
  position: absolute;
  inset: -20px;
  background: var(--blush-light);
  z-index: 0;
  clip-path: polygon(0 0, 100% 5%, 95% 100%, 5% 95%);
}

.contact-form-wrap > * {
  position: relative;
  z-index: 1;
}

.contact-form-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--charcoal);
  margin-bottom: 32px;
  line-height: 1.1;
}

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

.form-label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
  display: block;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid rgba(123, 45, 59, 0.12);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
}

.form-input:focus {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 4px rgba(123, 45, 59, 0.08);
}

.form-input::placeholder {
  color: var(--gray-light);
}

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

.form-select {
  cursor: pointer;
}

.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

.form-success.show {
  display: block;
  animation: fadeInUp 0.5s var(--ease-out);
}

.form-success-icon {
  width: 72px;
  height: 72px;
  background: var(--burgundy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form-success-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.form-success-text {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 320px;
  margin: 0 auto;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--charcoal);
  color: var(--white);
}

.footer-top {
  padding: 80px 0 60px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo-mark {
  width: 44px;
  height: 44px;
  background: var(--burgundy);
  color: var(--blush);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, 100% 15%, 85% 100%, 15% 100%);
}

.footer-logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--white);
}

.footer-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 280px;
}

.footer-heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s, padding-left 0.3s;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 8px;
}

.footer-contact p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 4px;
}

.footer-phone a {
  color: var(--accent);
  transition: color 0.3s;
}

.footer-phone a:hover {
  color: var(--blush);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-out);
}

.reveal.revealed {
  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) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    gap: 48px;
  }

  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(3, 220px);
  }

  .gallery-item--large {
    grid-column: span 6;
  }

  .gallery-item--tall {
    grid-column: span 3;
    grid-row: span 1;
  }

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

  .testimonials-grid .testimonial-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }

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

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 26, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    font-size: 1.5rem;
    color: var(--white) !important;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-cta {
    font-size: 1rem !important;
    padding: 14px 32px !important;
  }

  .hero-headline {
    font-size: clamp(2.8rem, 12vw, 4.5rem);
  }

  .hero-headline br {
    display: block;
  }

  .hero-content {
    padding-top: 80px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .btn {
    justify-content: center;
    clip-path: none;
    border-radius: 0;
  }

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

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

  .about-images {
    height: 400px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-item--large,
  .gallery-item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item {
    height: 220px;
  }

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

  .testimonials-grid .testimonial-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }

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

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

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

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

  .services,
  .about,
  .gallery,
  .testimonials,
  .cta,
  .contact {
    padding: 80px 0;
  }

  .section-header {
    margin-bottom: 48px;
  }

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

  .about-stat-divider {
    width: 60px;
    height: 1px;
    margin: 0 auto;
  }

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

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

  .cta-actions .btn {
    clip-path: none;
    border-radius: 0;
    justify-content: center;
  }
}
