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

:root {
  --color-bg: #fafafa;
  --color-surface: #ffffff;
  --color-text: #1a1a1a;
  --color-text-secondary: #6b6b6b;
  --color-accent: #1a1a1a;
  --color-accent-hover: #333333;
  --color-border: #e5e5e5;
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1280px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: none;
  transition: background 0.3s, border-color 0.3s;
}

.nav.solid {
  background: rgba(250, 250, 250, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.nav.scrolled {
  background: rgba(250, 250, 250, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

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

.nav-logo {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
  color: #ffffff;
  transition: color 0.3s;
}

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

.nav-logo span {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
}

.nav.solid .nav-logo span,
.nav.scrolled .nav-logo span { color: var(--color-text-secondary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.nav-links a:hover { color: #ffffff; }
.nav.solid .nav-links a,
.nav.scrolled .nav-links a { color: var(--color-text-secondary); }
.nav.solid .nav-links a:hover,
.nav.scrolled .nav-links a:hover { color: var(--color-text); }

.nav-links a.active { color: var(--color-text); font-weight: 600; }
.nav:not(.solid):not(.scrolled) .nav-links a.active { color: #ffffff; }

.nav-cta {
  font-size: 14px;
  font-weight: 500;
  padding: 10px 24px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  border-radius: 100px;
  transition: all 0.2s;
  cursor: pointer;
}

.nav-cta:hover {
  background: #ffffff;
  color: var(--color-text);
  border-color: #ffffff;
}

.nav.solid .nav-cta,
.nav.scrolled .nav-cta {
  border-color: var(--color-text);
  color: var(--color-text);
}

.nav.solid .nav-cta:hover,
.nav.scrolled .nav-cta:hover {
  background: var(--color-text);
  color: white;
}

/* ── Hero (Homepage) ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.35) 0%,
      rgba(0, 0, 0, 0.15) 40%,
      rgba(0, 0, 0, 0.3) 100%
    ),
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.35) 50%,
      rgba(0, 0, 0, 0.25) 100%
    );
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-inner--centered {
  align-items: flex-start;
  text-align: left;
}

.hero-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-brand {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 24px;
}

.hero-brand-divider {
  width: 1px;
  height: 150px;
  background: rgba(255, 255, 255, 0.4);
}

.hero-logo {
  width: 375px;
  height: 375px;
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.4));
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(68px, 9vw, 120px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-align: left;
  margin: 0;
}

.hero-tagline {
  font-family: var(--font-sans);
  font-size: clamp(20px, 3vw, 52px);
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 300;
  white-space: nowrap;
  text-align: center;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 120px;
  padding: 24px 48px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  align-self: center;
}

.hero-stat {
  text-align: center;
  flex: none;
}

.hero-stat-number {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 40px);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.2;
}

.hero-stat-label {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 6px;
}

.hero-subtitle {
  max-width: 440px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.3);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ── Page Header (Interior pages) ── */
.page-header {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  color: #ffffff;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.15) 100%),
    linear-gradient(to right, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 70%);
}

.page-header-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 160px 40px 60px;
  width: 100%;
}

.page-header-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
  padding: 6px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
}

.page-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: 650px;
}

.page-header p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
  line-height: 1.7;
}

.page-header-breadcrumb {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 40px;
  font-size: 13px;
  color: var(--color-text-secondary);
}

.page-header-breadcrumb a {
  color: var(--color-text-secondary);
  transition: color 0.2s;
}

.page-header-breadcrumb a:hover {
  color: var(--color-text);
}

.page-header-breadcrumb span {
  margin: 0 8px;
  opacity: 0.4;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  padding: 16px 36px;
  background: #ffffff;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.88);
}

.btn-dark {
  display: inline-block;
  padding: 16px 36px;
  background: var(--color-accent);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-dark:hover {
  background: var(--color-accent-hover);
}

.btn-hero-outline {
  display: inline-block;
  padding: 16px 36px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-hero-outline:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline {
  display: inline-block;
  padding: 14px 32px;
  border: 1.5px solid var(--color-text);
  color: var(--color-text);
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-outline:hover {
  background: var(--color-text);
  color: white;
}

/* ── Section Shared ── */
.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 100px 40px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 56px;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  max-width: 500px;
}

.section-header p {
  max-width: 340px;
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

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

.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 36px 30px;
  transition: box-shadow 0.3s, transform 0.3s;
}

.service-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

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

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-text);
}

.service-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ── Tab Toggle ── */
.projects-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.projects-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.2;
}

.tab-toggle {
  display: flex;
  gap: 4px;
  background: var(--color-text);
  border-radius: 12px;
  padding: 5px;
}

.tab-btn {
  padding: 14px 36px;
  border: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  border-radius: 9px;
  cursor: pointer;
  transition: all 0.3s;
}

.tab-btn.active {
  background: var(--color-surface);
  color: var(--color-text);
}

.tab-content {
  animation: tabFadeIn 0.4s ease;
}

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

/* ── Plans Grid ── */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.plans-hint {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  color: #fff;
  background: var(--color-text);
  padding: 8px 18px;
  border-radius: 20px;
  margin-left: 12px;
  vertical-align: middle;
  white-space: nowrap;
  display: inline-block;
  position: relative;
  top: -4px;
}

#plans .section-header h2 {
  max-width: none;
}

.plan-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.3s;
}

.plan-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.plan-card-thumb {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.plan-card-thumb::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0);
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plan-card:hover .plan-card-thumb::after {
  background: rgba(0,0,0,0.4);
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none' viewBox='0 0 24 24' stroke='white' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M3.75 3.75v4.5m0-4.5h4.5m-4.5 0L9 9M3.75 20.25v-4.5m0 4.5h4.5m-4.5 0L9 15M20.25 3.75h-4.5m4.5 0v4.5m0-4.5L15 9m5.25 11.25h-4.5m4.5 0v-4.5m0 4.5L15 15'/%3E%3C/svg%3E");
}

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

.plan-card h3 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  padding: 16px 20px;
}

