
:root {
  --primary: #287174;
  --primary-dark: #2f4f32;
  --primary-light: #5b7592;
  --accent: #f89521;
  --accent-dark: #8d2f2a;
  --bg: #4a3a28;
  --bg-secondary: #4a4e50;
  --text: #ede1ce;
  --text-secondary: #d7c2a1;
  --muted: #d9c298;
  --card-bg: #2f4f32;
  --radius-lg: 20px;
  --shadow-soft: 0 20px 50px rgba(0, 0, 0, 0.4);
  --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

html, body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  background: var(--bg);
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(40, 113, 116, 0.15) 1px, transparent 0),
    linear-gradient(135deg, rgba(40, 113, 116, 0.08) 0%, transparent 50%),
    linear-gradient(45deg, transparent 0%, rgba(248, 149, 33, 0.08) 100%);
  background-size: 40px 40px, 200% 200%, 100% 100%;
  background-position: 0 0, 0 0, 0 0;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(40, 113, 116, 0.08) 2px,
      rgba(40, 113, 116, 0.08) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(40, 113, 116, 0.08) 2px,
      rgba(40, 113, 116, 0.08) 4px
    );
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

body {
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

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

/* Layout helpers */

.container {
  width: min(1120px, 100% - 2.5rem);
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  background: rgba(40, 113, 116, 0.3);
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(40, 113, 116, 0.4);
}

.section-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 2.2vw + 1rem, 2.4rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}

