/* ============================================
   AA Seamless Gutters — Custom Styles
   ============================================ */

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

:root {
  --plum-50: #fdf4f8;
  --plum-100: #fce7f3;
  --plum-200: #fbcfe8;
  --plum-300: #f9a8d4;
  --plum-400: #f472b6;
  --plum-500: #a8558a;
  --plum-600: #8b3a6b;
  --plum-700: #6d2e54;
  --plum-800: #4a1e38;
  --plum-900: #2d1222;
  --plum-950: #1a0a14;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;
  --gray-950: #0a0a0a;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

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

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

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

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

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(109, 46, 84, 0.08);
  transition: box-shadow 0.4s var(--ease-out);
}

.nav.scrolled {
  box-shadow: 0 1px 20px rgba(109, 46, 84, 0.08);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--plum-800);
  letter-spacing: -0.01em;
}

.nav-logo-text {
  display: none;
}

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--gray-600);
  transition: color 0.25s var(--ease-out);
  letter-spacing: 0.01em;
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--plum-700) !important;
  background: var(--plum-50);
  border: 1px solid var(--plum-200);
  padding: 8px 16px;
  border-radius: 100px;
  transition: background 0.25s, color 0.25s, transform 0.2s var(--ease-out) !important;
}

.nav-cta:hover {
  background: var(--plum-100) !important;
  transform: translateY(-1px);
}

.nav-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--plum-800);
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s;
}

.nav-menu-btn:hover {
  background: var(--plum-50);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--white);
  display: flex;
  flex-direction: column;
  padding: 96px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--plum-800);
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s;
}

.mobile-menu-close:hover {
  background: var(--plum-50);
}

.mobile-menu-link {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--plum-900);
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
  transition: color 0.2s, padding-left 0.3s var(--ease-out);
}

.mobile-menu-link:hover {
  color: var(--plum-600);
  padding-left: 8px;
}

.mobile-menu-divider {
  height: 1px;
  background: var(--gray-200);
  margin: 24px 0;
}

.mobile-menu-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--plum-700);
  padding: 12px 0;
}

.mobile-menu-email,
.mobile-menu-address {
  font-size: 0.875rem;
  color: var(--gray-500);
  padding: 4px 0;
}

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

.btn-primary {
  background: var(--plum-700);
  color: var(--white);
  border-color: var(--plum-700);
}

.btn-primary:hover {
  background: var(--plum-800);
  border-color: var(--plum-800);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(109, 46, 84, 0.25);
}

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

.btn-ghost:hover {
  background: var(--plum-50);
  border-color: var(--plum-500);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

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

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

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

/* ============================================
   Section Shared
   ============================================ */
.section {
  padding: 120px 0;
}

.section-header {
  max-width: 640px;
  margin-bottom: 64px;
}

.section-header-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--plum-600);
  margin-bottom: 16px;
  position: relative;
  padding-left: 28px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 1.5px;
  background: var(--amber-500);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  color: var(--gray-900);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--gray-500);
  line-height: 1.8;
  font-weight: 300;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, var(--plum-950) 0%, var(--plum-900) 40%, var(--plum-800) 100%);
  padding: 120px 0 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 70% 40%, rgba(168, 85, 138, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(245, 158, 11, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 540px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--amber-400);
  letter-spacing: 0.06em;
  margin-bottom: 32px;
  padding: 8px 16px;
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.2);
  border-radius: 100px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber-400);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.125rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

.hero-headline em {
  font-style: italic;
  color: var(--amber-400);
}

.hero-sub {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 460px;
}

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

.hero-actions .btn-ghost {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-actions .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  min-height: 480px;
}

.hero-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3);
}

.hero-card-main {
  width: 100%;
  aspect-ratio: 520/380;
}

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

.hero-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(26, 10, 20, 0.85), transparent);
}

.hero-card-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--amber-400);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.25);
  padding: 6px 14px;
  border-radius: 100px;
}

/* Floating Stat Cards */
.hero-stat-card {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.stat-card-1 {
  bottom: -20px;
  left: -30px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-card-number {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--plum-700);
  line-height: 1;
}

.stat-card-label {
  font-size: 0.8125rem;
  color: var(--gray-500);
  font-weight: 400;
}

.stat-card-2 {
  top: 20px;
  right: -20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-card-2 .stat-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--plum-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--plum-700);
  flex-shrink: 0;
}

.stat-card-3 {
  bottom: 60px;
  right: -40px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-card-3 .stat-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(251, 191, 36, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-700);
  flex-shrink: 0;
}

/* Hero Divider */
.hero-divider {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.hero-divider::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.15), transparent);
}

/* Hero Strip */
.hero-strip {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 24px 60px;
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.hero-strip-item {
  display: flex;
  align-items: center;
  gap: 0;
}

.hero-strip-label {
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.04em;
  padding: 0 20px;
  white-space: nowrap;
}

.hero-strip-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

/* ============================================
   Services Section
   ============================================ */
.services {
  background: var(--gray-50);
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 36px 32px;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--plum-500), var(--amber-500));
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.service-card:hover {
  border-color: var(--plum-200);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(109, 46, 84, 0.08);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--plum-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--plum-700);
  margin-bottom: 24px;
  transition: background 0.3s, color 0.3s;
}

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

