/* ========================================
   TEAM KLAUSING — Real Estate Website
   Color Palette: Plum + Amber
   Fonts: Playfair Display + Inter
======================================== */

:root {
  --plum-dark: #4A1D3F;
  --plum: #6B2F5B;
  --plum-light: #8B4575;
  --plum-muted: #A86B8E;
  --plum-pale: #F3E5EF;
  --plum-bg: #FBF5F9;

  --amber-dark: #B8600A;
  --amber: #D4851C;
  --amber-light: #E8A84C;
  --amber-pale: #FFF3E0;
  --amber-bg: #FFFAF0;

  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --shadow-sm: 0 1px 2px rgba(107, 47, 91, 0.06);
  --shadow-md: 0 4px 16px rgba(107, 47, 91, 0.10);
  --shadow-lg: 0 8px 32px rgba(107, 47, 91, 0.14);
  --shadow-xl: 0 16px 48px rgba(107, 47, 91, 0.18);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(107, 47, 91, 0.08);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

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

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

.logo-text span {
  color: var(--amber);
}

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

.logo-light .logo-text span {
  color: var(--amber-light);
}

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

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--plum-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.main-nav a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.main-nav a:hover {
  color: var(--plum);
  background: var(--plum-pale);
}

.nav-cta {
  background: var(--plum) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  border-radius: var(--radius-sm) !important;
}

.nav-cta:hover {
  background: var(--plum-dark) !important;
  color: var(--white) !important;
}

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

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

.btn-primary:hover {
  background: var(--plum-dark);
  border-color: var(--plum-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

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

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

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

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

.btn-white:hover {
  background: var(--plum-pale);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

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

/* ========== SECTION COMMON ========== */
.section {
  padding: 100px 0;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-dark);
  background: var(--amber-pale);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--plum-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-title .accent {
  color: var(--amber-dark);
}

.section-sub {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
  line-height: 1.7;
}

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

.section-header .section-sub {
  margin: 0 auto;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--plum-bg) 0%, var(--white) 40%, var(--amber-bg) 100%);
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
}

.shape-plum {
  width: 600px;
  height: 600px;
  background: var(--plum);
  top: -200px;
  right: -100px;
}

.shape-amber {
  width: 400px;
  height: 400px;
  background: var(--amber);
  bottom: -100px;
  left: -100px;
}

.shape-amber-alt {
  width: 200px;
  height: 200px;
  background: var(--amber-light);
  top: 30%;
  left: 45%;
  opacity: 0.08;
}

.shape-circle {
  width: 120px;
  height: 120px;
  border: 3px solid var(--plum-muted);
  background: transparent;
  top: 15%;
  left: 10%;
  opacity: 0.2;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--plum-pale);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--plum);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--plum-dark);
  margin-bottom: 24px;
}

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

.hero-sub {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

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

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

.stat-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--plum);
}

.stat-number span {
  color: var(--amber);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--gray-500);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

/* Hero Visual / Photo Grid */
.hero-visual {
  position: relative;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 280px 200px;
  gap: 16px;
  position: relative;
}

.photo-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.photo-card:hover img {
  transform: scale(1.05);
}

.photo-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(74, 29, 63, 0.85));
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

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

.photo-small {
  grid-column: 2;
}

.photo-top {
  grid-row: 1;
}

.photo-bottom {
  grid-row: 2;
}

.hero-accent-block {
  position: absolute;
  bottom: -20px;
  left: -30px;
  color: var(--plum);
  opacity: 0.3;
  z-index: -1;
  animation: spin 20s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-geo {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  overflow: hidden;
}

.geo-triangle {
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
}

.geo-triangle-plum {
  border-left: 300px solid transparent;
  border-right: 300px solid transparent;
  border-bottom: 80px solid var(--plum);
  right: 10%;
  opacity: 0.06;
}

.geo-triangle-amber {
  border-left: 200px solid transparent;
  border-right: 200px solid transparent;
  border-bottom: 80px solid var(--amber);
  left: 5%;
  opacity: 0.06;
}

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

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

.about-visual {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image-wrapper img {
  width: 100%;
  height: 640px;
  object-fit: cover;
}

.about-image-accent {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  background: var(--amber);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.3;
}

.about-quote-card {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--plum);
  color: var(--white);
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  max-width: 320px;
  box-shadow: var(--shadow-xl);
}

.about-quote-card .quote-icon {
  color: var(--amber-light);
  margin-bottom: 12px;
}

.about-quote-card blockquote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 12px;
}

