@charset "utf-8";

/* ─── Reset & Base ─────────────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

:root {
  --bg:        #F5F2EF;
  --bg-alt:    #EDEAE6;
  --dark:      #2C2C2C;
  --accent:    #8B5E3C;
  --accent-lt: #A8784F;
  --text:      #1A1A1A;
  --text-mid:  #5A5A5A;
  --text-soft: #8A8A8A;
  --white:     #FFFFFF;
  --card:      #FFFFFF;
  --border:    rgba(44, 44, 44, 0.1);
  --shadow-sm: 0 2px 8px rgba(44,44,44,0.07);
  --shadow-md: 0 8px 32px rgba(44,44,44,0.10);
  --shadow-lg: 0 20px 60px rgba(44,44,44,0.13);
  --radius:    14px;
  --radius-sm: 8px;
  --nav-h:     76px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── Typography ───────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
  color: var(--dark);
}

/* ─── Scrollbar ────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

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

/* ─── Loading ──────────────────────────────────────────────────────── */
.loading-screen {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}
.loading-screen.hidden { opacity: 0; pointer-events: none; }
.loader {
  width: 34px; height: 34px;
  border: 2px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── Header ───────────────────────────────────────────────────────── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(245, 242, 239, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  z-index: 1000;
  transition: border-color 0.3s ease, background 0.3s ease;
}
header.scrolled {
  border-bottom-color: var(--border);
  background: rgba(245, 242, 239, 0.97);
}
nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--dark);
}
.logo-mark {
  width: 40px; height: 40px;
  background: var(--accent);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.logo:hover .logo-mark { transform: rotate(-5deg) scale(1.05); }
.logo-text {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: var(--dark);
}
@media (max-width: 480px) { .logo-text { display: none; } }

.nav-menu {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}
.nav-menu a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-menu a:hover {
  color: var(--dark);
  background: rgba(44,44,44,0.06);
}
.nav-menu a.active { color: var(--accent); }
.nav-menu .nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 999px;
  font-weight: 600;
  margin-left: 8px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.nav-menu .nav-cta:hover {
  background: var(--accent-lt);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(139,94,60,0.28);
}

/* Mobile toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── Hero ─────────────────────────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--dark);
  padding-top: var(--nav-h);
}

.hero-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.58);
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(139,94,60,0.18) 0%, transparent 65%);
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  padding: 0 24px;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-lt);
  margin-bottom: 24px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero-title em {
  font-style: italic;
  color: rgba(255,255,255,0.72);
}
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.62);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 44px;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.cta-button {
  display: inline-block;
  padding: 16px 40px;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 999px;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.cta-button:hover {
  background: var(--accent-lt);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(139,94,60,0.35);
}
.cta-button--outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
}
.cta-button--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  box-shadow: none;
}
.cta-button--accent-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}
.cta-button--accent-outline:hover {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(139,94,60,0.25);
}
.portfolio-cta {
  text-align: center;
  padding: 52px 0 80px;
}
.cta-link {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}
.cta-link:hover { color: rgba(255,255,255,0.9); }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-decoration: none;
  animation: scrollBounce 2.4s ease-in-out infinite;
}
.hero-scroll span {
  display: block;
  width: 18px; height: 18px;
  border-right: 1.5px solid rgba(255,255,255,0.3);
  border-bottom: 1.5px solid rgba(255,255,255,0.3);
  transform: rotate(45deg);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.4; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 1; }
}

/* ─── Section Headers ──────────────────────────────────────────────── */
.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 24px;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 32px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.section-subtitle {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ─── Benefits ─────────────────────────────────────────────────────── */
.benefits-section {
  padding: 80px 0 100px;
  background: var(--bg);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.benefit-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(139,94,60,0.2);
}
.benefit-icon {
  width: 52px; height: 52px;
  margin: 0 auto 20px;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139,94,60,0.08);
  border-radius: 12px;
  padding: 10px;
}
.benefit-icon svg { width: 100%; height: 100%; }
.benefit-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.benefit-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ─── Services ─────────────────────────────────────────────────────── */
.services-section {
  padding: 100px 0 120px;
  background: var(--bg-alt);
  position: relative;
}
.services-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.services-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 3px solid rgba(139,94,60,0.18);
  border-radius: var(--radius);
  padding: 40px 32px 36px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-top-color 0.35s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--accent);
}
.service-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  color: var(--accent);
  background: rgba(139,94,60,0.08);
  border-radius: 14px;
  padding: 12px;
  transition: background 0.35s ease, transform 0.35s ease;
}
.service-icon svg { width: 100%; height: 100%; }
.service-card:hover .service-icon {
  background: rgba(139,94,60,0.15);
  transform: scale(1.08);
}
.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.service-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  flex: 1;
}
.service-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: gap 0.2s ease, opacity 0.2s ease;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.service-card:hover .service-link {
  opacity: 1;
  transform: translateY(0);
}
.service-card {
  display: flex;
  flex-direction: column;
}

