@import url("https://fonts.googleapis.com/css2?family=Fraunces:wght@500;600;700&family=Manrope:wght@400;500;600&display=swap");

:root {
  --bg-primary: #ece3d4;
  --bg-secondary: #f5f0e8;
  --text-primary: #141210;
  --text-secondary: #46493f;
  --accent: #8b4513;
  --accent-hover: #6b3410;
  --accent-soft: rgba(139, 69, 19, 0.14);
  --deep: #0f1612;
  --white: #fff;
  --border-color: #d4c9b8;
  --card-bg: #f8f2e8;
  --shadow-light: rgba(12, 8, 4, 0.12);
  --shadow-medium: rgba(14, 10, 6, 0.22);
  --shadow-strong: rgba(8, 5, 2, 0.35);
  --glass: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.38);
  --radius-lg: 20px;
  --radius-md: 14px;
  --transition: 0.3s ease;
}

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

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  background-color: var(--bg-primary);
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.7), transparent 58%),
    radial-gradient(circle at 90% 12%, rgba(139, 69, 19, 0.2), transparent 55%),
    radial-gradient(circle at 16% 80%, rgba(25, 38, 28, 0.16), transparent 55%),
    linear-gradient(180deg, #f0e8da 0%, #e2d5c2 100%);
  color: var(--text-primary);
  line-height: 1.65;
  min-height: 100vh;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.28), transparent 55%),
    radial-gradient(circle at 80% 60%, rgba(139, 69, 19, 0.18), transparent 60%);
  opacity: 0.6;
  pointer-events: none;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.35;
  pointer-events: none;
  z-index: -1;
}

h1,
h2,
h3,
h4 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: 0.3px;
}

a {
  color: var(--accent);
  transition: color var(--transition), opacity var(--transition);
}

a:hover {
  color: var(--accent-hover);
}

::selection {
  background: rgba(139, 69, 19, 0.28);
}

/* Focus States for Accessibility */
a:focus,
button:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  position: relative;
}

/* Component placeholders (inner pages) */
#site-header,
#site-footer {
  display: contents;
}

/* ========================
   Header
   ======================== */
.site-header {
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212, 201, 184, 0.6);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 18px 30px rgba(10, 6, 2, 0.1);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 40px rgba(10, 6, 2, 0.15);
  border-bottom-color: transparent;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled .container {
  padding: 14px 20px;
}

/* Logo */
.logo {
  font-family: "Fraunces", serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.4px;
}

.logo::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), #a0623e);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

.logo:hover::before {
  width: 100%;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  margin-left: 0;
  padding: 8px 16px;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

/* Animated underline effect */
.nav a::before {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), #a0623e);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

/* Subtle background glow on hover */
.nav a::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  opacity: 0;
  border-radius: 10px;
  transition: opacity 0.3s ease;
  z-index: -1;
}

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

.nav a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.nav a:hover::after {
  opacity: 0.06;
}

/* Active state */
.nav a.active {
  color: var(--accent);
}

.nav a.active::before {
  transform: scaleX(1);
}

.nav a.active::after {
  opacity: 0.08;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  border-radius: 8px;
  transition: background 0.3s ease;
  position: relative;
}

.nav-toggle:hover {
  background: var(--accent-soft);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  position: absolute;
  transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.nav-toggle span:nth-child(1) {
  top: 14px;
}

.nav-toggle span:nth-child(2) {
  top: 21px;
}

.nav-toggle span:nth-child(3) {
  top: 28px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ========================
   Hero Section
   ======================== */
.hero {
  padding: 120px 0 100px;
  background:
    radial-gradient(circle at 10% 20%, rgba(139, 69, 19, 0.16), transparent 55%),
    radial-gradient(circle at 92% 8%, rgba(25, 38, 28, 0.24), transparent 50%),
    linear-gradient(180deg, #f0e8da 0%, #e0d2be 100%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  align-items: center;
}

.hero-title {
  font-size: 56px;
  line-height: 1.08;
  max-width: 620px;
  letter-spacing: 0.2px;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.hero-lead {
  margin: 18px 0 26px;
  max-width: 560px;
  color: var(--text-secondary);
  font-size: 17px;
}

.hero-action-note {
  margin-top: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.hero-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
  text-decoration: none;
}

.hero-link:hover {
  color: var(--accent-hover);
}

.hero::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 69, 19, 0.25) 0%, rgba(139, 69, 19, 0) 70%);
  top: -140px;
  right: -160px;
}

.hero::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 50, 36, 0.24) 0%, rgba(30, 50, 36, 0) 70%);
  bottom: -80px;
  left: -80px;
}