.about-quote-card cite {
  font-size: 0.85rem;
  font-style: normal;
  color: var(--amber-light);
  font-weight: 600;
}

.about-copy .section-label {
  margin-bottom: 12px;
}

.about-copy .section-title {
  margin-bottom: 20px;
}

.about-copy > p {
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.75;
}

.about-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0 32px;
}

.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.5;
}

.feature-icon {
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ========== SERVICES ========== */
.services {
  background: var(--plum-bg);
  position: relative;
  overflow: hidden;
}

.services-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(107, 47, 91, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(212, 133, 28, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--gray-100);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--plum), var(--amber));
  opacity: 0;
  transition: var(--transition);
}

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

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

.service-card-featured .service-card-accent {
  background: linear-gradient(90deg, var(--amber), var(--amber-light));
  opacity: 1;
}

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--amber);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 50px;
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--plum-pale);
  border-radius: var(--radius-md);
  color: var(--plum);
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card-featured .service-icon {
  background: rgba(255,255,255,0.15);
  color: var(--amber-light);
}

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

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

.service-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--plum-dark);
  margin-bottom: 12px;
}

.service-card-featured .service-title {
  color: var(--white);
}

.service-desc {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card-featured .service-desc {
  color: rgba(255,255,255,0.8);
}

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

.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--gray-600);
}

.service-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
}

.service-card-featured .service-features li {
  color: rgba(255,255,255,0.85);
}

.service-card-featured .service-features li::before {
  background: var(--amber-light);
}

/* ========== AREAS ========== */
.areas {
  background: var(--white);
  overflow: hidden;
}

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

.areas-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0 32px;
}

.area-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.area-item:hover {
  background: var(--plum-pale);
  transform: translateX(4px);
}

.area-dot {
  width: 8px;
  height: 8px;
  background: var(--plum);
  border-radius: 50%;
  flex-shrink: 0;
}

.area-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-800);
}

.area-tag {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--amber-dark);
  background: var(--amber-pale);
  padding: 2px 8px;
  border-radius: 50px;
}

.areas-visual {
  position: relative;
  min-height: 480px;
}

.areas-map-placeholder {
  width: 100%;
  height: 480px;
  background: linear-gradient(135deg, var(--plum-pale) 0%, var(--amber-pale) 100%);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.map-icon {
  color: var(--plum);
  opacity: 0.4;
}

.map-caption {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--plum);
}

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

.accent-shape {
  position: absolute;
  border-radius: 50%;
}

.accent-shape-plum {
  width: 100px;
  height: 100px;
  background: var(--plum);
  opacity: 0.08;
  bottom: 20px;
  right: 20px;
}

.accent-shape-amber {
  width: 60px;
  height: 60px;
  background: var(--amber);
  opacity: 0.15;
  top: 30px;
  left: 30px;
}

.accent-shape-circle {
  width: 40px;
  height: 40px;
  border: 2px solid var(--plum-muted);
  background: transparent;
  opacity: 0.2;
  top: 50%;
  right: 40px;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  background: linear-gradient(135deg, var(--plum-dark) 0%, var(--plum) 100%);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(212, 133, 28, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 40%);
  pointer-events: none;
}

.testimonials .section-label {
  background: rgba(255,255,255,0.12);
  color: var(--amber-light);
}

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

.testimonials .section-title .accent {
  color: var(--amber-light);
}

.testimonials .section-sub {
  color: rgba(255,255,255,0.7);
}

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

.testimonial-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

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

.testimonial-card-featured {
  background: var(--white);
  border-color: transparent;
  color: var(--gray-800);
  position: relative;
}