/* ─── Process ──────────────────────────────────────────────────────── */
.process-section {
  padding: 100px 0 80px;
  background: var(--bg);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 12px);
  right: calc(16.66% + 12px);
  height: 1px;
  background: linear-gradient(90deg, var(--accent), rgba(139,94,60,0.3), var(--accent));
  z-index: 0;
}
.process-step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px 32px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.step-bubble {
  width: 64px; height: 64px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  color: var(--white);
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(139,94,60,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.process-step:hover .step-bubble {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(139,94,60,0.4);
}
.step-bubble svg { width: 28px; height: 28px; }
.step-connector { display: none; }
.step-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.6;
}
.step-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.step-content p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
}
.process-cta {
  text-align: center;
  margin-top: 52px;
}

/* ─── Portfolio images ─────────────────────────────────────────────── */
.portfolio-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.portfolio-item:hover .portfolio-img { transform: scale(1.05); }

/* carousel real images */
.carousel-item .portfolio-img {
  position: absolute;
  inset: 0;
  height: 100%;
}

/* ─── Portfolio Section ────────────────────────────────────────────── */
.portfolio-section {
  padding: 100px 0 0;
  background: var(--bg);
}
.portfolio-section .section-header {
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto 50px;
  text-align: center;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 6px;
  max-width: 1400px;
  margin: 0 auto;
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.portfolio-item--large {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.portfolio-item .portfolio-placeholder {
  width: 100%; height: 100%;
  min-height: unset;
  transition: transform 0.5s ease;
}
.portfolio-item:hover .portfolio-placeholder { transform: scale(1.04); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,44,44,0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay span {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ─── Mobile Carousel ──────────────────────────────────────────────── */
.d-none { display: none !important; }
.d-md-none { display: none !important; }
.d-md-grid { display: none !important; }
@media (min-width: 768px) {
  .d-md-none { display: none !important; }
  .d-md-grid { display: grid !important; }
}
@media (max-width: 767.98px) {
  .d-md-none { display: block !important; }
  .d-md-grid { display: none !important; }
}

.carousel {
  position: relative;
  width: calc(100% - 48px);
  max-width: 600px;
  margin: 20px auto 60px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}
.carousel-inner {
  width: 100%;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.carousel-track.dragging { transition: none !important; }
.carousel-item {
  flex: 0 0 100%;
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
}
.carousel-indicators {
  position: absolute;
  left: 0; right: 0; bottom: 14px;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 3;
}
.carousel-indicators button {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.carousel-indicators button.active,
.carousel-indicators button:hover {
  background: var(--accent);
  transform: scale(1.25);
}
.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(245,242,239,0.85);
  backdrop-filter: blur(8px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, transform 0.25s;
  z-index: 3;
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.carousel-control-prev { left: 12px; }
.carousel-control-next { right: 12px; }
.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 16px; height: 16px;
  background-size: 100%;
  background-repeat: no-repeat;
}
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%232C2C2C' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M15 18l-6-6 6-6'/%3E%3C/svg%3E");
}
.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%232C2C2C' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M9 6l6 6-6 6'/%3E%3C/svg%3E");
}
.carousel-control-prev:hover .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23fff' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M15 18l-6-6 6-6'/%3E%3C/svg%3E");
}
.carousel-control-next:hover .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23fff' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M9 6l6 6-6 6'/%3E%3C/svg%3E");
}

/* ─── Reviews ──────────────────────────────────────────────────────── */
.reviews-section {
  padding: 100px 0 120px;
  background: var(--bg-alt);
  position: relative;
}
.reviews-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.reviews-aggregate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}
.reviews-aggregate .stars { color: var(--accent); font-size: 18px; letter-spacing: 2px; }
.reviews-aggregate .score { font-size: 18px; font-weight: 700; color: var(--dark); }
.reviews-aggregate .count { font-size: 14px; color: var(--text-soft); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.review-stars {
  color: var(--accent);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.review-text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 24px;
  font-style: italic;
}
.review-footer { border-top: 1px solid var(--border); padding-top: 18px; }
.reviewer-info {
  display: flex;
  align-items: center;
  gap: 14px;
}
.reviewer-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  flex-shrink: 0;
}
.reviewer-name { font-size: 14px; font-weight: 600; color: var(--dark); }
.reviewer-detail { font-size: 12px; color: var(--text-soft); margin-top: 2px; }

/* ─── About ────────────────────────────────────────────────────────── */
.about-section {
  padding: 120px 0;
  background: var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  display: block;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-photo:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}
.about-content .section-eyebrow { text-align: left; }
.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 28px;
  padding-bottom: 22px;
  position: relative;
}
.about-content h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.about-content p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 16px;
}
.about-content p:last-of-type { margin-bottom: 32px; }
.about-stats {
  display: flex;
  gap: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-label { font-size: 12px; color: var(--text-soft); font-weight: 500; }

/* ─── Contact ──────────────────────────────────────────────────────── */
.contact-section {
  padding: 100px 0 120px;
  background: var(--bg-alt);
  position: relative;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}

.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 40px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.3px;
}
.form-group input,
.form-group textarea {
  padding: 13px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  resize: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-soft); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: var(--white);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-submit {
  padding: 15px 36px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  align-self: flex-start;
}
.form-submit:hover {
  background: var(--accent-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139,94,60,0.3);
}
.form-note {
  font-size: 12px;
  color: var(--text-soft);
  line-height: 1.5;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.contact-card:not(.contact-card--static):hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(139,94,60,0.25);
}
.contact-card--static { cursor: default; }
.contact-card-icon {
  width: 44px; height: 44px;
  background: rgba(139,94,60,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-card-icon svg { width: 22px; height: 22px; }
.contact-card-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-soft);
  margin-bottom: 4px;
}
.contact-card-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
}
a.contact-card:hover .contact-card-value { color: var(--accent); }