.hero-copy {
  position: relative;
  z-index: 1;
  animation: heroFadeUp 0.9s ease both;
}

.hero-media {
  animation: heroFadeIn 1.1s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 24px;
}

.hero-buttons .btn {
  margin-right: 0;
}

.hero-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  transform: translateY(6px);
}

.hero-slider {
  grid-column: span 2;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(31, 31, 28, 0.1);
  box-shadow: 0 32px 60px rgba(20, 16, 10, 0.24);
  background: #f2eee4;
  min-height: 380px;
}

.hero-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.16), transparent 35%);
  pointer-events: none;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 20, 16, 0.05) 0%, rgba(20, 20, 16, 0.2) 80%);
  pointer-events: none;
}

.hero-slider-dots {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  gap: 8px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 8px 10px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.28);
  cursor: pointer;
}

.hero-dot.is-active {
  background: var(--accent);
}

.hero-caption {
  position: absolute;
  left: 20px;
  top: 20px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 60%;
  z-index: 2;
}

.caption-title {
  font-weight: 600;
  font-size: 16px;
}

.caption-subtitle {
  color: var(--text-secondary);
  font-size: 13px;
}

.hero-progress {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 120px;
  height: 4px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  overflow: hidden;
  z-index: 2;
}

.hero-progress-bar {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--accent);
}

.hero-progress-bar.is-animating {
  animation: heroProgress 4.5s linear forwards;
}

@keyframes heroProgress {
  from { width: 0%; }
  to { width: 100%; }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-image {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 16px 30px var(--shadow-medium);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.hero-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px var(--shadow-medium);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}

.hero-image:hover img {
  transform: scale(1.02);
}

.hero-image--large {
  grid-column: span 2;
  height: 320px;
}

.hero-image--small {
  height: 180px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  font-size: 12px;
  color: var(--text-secondary);
  letter-spacing: 0.2px;
}

.hero-tiles {
  grid-column: span 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.hero-tile {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 170px;
  border: 1px solid rgba(31, 31, 28, 0.1);
  box-shadow: 0 22px 36px rgba(20, 16, 10, 0.22);
}

.hero-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 20, 12, 0.1) 0%, rgba(24, 20, 12, 0.7) 95%);
}

.hero-tile-content {
  position: absolute;
  inset: auto 18px 18px 18px;
  color: var(--white);
  z-index: 1;
  display: grid;
  gap: 6px;
}

.hero-tile-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.hero-tile h3 {
  font-size: 20px;
}

.hero-tile p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 16px;
  border-radius: 14px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  max-width: 560px;
  margin-top: 24px;
  box-shadow: 0 16px 28px rgba(15, 12, 8, 0.14);
}

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

.highlight-value {
  font-weight: 600;
}

.highlight-label {
  color: var(--text-secondary);
  font-size: 13px;
}

.ampersand {
  font-family: "Fraunces", "Times New Roman", serif;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0;
  color: var(--accent);
}

/* ========================
   Buttons
   ======================== */
.btn {
  display: inline-block;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 500;
  transition: all var(--transition);
  cursor: pointer;
  letter-spacing: 0.2px;
}