.section-subtitle {
  max-width: 32rem;
  margin: 0.25rem auto 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

/* About section specific subtitle spacing */
.about-grid .section-subtitle {
  margin: 0.75rem auto 2.5rem;
  text-align: left;
  max-width: 100%;
}

@media (min-width: 860px) {
  .about-grid .section-subtitle {
    margin-bottom: 3rem;
  }
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(74, 58, 40, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(217, 194, 152, 0.2);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  background-image: 
    radial-gradient(circle at 2px 2px, rgba(40, 113, 116, 0.2) 1px, transparent 0);
  background-size: 24px 24px;
  font-family: "Work Sans", "Montserrat", sans-serif;
  font-weight: 700;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo-image {
  height: auto;
  max-height: 60px;
  width: auto;
  display: block;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(40, 113, 116, 0.3);
  position: relative;
  overflow: hidden;
}

.logo-mark::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(237, 225, 206, 0.15), transparent);
  transform: rotate(45deg);
}

.logo-text {
  font-family: "Work Sans", "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.logo-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  margin-top: 0.1rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
}

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

.nav-cta {
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(40, 113, 116, 0.4);
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(40, 113, 116, 0.5);
}

/* Hero */

.hero {
  padding: 4rem 0 3rem;
}

.hero-grid {
  display: grid;
  gap: 2.75rem;
}

@media (min-width: 840px) {
  .hero-grid {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.8fr);
    align-items: center;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  background: rgba(40, 113, 116, 0.3);
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  border: 1px solid rgba(40, 113, 116, 0.4);
}

.hero-eyebrow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #100f0f;
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: clamp(2.3rem, 3.3vw + 1rem, 3.1rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

.hero-title span {
  color: var(--primary);
}

.hero-lede {
  margin: 0 0 1.5rem;
  color: var(--muted);
  max-width: 32rem;
  font-size: 1.05rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.8rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(74, 58, 40, 0.08);
  color: #100f0f;
  font-size: 0.78rem;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.btn-primary,
.btn-outline {
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  box-shadow: 0 12px 35px rgba(40, 113, 116, 0.4);
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 45px rgba(40, 113, 116, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(217, 194, 152, 0.6);
}

.btn-outline:hover {
  background: rgba(237, 225, 206, 0.12);
  border-color: rgba(217, 194, 152, 0.8);
}

.hero-footnote {
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-footnote strong {
  color: var(--text);
}

.hero-card {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  background-image: 
    radial-gradient(circle at 2px 2px, rgba(237, 225, 206, 0.06) 1px, transparent 0),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      rgba(237, 225, 206, 0.03) 10px,
      rgba(237, 225, 206, 0.03) 20px
    );
  background-size: 30px 30px, 40px 40px;
  color: var(--text);
  border-radius: 1.8rem;
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(237, 225, 206, 0.15);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 10% 0%, rgba(248, 149, 33, 0.18), transparent 55%),
              radial-gradient(circle at 90% 0%, rgba(91, 117, 146, 0.22), transparent 55%);
  opacity: 0.9;
}

.hero-card-inner {
  position: relative;
  z-index: 1;
}

.hero-card-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(74, 58, 40, 0.55);
  border: 1px solid rgba(217, 194, 152, 0.6);
  font-size: 0.75rem;
  margin-bottom: 1.2rem;
}

.hero-card-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0 0 0.35rem;
}

.hero-card-sub {
  font-size: 0.9rem;
  color: rgba(237, 225, 206, 0.9);
  margin-bottom: 1.5rem;
}

/* Contact Form Styles */
.hero-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

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

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 2px solid rgba(237, 225, 206, 0.35);
  background: rgba(237, 225, 206, 0.92);
  color: #100f0f;
  font-size: 0.9rem;
  font-family: inherit;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.form-input[type="tel"] {
  font-weight: 500;
  letter-spacing: 0.02em;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #9c8468;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(237, 225, 206, 0.98);
  box-shadow: 0 0 0 3px rgba(248, 149, 33, 0.3), 0 6px 16px rgba(0, 0, 0, 0.3);
}

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

.form-submit {
  width: 100%;
  padding: 0.85rem 1.5rem;
  border-radius: 0.75rem;
  border: none;
  background: var(--accent);
  color: #100f0f;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  box-shadow: 0 4px 12px rgba(248, 149, 33, 0.3);
}

.form-submit:hover {
  background: #ffa64d;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(248, 149, 33, 0.5);
}

.form-submit:active {
  transform: translateY(0);
}

.hero-form-note {
  font-size: 0.85rem;
  color: rgba(237, 225, 206, 0.8);
  text-align: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(237, 225, 206, 0.15);
}

.hero-form-note strong {
  color: var(--text);
}

.hero-form-note a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.hero-form-note a:hover {
  color: var(--accent);
  opacity: 0.9;
}

.hero-form-note a:active {
  opacity: 0.8;
}

.form-success,
.form-error {
  padding: 1rem;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  text-align: center;
}

.form-success {
  background: rgba(47, 79, 50, 0.25);
  color: var(--text);
  border: 1px solid rgba(47, 79, 50, 0.4);
}

.form-error {
  background: rgba(141, 47, 42, 0.25);
  color: var(--text);
  border: 1px solid rgba(141, 47, 42, 0.4);
}

/* Validation Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(217, 194, 152, 0.3);
  position: relative;
  animation: slideUp 0.3s ease;
}

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

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: rgba(217, 194, 152, 0.2);
  color: var(--text);
}

.modal-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.modal-subtitle {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.modal-review {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(40, 113, 116, 0.12);
  border-radius: 0.75rem;
  border: 1px solid rgba(40, 113, 116, 0.25);
}

.modal-review-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.modal-review-item strong {
  color: var(--text);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.modal-review-item span {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  word-break: break-word;
}

.modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.modal-btn-secondary,
.modal-btn-primary {
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.modal-btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(217, 194, 152, 0.4);
}

.modal-btn-secondary:hover {
  background: rgba(217, 194, 152, 0.12);
  border-color: rgba(217, 194, 152, 0.6);
}

.modal-btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--text);
  box-shadow: 0 4px 12px rgba(40, 113, 116, 0.4);
}

.modal-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(40, 113, 116, 0.5);
}

@media (max-width: 640px) {
  .modal-content {
    padding: 1.5rem;
  }

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

  .modal-btn-secondary,
  .modal-btn-primary {
    width: 100%;
  }
}

/* Services */

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

.service-card {
  background: var(--card-bg);
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(40, 113, 116, 0.3) 1px, transparent 0);
  background-size: 20px 20px;
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(217, 194, 152, 0.25);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  border-color: rgba(40, 113, 116, 0.5);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(40, 113, 116, 0.12), rgba(40, 113, 116, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(40, 113, 116, 0.2);
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
}

.service-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-top: 0.25rem;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  letter-spacing: 0.01em;
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.4rem;
}