/* ── PDF Modal ── */
.pdf-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.pdf-modal.open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdf-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.pdf-modal-content {
  position: relative;
  width: 90%;
  height: 90%;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.pdf-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  z-index: 10;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.pdf-modal-close:hover {
  background: rgba(0,0,0,0.8);
}

.pdf-modal iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ── Projects Section ── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.project-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}

.project-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.project-thumb {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.project-thumb img,
.project-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.project-card:hover .project-thumb img,
.project-card:hover .project-thumb video {
  transform: scale(1.04);
}

.project-card--video {
  grid-column: span 2;
  grid-row: span 2;
  position: relative;
}

.project-card--video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 80%;
  display: block;
}

.project-info {
  padding: 24px;
}

.project-info-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}

.project-info h3 {
  font-size: 16px;
  font-weight: 600;
}

.project-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-secondary);
  background: var(--color-bg);
  padding: 4px 12px;
  border-radius: 100px;
}

.project-info .location {
  font-size: 13px;
  color: var(--color-text-secondary);
  margin-bottom: 14px;
}

.project-meta {
  display: flex;
  gap: 20px;
  font-size: 12px;
  color: var(--color-text-secondary);
}

.project-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ── Process / How It Works ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 36px 28px;
}

.process-number {
  font-family: var(--font-serif);
  font-size: 48px;
  color: var(--color-border);
  line-height: 1;
  margin-bottom: 20px;
}

.process-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
}

.process-card p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ── Stats Banner ── */
.stats {
  background: var(--color-text);
  color: white;
  border-radius: 20px;
  margin: 0 40px;
  max-width: calc(var(--max-width) - 80px);
  margin-left: auto;
  margin-right: auto;
}

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

.stat-number {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 400;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

/* ── Testimonials ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 40px;
}

.testimonial-stars {
  color: #f5a623;
  font-size: 16px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 24px;
  font-style: normal;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-secondary);
}

.testimonial-name {
  font-size: 14px;
  font-weight: 600;
}

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

/* ── CTA Section ── */
.cta-section {
  text-align: center;
  padding: 80px 40px 100px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.cta-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 15px;
  color: var(--color-text-secondary);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

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

/* ── Contact Form ── */
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  background: var(--color-surface);
  color: var(--color-text);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-text);
}

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

/* ── Content blocks ── */
.text-content {
  max-width: 700px;
}

.text-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
}

.text-content p {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

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

/* ── Two column layout ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col-image {
  border-radius: 14px;
  overflow: hidden;
  height: 400px;
}

.two-col-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Team Grid ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
}

.team-photo {
  height: 280px;
  overflow: hidden;
  background: var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 600;
  color: var(--color-text-secondary);
}

.team-card-info {
  padding: 24px;
}

.team-card-info h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.team-card-info p {
  font-size: 13px;
  color: var(--color-text-secondary);
}

/* ── Values Grid ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  padding: 36px 30px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
}

.value-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

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

/* ── Service Detail ── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  padding: 60px 0;
  border-bottom: 1px solid var(--color-border);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail-image {
  border-radius: 14px;
  overflow: hidden;
  height: 340px;
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-content h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 16px;
}

.service-detail-content p {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.service-detail-content ul {
  list-style: none;
  margin-top: 20px;
}

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

.service-detail-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 6px;
  height: 6px;
  background: var(--color-text);
  border-radius: 50%;
}

/* ── Contact Info Cards ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

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

.contact-info-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-card .icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--color-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-card .icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-text);
}

.contact-info-card h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ── Project Detail ── */
.project-detail-hero {
  height: 360px;
  overflow: hidden;
}

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

.project-detail-stats {
  display: flex;
  gap: 40px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 24px;
}

.project-detail-stats div {
  font-size: 14px;
}

.project-detail-stats strong {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-secondary);
  margin-bottom: 4px;
  font-weight: 500;
}