.btn.primary {
  background: linear-gradient(135deg, #8b4513 0%, #6b3410 100%);
  color: var(--white);
  box-shadow: 0 16px 28px rgba(139, 69, 19, 0.32);
}

.btn.primary:hover {
  background: linear-gradient(135deg, #7a3c10 0%, #5c2c0d 100%);
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(139, 69, 19, 0.42);
}

.btn.secondary {
  border: 1px solid rgba(139, 69, 19, 0.45);
  color: var(--accent);
  background: var(--glass);
  backdrop-filter: blur(8px);
}

.btn.secondary:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(139, 69, 19, 0.32);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-whatsapp svg {
  flex-shrink: 0;
}

/* ========================
   Trust Strip
   ======================== */
.trust-strip {
  background: rgba(255, 255, 255, 0.92);
  padding: 24px 0;
  box-shadow: 0 16px 30px var(--shadow-light);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(230, 225, 214, 0.6);
}

.trust-items {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-secondary);
}

.trust-items span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ========================
   Section Defaults
   ======================== */
section {
  padding: 84px 0;
}

section + section {
  border-top: 1px solid rgba(230, 225, 214, 0.6);
}

/* ========================
   USP Section
   ======================== */
.usp-section {
  background: linear-gradient(180deg, #faf6ef 0%, #f0e8da 100%);
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.usp-card {
  border: 1px solid rgba(230, 221, 208, 0.9);
  border-radius: var(--radius-lg);
  padding: 22px;
  background: var(--card-bg);
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 16px 28px rgba(16, 12, 6, 0.08);
}

.usp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px var(--shadow-light);
}

.usp-label {
  display: inline-block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.usp-card p {
  color: var(--text-secondary);
  font-size: 14px;
}

.section-intro {
  max-width: 620px;
  color: var(--text-secondary);
  margin: 10px 0 30px;
}

.section-cta {
  margin-top: 40px;
  text-align: center;
}

/* ========================
   Page Hero (Inner Pages)
   ======================== */
.page-hero {
  padding: 60px 0 40px;
  background: linear-gradient(180deg, #f5f0e8 0%, var(--bg-primary) 100%);
  text-align: center;
}

.page-hero h2 {
  font-size: 42px;
  margin-bottom: 10px;
}

.page-hero .section-intro {
  margin: 10px auto 0;
  max-width: 560px;
}

.section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.page-hero .section-title::after,
.about-preview .section-title::after,
.testimonials .section-title::after,
.contact-cta .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.page-hero-cta {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-note {
  margin-top: 12px;
  color: var(--text-secondary);
  font-size: 13px;
  text-align: center;
}

/* ========================
   Service Snapshot (Home)
   ======================== */
.service-snapshot {
  background: var(--bg-secondary);
}

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.snapshot-card {
  border: 1px solid rgba(230, 221, 208, 0.9);
  border-radius: var(--radius-lg);
  padding: 24px;
  background: var(--card-bg);
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 16px 28px rgba(16, 12, 6, 0.08);
}

.snapshot-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid rgba(230, 221, 208, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 14px;
}

.snapshot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px var(--shadow-light);
}

.snapshot-card h4 {
  margin-bottom: 8px;
  font-size: 18px;
}

.snapshot-card p {
  color: var(--text-secondary);
  font-size: 14px;
}

/* Design Philosophy (Home) */
.design-philosophy {
  background: linear-gradient(180deg, #efe6d6 0%, #e6d8c4 100%);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.philosophy-card {
  background: var(--white);
  border: 1px solid rgba(230, 221, 208, 0.9);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 14px 26px rgba(16, 12, 6, 0.08);
}

.philosophy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px var(--shadow-light);
}

.philosophy-card h4 {
  margin-bottom: 8px;
}

.philosophy-card p {
  color: var(--text-secondary);
  font-size: 14px;
}

/* ========================
   Services Page Grid
   ======================== */
.services-section {
  padding-top: 40px;
}

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

.service-card {
  background: var(--white);
  border: 1px solid rgba(230, 221, 208, 0.9);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 18px 30px rgba(16, 12, 6, 0.08);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px var(--shadow-light);
}

.service-card--featured {
  background: var(--card-bg);
  border: 2px solid rgba(164, 101, 64, 0.4);
  grid-column: 1 / -1;
  box-shadow: 0 22px 36px rgba(16, 12, 6, 0.12);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card-bg);
  border-radius: 12px;
  margin-bottom: 20px;
  color: var(--accent);
}

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

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

.service-card p {
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  font-size: 14px;
  color: var(--text-secondary);
}

.service-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

/* ========================
   Stats Section (About)
   ======================== */
.stats-section {
  background: var(--white);
  padding: 50px 0;
}

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

.stat-item {
  padding: 20px;
}

.stat-number {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========================
   About Content
   ======================== */
.about-content {
  padding-top: 40px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.about-text h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

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

.values-section h3 {
  text-align: center;
  margin-bottom: 40px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.value-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--border-color);
  transition: transform var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
}

.value-card h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--accent);
}

.value-card p {
  color: var(--text-secondary);
  font-size: 14px;
}

/* ========================
   About Process
   ======================== */
.about-process {
  background: var(--bg-primary);
}

.about-process h3 {
  text-align: center;
}

.about-process .section-intro {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ========================
   Process Steps
   ======================== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.process-step {
  background: var(--white);
  border: 1px solid rgba(230, 221, 208, 0.9);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 16px 28px rgba(16, 12, 6, 0.08);
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px var(--shadow-light);
}

.step-number {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.process-step h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.process-step p {
  color: var(--text-secondary);
  font-size: 14px;
}

/* ========================
   About Preview (Home)
   ======================== */
.about-preview {
  text-align: center;
}

.about-preview p {
  max-width: 700px;
  margin: 16px auto 24px;
  color: var(--text-secondary);
}

/* ========================
   Testimonials
   ======================== */
.testimonials {
  background: var(--white);
}

.testimonials h3 {
  text-align: center;
}

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

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid rgba(230, 221, 208, 0.9);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 18px 30px rgba(16, 12, 6, 0.08);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px var(--shadow-light);
}

.testimonial-rating {
  margin-bottom: 16px;
}

.testimonial-rating span {
  color: #f5a623;
  font-size: 18px;
  margin-right: 2px;
}

.testimonial-card blockquote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-primary);
  margin: 0 0 20px;
  font-style: italic;
}

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

.testimonial-author strong {
  font-size: 15px;
  color: var(--text-primary);
}

.testimonial-author span {
  font-size: 13px;
  color: var(--text-secondary);
}

.testimonials-note {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  color: var(--text-secondary);
}

/* ========================
   Work Section & Grid
   ======================== */
.work-section {
  padding-top: 40px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-btn {
  border: 1px solid var(--border-color);
  background: var(--white);
  color: var(--text-primary);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.filter-btn.is-active {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.work-card.is-hidden {
  display: none;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 30px 0 40px;
}

.work-grid-large {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.work-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 18px 32px rgba(16, 12, 6, 0.1);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(230, 221, 208, 0.7);
}

.work-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px var(--shadow-medium);
}

.work-card-image {
  overflow: hidden;
}

.work-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}

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

.work-card figcaption {
  padding: 20px 24px;
}

.work-card figcaption h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.work-card figcaption p {
  color: var(--text-secondary);
  font-size: 14px;
}

.work-note {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px 32px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.work-note p {
  color: var(--text-secondary);
  font-size: 14px;
}

.work-note strong {
  color: var(--text-primary);
}

/* ========================
   Contact Section
   ======================== */
.contact-section {
  padding-top: 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 50px;
}

.lead-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 24px;
  background: var(--white);
  border: 1px solid rgba(230, 221, 208, 0.9);
  border-radius: 18px;
  padding: 28px;
  margin-bottom: 40px;
  box-shadow: 0 20px 36px rgba(16, 12, 6, 0.12);
}

.lead-copy p {
  color: var(--text-secondary);
  margin-top: 12px;
}

.lead-note {
  font-size: 13px;
}

.lead-form-fields {
  display: grid;
  gap: 14px;
}

.lead-form-fields label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

.lead-form-fields input,
.lead-form-fields select,
.lead-form-fields textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  background: #fbfaf7;
  font-family: inherit;
  font-size: 14px;
  color: var(--text-primary);
}

.lead-form-fields input:focus,
.lead-form-fields select:focus,
.lead-form-fields textarea:focus {
  outline: 2px solid rgba(107, 122, 85, 0.35);
  border-color: rgba(107, 122, 85, 0.5);
}

.contact-card {
  background: var(--white);
  border: 1px solid rgba(230, 221, 208, 0.9);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 18px 30px rgba(16, 12, 6, 0.08);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px var(--shadow-light);
}

.contact-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card-bg);
  border-radius: 50%;
  margin: 0 auto 20px;
  color: var(--accent);
}