/* ─── Footer ───────────────────────────────────────────────────────── */
footer {
  background: var(--dark);
  padding: 64px 0 32px;
  color: rgba(255,255,255,0.55);
}
.footer-content {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 60px;
  align-items: start;
  margin-bottom: 48px;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.logo-mark--small {
  width: 34px; height: 34px;
  font-size: 18px;
  border-radius: 8px;
}
.footer-brand .footer-logo span {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
}
.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a, .footer-contact a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--accent-lt); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-credit { font-size: 12px; color: rgba(255,255,255,0.22); }
.footer-credit a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-credit a:hover { color: var(--accent-lt); }

/* ─── FAB ──────────────────────────────────────────────────────────── */
.fab-call {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 900;
  display: none;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 18px;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 6px 24px rgba(139,94,60,0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  overflow: hidden;
  white-space: nowrap;
}
.fab-call svg { width: 20px; height: 20px; flex-shrink: 0; }
.fab-call span {
  font-size: 0;
  transition: font-size 0.3s ease;
  overflow: hidden;
  max-width: 0;
}
.fab-call:hover {
  background: var(--accent-lt);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(139,94,60,0.5);
}
.fab-call:hover span {
  font-size: 14px;
  max-width: 160px;
}

/* ─── Carousel Lightbox ────────────────────────────────────────────── */
.clb {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.clb.lb-visible { opacity: 1; }
.clb-img {
  max-width: 94vw;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 4px;
  display: block;
  transition: opacity 0.15s ease;
}
.clb-close {
  position: absolute; top: 16px; right: 18px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  background: none;
  color: rgba(255,255,255,0.75);
  font-size: 22px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
  z-index: 2;
}
.clb-close:hover { background: rgba(255,255,255,0.12); color: #fff; }
.clb-prev, .clb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: none;
  color: rgba(255,255,255,0.65);
  font-size: 32px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  z-index: 2; line-height: 1;
}
.clb-prev:hover, .clb-next:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--accent);
  color: #fff;
}
.clb-prev { left: 14px; }
.clb-next { right: 14px; }
.clb-counter {
  position: absolute; bottom: 20px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  font-size: 12px; letter-spacing: 2px;
}
/* kurzor na slidech signalizuje kliknutelnost */
.carousel-item { cursor: zoom-in; }

/* ─── Reveal animations ────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.active {
  opacity: 1;
  transform: none;
}

/* ─── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 48px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info { display: grid; grid-template-columns: repeat(2, 1fr); }
  .footer-content { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }

  .menu-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: var(--nav-h); left: -100%;
    width: 100%; height: auto;
    background: rgba(245,242,239,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px 0 36px;
    gap: 4px;
    align-items: stretch;
    transition: left 0.3s ease;
    border-bottom: 1px solid var(--border);
    z-index: 999;
  }
  .nav-menu.active { left: 0; }
  .nav-menu li { text-align: center; }
  .nav-menu a { display: block; padding: 14px 24px; font-size: 16px; }
  .nav-menu .nav-cta { margin: 8px 24px 0; border-radius: var(--radius-sm); }

  .hero-title { letter-spacing: -0.5px; }
  .hero-subtitle br { display: none; }
  .hero-actions { gap: 18px; }
  .cta-link { display: none; }

  .benefits-grid { grid-template-columns: 1fr; gap: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .services-section { padding: 80px 0 100px; }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .process-steps::before { display: none; }

  .portfolio-section { padding: 80px 0 0; }

  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-section { padding: 80px 0 100px; }

  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-content .section-eyebrow { text-align: center; }
  .about-content h2 { text-align: center; }
  .about-content h2::after { left: 50%; transform: translateX(-50%); }
  .about-content p { text-align: center; }
  .about-stats { justify-content: center; }

  .contact-section { padding: 80px 0 100px; }
  .contact-form { padding: 28px 20px; }
  .contact-info { grid-template-columns: 1fr; }

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

  .fab-call { display: flex; }
}

@media (max-width: 480px) {
  .hero-section { padding: 0; }
  .benefits-section { padding: 60px 0 80px; }
  .about-stats { gap: 24px; flex-wrap: wrap; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item--large { grid-column: span 1; aspect-ratio: 4/3; }
}