/* ── Timeline ── */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--color-border);
}

.timeline-item {
  position: relative;
  padding-bottom: 48px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -29px;
  top: 8px;
  width: 10px;
  height: 10px;
  background: var(--color-text);
  border-radius: 50%;
}

.timeline-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.timeline-item .timeline-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-secondary);
  margin-bottom: 12px;
}

.timeline-item p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 500px;
}

/* ── FAQ ── */
.faq-list {
  max-width: 760px;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 24px 0;
}

.faq-item summary {
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--color-text-secondary);
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  padding-top: 14px;
  max-width: 640px;
}

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--color-border);
  background: var(--color-surface);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand .nav-logo {
  color: var(--color-text);
}

.footer-brand .nav-logo span {
  color: var(--color-text-secondary);
}

.footer-brand p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 12px;
}

.footer ul a {
  font-size: 14px;
  color: var(--color-text-secondary);
  transition: color 0.2s;
}

.footer ul a:hover { color: var(--color-text); }

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 40px;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--color-text-secondary);
}

/* ── Mobile Menu Toggle ── */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: background 0.3s;
}

.nav.solid .mobile-toggle span,
.nav.scrolled .mobile-toggle span {
  background: var(--color-text);
}

/* ── Mobile Menu ── */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 20px 24px 32px;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}

.mobile-menu a {
  padding: 14px 0;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
}

.mobile-menu-cta {
  margin-top: 20px;
  padding: 14px 0 !important;
  text-align: center;
  background: var(--color-text);
  color: #fff !important;
  border: none !important;
  border-radius: 8px;
}

.nav.menu-open {
  background: var(--color-surface) !important;
}

.nav.menu-open .mobile-menu {
  display: flex;
}

.nav.menu-open .nav-logo {
  color: var(--color-text);
}

.nav.menu-open .nav-logo span {
  color: var(--color-text-secondary);
}

.nav.menu-open .mobile-toggle span {
  background: var(--color-text);
}

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

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

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

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid,
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .project-card--video { grid-column: span 2; min-height: 350px; }
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .mobile-toggle { display: flex; }

  .hero { min-height: 100vh; min-height: 100dvh; }
  .hero-inner { padding-bottom: 60px; }
  .hero-inner--centered { align-items: center; text-align: center; }
  .hero-brand { flex-direction: column; gap: 20px; }
  .hero-brand-divider { width: 60px; height: 1px; }
  .hero-logo { width: 180px; height: 180px; }
  .hero h1 { text-align: center; font-size: clamp(36px, 10vw, 54px); }
  .hero-tagline { font-size: clamp(14px, 3.5vw, 20px); text-align: center; }
  .hero-stats { flex-wrap: wrap; gap: 16px; padding: 16px 20px; justify-content: center; margin-top: 60px; }
  .hero-stat { flex: 0 0 calc(50% - 8px); }
  .hero-stat-number { font-size: clamp(22px, 5vw, 32px); }
  .hero-stat-label { font-size: 10px; }
  .projects-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .tab-btn { padding: 12px 28px; font-size: 15px; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
  .section-header { flex-direction: column; align-items: flex-start; }

  .services-grid,
  .projects-grid { grid-template-columns: 1fr; }
  .project-card--video { grid-column: span 1; grid-row: span 1; position: relative; min-height: 400px; }
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-hint { display: block; margin-left: 0; margin-top: 12px; width: fit-content; }
  .section-header h2 { max-width: none; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr; padding: 40px 30px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 30px; }
  .service-detail { grid-template-columns: 1fr; gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }

  .section { padding: 60px 20px; }
  .nav-inner { padding: 0 20px; }
  .hero-inner { padding: 0 20px 60px; }
  .stats { margin: 0 20px; }
  .cta-section { padding: 60px 20px 80px; }
  .footer-inner { padding: 40px 20px; }
  .footer-bottom { padding: 20px; flex-direction: column; gap: 8px; }
  .page-header { min-height: 380px; }
  .page-header-inner { padding: 120px 20px 40px; }
  .page-header-breadcrumb { padding: 16px 20px; }

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