.contact-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.contact-card p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 8px;
}

.contact-link {
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.contact-note {
  font-size: 13px !important;
  color: var(--text-secondary);
}

.whatsapp-cta {
  background: var(--accent);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.whatsapp-content h3 {
  color: var(--white);
  margin-bottom: 8px;
}

.whatsapp-content p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 400px;
}

.whatsapp-cta .btn.primary {
  background: var(--white);
  color: var(--accent);
}

.whatsapp-cta .btn.primary:hover {
  background: var(--card-bg);
  transform: translateY(-2px);
}

/* ========================
   FAQ Section
   ======================== */
.faq-section {
  background: var(--bg-secondary);
}

.faq-list {
  max-width: 780px;
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(230, 221, 208, 0.9);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition);
  box-shadow: 0 8px 20px rgba(16, 12, 6, 0.06);
}

.faq-item:hover {
  box-shadow: 0 14px 28px rgba(16, 12, 6, 0.14);
  transform: translateY(-2px);
}

.faq-item[open] {
  box-shadow: 0 14px 28px rgba(16, 12, 6, 0.1);
}

.faq-question {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  color: var(--text-primary);
  transition: color var(--transition);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-item[open] .faq-question {
  color: var(--accent);
}

.faq-answer {
  padding: 0 24px 20px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
}

.faq-item[open] .faq-answer {
  max-height: 240px;
  opacity: 1;
  transform: translateY(0);
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

.faq-answer a {
  text-decoration: none;
  font-weight: 500;
}

/* ========================
   Contact CTA Section
   ======================== */
.contact-cta {
  background: linear-gradient(135deg, #e8dbc8 0%, #dccab2 100%);
  text-align: center;
}

.signature-band {
  position: relative;
  overflow: hidden;
}

.signature-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(139, 69, 19, 0.16), transparent 45%),
              radial-gradient(circle at bottom right, rgba(30, 50, 36, 0.16), transparent 45%);
  opacity: 0.9;
}

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

.contact-cta h3 {
  margin-bottom: 12px;
}

.contact-cta p {
  max-width: 500px;
  margin: 0 auto 24px;
  color: var(--text-secondary);
}

.contact-cta .btn {
  margin: 0 8px 8px;
}

/* ========================
   Mobile Action Bar
   ======================== */
.mobile-cta {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--white);
  border: 1px solid rgba(230, 221, 208, 0.9);
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 18px 32px rgba(16, 12, 6, 0.12);
  z-index: 200;
  gap: 10px;
}