.service-title {
  font-family: var(--font-serif);
  font-size: 1.1875rem;
  font-weight: 500;
  color: var(--gray-900);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-desc {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-list li {
  font-size: 0.8125rem;
  color: var(--gray-600);
  padding-left: 16px;
  position: relative;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber-500);
}

/* ============================================
   About Section
   ============================================ */
.about {
  background: var(--white);
}

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

.about-img-group {
  position: relative;
}

.about-img-main {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(109, 46, 84, 0.12);
}

.about-img-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 55%;
  border-radius: 14px;
  border: 4px solid var(--white);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.about-experience-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--plum-700);
  color: var(--white);
  border-radius: 14px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(109, 46, 84, 0.3);
}

.about-exp-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 4px;
}

.about-exp-text {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

.about-content {
  max-width: 480px;
}

.about-text {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 20px;
}

.about-values {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-value {
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-value-line {
  width: 32px;
  height: 1.5px;
  background: var(--amber-500);
  flex-shrink: 0;
}

.about-value span {
  font-size: 0.9375rem;
  color: var(--gray-700);
  font-weight: 400;
}

/* ============================================
   Why Us Section
   ============================================ */
.why-us {
  background: var(--plum-950);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 80% 20%, rgba(168, 85, 138, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 90%, rgba(245, 158, 11, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

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

.why-us .section-label::before {
  background: var(--amber-400);
}

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

.why-us .section-desc {
  color: rgba(255, 255, 255, 0.5);
}

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

.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 36px 32px;
  transition: all 0.4s var(--ease-out);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(251, 191, 36, 0.2);
  transform: translateY(-4px);
}

.why-card-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: rgba(251, 191, 36, 0.2);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.3s;
}

.why-card:hover .why-card-number {
  color: rgba(251, 191, 36, 0.4);
}

.why-card-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.why-card-desc {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
  font-weight: 300;
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery {
  background: var(--white);
}

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

.gallery-item {
  position: relative;
  border-radius: 16px;
  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.05);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45, 18, 34, 0.75) 0%, transparent 55%);
  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-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
}

.gallery-item-tall {
  grid-column: 1 / 5;
  grid-row: 1 / 3;
  min-height: 520px;
}

.gallery-item-tall img {
  min-height: 520px;
}

.gallery-item:not(.gallery-item-tall) {
  min-height: 240px;
}

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

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

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(245, 158, 11, 0.08), transparent 60%);
  pointer-events: none;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.cta-banner-content {
  max-width: 560px;
}

.cta-banner-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta-banner-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  font-weight: 300;
}

.cta-banner-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
  background: var(--gray-50);
}

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

.contact-info {
  max-width: 440px;
}

.contact-desc {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--plum-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--plum-700);
  flex-shrink: 0;
}

.contact-detail-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 0.9375rem;
  color: var(--gray-700);
  line-height: 1.6;
}

.contact-link {
  color: var(--plum-600);
  transition: color 0.2s;
}

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

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

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

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-700);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--gray-800);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--plum-400);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(168, 85, 138, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

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

.form-group 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='%23a3a3a3' 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;
}

/* Form Success */
.form-success {
  text-align: center;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--plum-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--plum-700);
}

.form-success-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gray-900);
}

.form-success-text {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.7;
  font-weight: 300;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  max-width: 280px;
}

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

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
  font-weight: 300;
}

.footer-nav-title,
.footer-services-title {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  transition: color 0.2s, padding-left 0.2s var(--ease-out);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--amber-400);
  padding-left: 4px;
}

.footer-contact-links li {
  align-items: flex-start;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}

.footer-copy {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
}

.footer-location {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.2);
  font-weight: 300;
}

/* ============================================
   Scroll Reveal (progressive enhancement)
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s 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; }
  .reveal-delay-6 { transition-delay: 0.6s; }
}

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

  .hero-visual {
    max-width: 520px;
    min-height: 400px;
  }

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

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

  .about-grid {
    gap: 48px;
  }

  .contact-grid {
    gap: 48px;
  }

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

  .gallery-item-tall {
    grid-column: 1 / 7;
    min-height: 400px;
  }

  .gallery-item-tall img {
    min-height: 400px;
  }

  .gallery-item:not(.gallery-item-tall) {
    min-height: 200px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }

  .nav-links {
    display: none;
  }

  .nav-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-logo-text {
    display: block;
  }

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

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

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

  .hero-card-main {
    aspect-ratio: 4/3;
  }

  .stat-card-1 {
    left: 0;
    bottom: -10px;
  }

  .stat-card-2 {
    right: 0;
    top: 10px;
  }

  .stat-card-3 {
    right: -10px;
    bottom: 40px;
  }

  .hero-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 40px;
  }

  .hero-strip-item {
    padding: 0;
  }

  .hero-strip-sep {
    display: none;
  }

  .hero-strip-label {
    padding: 0;
  }

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

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

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

  .about-img-accent {
    right: 0;
    bottom: -20px;
    width: 50%;
  }

  .about-experience-badge {
    left: 0;
    top: -10px;
  }

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

  .gallery-item-tall {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 300px;
  }

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

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

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

  .cta-banner-actions {
    flex-direction: column;
    width: 100%;
  }

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

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

  .contact-form-wrap {
    padding: 28px;
  }

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

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

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

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

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

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

  .hero-stat-card {
    padding: 14px 16px;
  }

  .stat-card-number {
    font-size: 1.375rem;
  }

  .stat-card-label {
    font-size: 0.75rem;
  }

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

  .gallery-item:not(.gallery-item-tall) {
    min-height: 180px;
  }
}