/* About / stats */

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 860px) {
  .about-grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 6fr);
    align-items: center;
  }
}

.about-card {
  background: var(--card-bg);
  background-image: 
    linear-gradient(135deg, rgba(40, 113, 116, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 1px 1px, rgba(40, 113, 116, 0.3) 1px, transparent 0);
  background-size: 100% 100%, 25px 25px;
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(217, 194, 152, 0.3);
  position: relative;
  overflow: hidden;
}

.about-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-top: 0;
  margin-bottom: 1rem;
}

.about-body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  letter-spacing: 0.01em;
  margin-bottom: 0.5rem;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 1rem;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
}

.about-list li .process-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.about-list li .process-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 2px 4px rgba(15, 76, 117, 0.4));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.stat-chip {
  background: linear-gradient(135deg, #0f4c75 0%, #3282b8 100%);
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
  background-size: 20px 20px;
  color: #f1f5f9;
  border-radius: 1.3rem;
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(15, 76, 117, 0.5);
}

.stat-value {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.stat-label {
  font-size: 0.82rem;
  color: #e5e7eb;
  opacity: 0.9;
}

/* Testimonials */

.testimonials {
  background: linear-gradient(135deg, rgba(15, 76, 117, 0.15) 0%, rgba(15, 23, 42, 1) 100%);
}

.testimonial-row {
  display: grid;
  gap: 3rem;
}

@media (min-width: 900px) {
  .testimonial-row {
    grid-template-columns: minmax(0, 5fr) minmax(0, 4.5fr);
    align-items: center;
  }
}

.testimonial-card {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  background-image: 
    radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.04) 1px, transparent 0),
    linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
  background-size: 28px 28px, 100% 100%;
  color: #e5e7eb;
  border-radius: 1.6rem;
  padding: 2.5rem 2.25rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.testimonial-quote {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

.testimonial-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-secondary);
  opacity: 0.9;
}

.testimonial-dots {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  justify-content: center;
  align-items: center;
}

.dot {
  width: 12px;
  height: 12px;
  min-width: 12px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.5);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  margin: 0;
}

.dot:hover {
  background: rgba(148, 163, 184, 0.8);
  transform: scale(1.2);
}

.dot.active {
  width: 32px;
  min-width: 32px;
  height: 12px;
  border-radius: 999px;
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3);
}

.dot.active:hover {
  transform: scale(1.05);
}

/* Blog cards */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--card-bg);
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(15, 76, 117, 0.25) 1px, transparent 0);
  background-size: 22px 22px;
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(148, 163, 184, 0.25);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.blog-meta {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.blog-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin: 0.5rem 0 0.75rem;
}

.blog-excerpt {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  letter-spacing: 0.01em;
}

/* Photos Gallery */
.photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.photo-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(148, 163, 184, 0.25);
  transition: all 0.3s ease;
}

.photo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(15, 76, 117, 0.25) 1px, transparent 0);
  background-size: 22px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.photo-placeholder::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(237, 225, 206, 0.15), transparent);
  transform: rotate(45deg);
}

.photo-placeholder-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  z-index: 1;
}

.photo-placeholder-content svg {
  width: 48px;
  height: 48px;
  opacity: 0.6;
}

.photo-placeholder-text {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.7;
}