.mobile-cta-btn {
  flex: 1;
  text-align: center;
  text-decoration: none;
  padding: 12px 10px;
  border-radius: 12px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
}

.mobile-cta-btn:last-child {
  background: var(--white);
  color: var(--accent);
  border: 1px solid var(--accent);
}

/* ========================
   Scroll To Top
   ======================== */
.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 88px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(230, 221, 208, 0.9);
  background: var(--glass);
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 28px rgba(16, 12, 6, 0.14);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, color var(--transition), box-shadow var(--transition);
  z-index: 210;
}

.scroll-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top:hover {
  color: var(--accent);
  box-shadow: 0 18px 32px rgba(16, 12, 6, 0.18);
}

/* ========================
   Footer
   ======================== */
.site-footer {
  background: #2a2218;
  padding: 50px 0 30px;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
  margin-bottom: 30px;
}

.footer-brand p:first-child {
  font-size: 18px;
  color: #fff;
}

.footer-brand p:last-child {
  color: rgba(255, 255, 255, 0.55);
}

.footer-note {
  color: rgba(255, 255, 255, 0.55);
  margin-top: 6px;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.footer-contact a:hover {
  color: #c9875a;
}


.footer-map p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 10px;
}

.map-embed {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.18);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
}.footer-links,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links p strong {
  color: rgba(255, 255, 255, 0.9);
}