.testimonial-card-featured .testimonial-stars {
  color: var(--amber);
}

.testimonial-card-featured .testimonial-text {
  color: var(--gray-700);
}

.testimonial-card-featured .author-name {
  color: var(--plum-dark);
}

.testimonial-card-featured .author-detail {
  color: var(--gray-500);
}

.testimonial-card-bg {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: var(--amber);
  border-radius: 50%;
  opacity: 0.08;
  pointer-events: none;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--amber-light);
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
  margin-bottom: 24px;
  font-style: italic;
}

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

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--amber);
}

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

.author-name {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
}

.author-detail {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

/* ========== CTA BANNER ========== */
.cta-banner {
  background: linear-gradient(135deg, var(--amber-dark) 0%, var(--amber) 50%, var(--amber-light) 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

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

.cta-shape {
  position: absolute;
  border-radius: 50%;
}

.cta-shape-plum {
  width: 300px;
  height: 300px;
  background: var(--plum);
  opacity: 0.1;
  top: -100px;
  left: -50px;
}

.cta-shape-amber {
  width: 200px;
  height: 200px;
  background: var(--amber-light);
  opacity: 0.2;
  bottom: -80px;
  right: 10%;
}

.cta-shape-circle {
  width: 80px;
  height: 80px;
  border: 3px solid rgba(255,255,255,0.3);
  background: transparent;
  top: 20%;
  right: 25%;
}

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

.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 36px;
}

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

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

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

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0;
}

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

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

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

.contact-detail-value {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-800);
}

.contact-detail-link {
  color: var(--plum);
  font-weight: 600;
  transition: var(--transition);
}

.contact-detail-link:hover {
  color: var(--amber-dark);
}

.contact-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.contact-social-label {
  font-size: 0.85rem;
  color: var(--gray-500);
  font-weight: 500;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  color: var(--plum);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--plum);
  border-color: var(--plum);
  color: var(--white);
  transform: translateY(-2px);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}

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

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

.form-group-full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--gray-50);
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--plum);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(107, 47, 91, 0.1);
}

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

.form-privacy {
  font-size: 0.78rem;
  color: var(--gray-400);
  text-align: center;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  color: var(--plum);
  margin: 0 auto 20px;
  width: 64px;
  height: 64px;
}

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

.form-success p {
  color: var(--gray-600);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--plum-dark);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}

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

.footer-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}

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

.footer-address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-phone,
.footer-email {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}

.footer-phone:hover,
.footer-email:hover {
  color: var(--amber-light);
}

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

.footer-copyright,
.footer-disclaimer {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

.footer-disclaimer {
  max-width: 500px;
  text-align: right;
}

/* ========== SCROLL ANIMATIONS ========== */
.reveal {
  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);
}

.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; }

/* ========== MOBILE NAV ========== */
@media (max-width: 1023px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-xl);
    padding: 90px 32px 32px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }

  .main-nav.open {
    right: 0;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .main-nav a {
    padding: 14px 16px;
    font-size: 1rem;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 998;
  }

  .nav-overlay.active {
    display: block;
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    order: -1;
  }

  .photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 180px;
  }

  .about-grid,
  .areas-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visual {
    order: -1;
  }

  .about-image-wrapper img {
    height: 400px;
  }

  .about-quote-card {
    position: relative;
    bottom: auto;
    right: auto;
    max-width: 100%;
    margin-top: 16px;
  }

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

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

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

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

  .footer-disclaimer {
    text-align: center;
  }
}

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

  .hero {
    padding: 100px 0 60px;
  }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .stat-divider {
    display: none;
  }

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

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

  .photo-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 260px 200px 160px;
  }

  .photo-large {
    grid-column: 1;
    grid-row: 1;
  }

  .photo-top, .photo-bottom {
    grid-column: 1;
    grid-row: auto;
  }

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

  .areas-list {
    grid-template-columns: 1fr;
  }

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

  .contact-form-wrapper {
    padding: 24px;
  }

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

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