.photo-info {
  padding: 1.25rem 1.5rem;
}

.photo-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.photo-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--text);
}

/* CTA */

.cta {
  padding-bottom: 4.5rem;
}

.cta-inner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  background-image: 
    radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.06) 1px, transparent 0),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 8px,
      rgba(255, 255, 255, 0.02) 8px,
      rgba(255, 255, 255, 0.02) 16px
    );
  background-size: 32px 32px, 24px 24px;
  border-radius: 1.8rem;
  padding: 2.5rem 2rem;
  color: white;
  display: grid;
  gap: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

@media (min-width: 860px) {
  .cta-inner {
    grid-template-columns: minmax(0, 6fr) minmax(0, 4fr);
    align-items: center;
  }
}

.cta-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0 0 0.4rem;
}

.cta-text {
  font-size: 0.95rem;
  color: #e5e7eb;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

.cta-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cta-phone,
.cta-email {
  font-weight: 600;
  font-size: 1.1rem;
}

.cta-phone a,
.cta-email a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
  display: inline-block;
}

.cta-phone a:hover,
.cta-email a:hover {
  color: var(--accent);
  opacity: 0.9;
}

.cta-phone a:active,
.cta-email a:active {
  opacity: 0.8;
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  padding: 2.618rem 0 2rem;
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--bg-secondary);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 720px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.618rem;
  }
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 0.809rem;
}

.footer-heading {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.footer-services-list,
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-services-list li,
.footer-links li {
  margin: 0;
}

.footer-services-list a,
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.footer-services-list a:hover,
.footer-links a:hover {
  color: var(--accent);
}

.footer-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.618;
  margin: 0;
}

.footer-seo-text {
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.5;
  margin-top: 0.5rem;
  opacity: 0.8;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.618rem;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  text-align: center;
}