.footer-links a,
.footer-social a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.footer-links a:hover,
.footer-social a:hover {
  color: #c9875a;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border-color);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), box-shadow var(--transition), color var(--transition);
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px var(--shadow-light);
  color: var(--accent-hover);
}

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

.copyright {
  color: rgba(255, 255, 255, 0.4);
}

.copyright .footer-credit {
  display: inline-block;
  margin-left: 16px;
}

.footer-credit {
  color: rgba(255, 255, 255, 0.35);
  font-size: 12px;
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.footer-credit a:hover {
  color: #c9875a;
}

/* ========================
   Responsive Styles
   ======================== */
@media (max-width: 768px) {

  body {
    padding-bottom: 90px;
  }

  .site-header .container {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: flex;
  }

  /* Premium Mobile Menu */
  .nav {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s ease,
                padding 0.4s ease;
    padding: 0;
  }

  .nav.active {
    max-height: 400px;
    opacity: 1;
    padding: 16px 0;
  }

  .nav a {
    margin: 0;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
    transform: translateX(-20px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s ease,
                color 0.3s ease,
                background 0.3s ease;
  }

  .nav.active a {
    transform: translateX(0);
    opacity: 1;
  }

  /* Staggered animation for nav items */
  .nav.active a:nth-child(1) { transition-delay: 0.05s; }
  .nav.active a:nth-child(2) { transition-delay: 0.1s; }
  .nav.active a:nth-child(3) { transition-delay: 0.15s; }
  .nav.active a:nth-child(4) { transition-delay: 0.2s; }
  .nav.active a:nth-child(5) { transition-delay: 0.25s; }

  .nav a:last-child {
    border-bottom: none;
  }

  .nav a::before,
  .nav a::after {
    display: none;
  }

  .nav a:hover {
    background: rgba(107, 122, 85, 0.08);
    padding-left: 12px;
  }

  .nav a.active {
    color: var(--accent);
    background: rgba(107, 122, 85, 0.06);
    padding-left: 12px;
    border-left: 3px solid var(--accent);
  }

  .hero {
    padding: 60px 0;
  }

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

  .hero-title {
    font-size: 34px;
  }

  .hero-media {
    grid-template-columns: 1fr;
  }

  .hero-tiles {
    grid-template-columns: 1fr;
  }

  .hero-image--large,
  .hero-image--small {
    height: 220px;
  }

  .hero-slider {
    min-height: 240px;
  }

  .hero-caption {
    max-width: 80%;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

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

  .hero-buttons .btn {
    text-align: center;
  }

  .trust-items {
    flex-direction: column;
    gap: 12px;
    text-align: left;
  }

  .page-hero h2 {
    font-size: 32px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-number {
    font-size: 28px;
  }

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

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

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

  .work-grid,
  .work-grid-large {
    grid-template-columns: 1fr;
  }

  .work-card img {
    height: 220px;
  }

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

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

  .whatsapp-cta {
    flex-direction: column;
    text-align: center;
    padding: 30px 24px;
  }

  .whatsapp-content {
    text-align: center;
  }

  .whatsapp-content p {
    max-width: 100%;
  }

  .faq-question {
    padding: 16px 18px;
    font-size: 15px;
  }

  .faq-answer {
    padding: 0 18px 16px;
  }

  .footer-content {
    flex-direction: column;
    gap: 24px;
  }

  .mobile-cta {
    display: flex;
  }

  section {
    padding: 50px 0;
  }
}

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

  .hero-title {
    font-size: 30px;
  }

  .page-hero h2 {
    font-size: 28px;
  }

  .service-card {
    padding: 24px;
  }

  .contact-card {
    padding: 24px;
  }

  .btn {
    padding: 14px 20px;
    width: 100%;
    text-align: center;
  }

  .contact-cta .btn {
    display: block;
    margin: 8px auto;
    max-width: 280px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy,
  .hero-media,
  .hero-progress-bar.is-animating {
    animation: none !important;
  }
}