@media (min-width: 720px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

.footer-location {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

/* Mobile optimizations with golden ratio (1.618) */

@media (max-width: 640px) {
  .nav {
    display: none;
  }

  /* Golden ratio base: 1rem = 16px, 1.618rem ≈ 25.9px, 2.618rem ≈ 41.9px */
  
  /* Container and section spacing */
  .container {
    width: min(100% - 1.618rem, 100%);
    padding: 0 1rem;
  }

  .section {
    padding: 2.618rem 0;
  }

  .section-header {
    margin-bottom: 1.618rem;
    text-align: center;
  }

  .section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 0.618rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
    max-width: 100%;
    margin: 0.618rem auto 0;
    padding: 0 0.5rem;
  }

  /* Header */
  .header-inner {
    padding: 1rem 0;
  }

  .logo-mark {
    width: 2.618rem;
    height: 2.618rem;
    font-size: 0.75rem;
  }

  .logo-text {
    font-size: 1rem;
  }

  .nav-cta {
    padding: 0.618rem 1.236rem;
    font-size: 0.85rem;
  }

  /* Hero section */
  .hero {
    padding: 2.618rem 0 1.618rem;
    text-align: center;
  }

  .hero-grid {
    gap: 1.618rem;
  }

  .hero-eyebrow {
    margin-bottom: 1rem;
    font-size: 0.7rem;
  }

  .hero-title {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    text-align: center;
  }

  .hero-lede {
    font-size: 0.95rem;
    margin: 0 auto 1.618rem;
    max-width: 100%;
    text-align: center;
    padding: 0 0.5rem;
  }

  .hero-cta-row {
    justify-content: center;
    gap: 0.618rem;
    margin-bottom: 1.236rem;
  }

  .btn-primary,
  .btn-outline {
    padding: 0.809rem 1.618rem;
    font-size: 0.9rem;
    width: 100%;
    max-width: 280px;
  }

  .hero-footnote {
    font-size: 0.8rem;
    text-align: center;
    padding: 0 1rem;
  }

  /* Hero card */
  .hero-card {
    padding: 1.618rem 1.236rem;
    border-radius: 1.236rem;
    margin-top: 1.618rem;
  }

  .hero-card-title {
    font-size: 1.236rem;
    text-align: center;
    margin-bottom: 0.618rem;
  }

  .hero-card-sub {
    font-size: 0.85rem;
    text-align: center;
    margin-bottom: 1.236rem;
  }

  .hero-contact-form {
    gap: 0.809rem;
  }

  .form-input,
  .form-textarea {
    padding: 0.809rem 1rem;
    font-size: 0.9rem;
  }

  .form-submit {
    padding: 0.95rem 1.5rem;
    font-size: 0.95rem;
    margin-top: 0.618rem;
  }

  .hero-form-note {
    font-size: 0.8rem;
    margin-top: 1.236rem;
    padding-top: 1rem;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.236rem;
    padding: 0 0.5rem;
  }

  .service-card {
    padding: 1.618rem 1.236rem;
    text-align: center;
  }

  .service-icon {
    margin: 0 auto;
    width: 3.236rem;
    height: 3.236rem;
  }

  .service-icon svg {
    width: 1.8rem;
    height: 1.8rem;
  }

  .service-title {
    font-size: 1.1rem;
    margin-top: 0.618rem;
  }

  .service-desc {
    font-size: 0.9rem;
    line-height: 1.618;
  }

  /* About section */
  .about-grid {
    gap: 1.618rem;
    text-align: center;
  }

  .about-card {
    padding: 1.618rem 1.236rem;
  }

  .about-title {
    font-size: 1.236rem;
    margin-bottom: 0.809rem;
  }

  .about-body {
    font-size: 0.9rem;
    line-height: 1.618;
  }

  .about-list {
    gap: 0.809rem;
    margin-top: 1.236rem;
    text-align: left;
  }

  .about-list li {
    font-size: 0.9rem;
    line-height: 1.618;
  }

  /* Stats grid */
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.618rem;
  }

  .stat-chip {
    padding: 1.236rem 1rem;
    text-align: center;
  }

  .stat-value {
    font-size: 1.1rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  /* Testimonials */
  .testimonial-row {
    gap: 1.618rem;
    text-align: center;
  }

  .testimonial-card {
    padding: 1.618rem 1.236rem;
  }

  .testimonial-quote {
    font-size: 0.9rem;
    line-height: 1.618;
    margin-bottom: 1rem;
  }

  .testimonial-dots {
    justify-content: center;
    margin-top: 1.236rem;
  }

  /* Blog */
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.236rem;
    padding: 0 0.5rem;
  }

  .blog-card {
    padding: 1.236rem 1rem;
  }

  .blog-title {
    font-size: 1rem;
  }

  .blog-excerpt {
    font-size: 0.85rem;
    line-height: 1.618;
  }

  /* Photos */
  .photos-grid {
    grid-template-columns: 1fr;
    gap: 1.236rem;
    padding: 0 0.5rem;
  }

  .photo-info {
    padding: 1rem 1.236rem;
  }

  .photo-title {
    font-size: 0.95rem;
  }

  /* CTA */
  .cta {
    padding-bottom: 2.618rem;
  }

  .cta-inner {
    padding: 1.618rem 1.236rem;
    text-align: center;
    border-radius: 1.236rem;
  }

  .cta-title {
    font-size: 1.236rem;
    margin-bottom: 0.618rem;
  }

  .cta-text {
    font-size: 0.9rem;
    line-height: 1.618;
    margin-bottom: 1.236rem;
  }

  .cta-contact {
    align-items: center;
    gap: 0.809rem;
  }

  .cta-phone,
  .cta-email {
    font-size: 1rem;
    text-align: center;
  }

  /* Footer */
  .site-footer {
    padding: 1.618rem 0;
    text-align: center;
  }

  .footer-row {
    gap: 1rem;
  }

  .footer-links {
    justify-content: center;
    gap: 1rem;
  }
}
