@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* ========================================
   CSS VARIABLES — LIGHT PALETTE
   ======================================== */

:root {
  --bg: #f8f7f4;
  --bg-warm: #f2f0eb;
  --text: #1c1c1c;
  --text-soft: #555555;
  --text-muted: #999999;
  --accent: #2c2c2c;
  --accent-hover: #444444;
  --border: #e4e2dd;
  --card-bg: #ffffff;
  --white: #ffffff;
  --hero-bg: #eae8e3;
  --tag-bg: #edecea;
  --tag-active-bg: #1c1c1c;
  --tag-active-text: #ffffff;
  --nav-height: 72px;
  --radius: 4px;
  --radius-sm: 3px;
  --radius-pill: 100px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.08);
  --transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
}

/* ========================================
   RESET & BASE
   ======================================== */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-weight: 400;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
button { font-family: var(--font-body); cursor: pointer; border: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3 { font-family: var(--font-display); color: var(--text); }

h1 {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
}

p {
  color: var(--text-soft);
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 0.5rem;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  transition: var(--transition);
}

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

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

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

/* ========================================
   NAVIGATION
   ======================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}

.navbar {
  height: var(--nav-height);
  display: flex;
  align-items: center;
}

.navbar-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.navbar-link {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--text-soft);
  padding: 0.25rem 0;
  position: relative;
  letter-spacing: 0.01em;
}

.navbar-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--text);
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.navbar-link:hover {
  color: var(--text);
}

.navbar-link:hover::after,
.navbar-link.active::after {
  width: 100%;
}

.navbar-link.active {
  color: var(--text);
  font-weight: 500;
}

/* scrolled state */
.header.scrolled {
  background: rgba(248, 247, 244, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: var(--transition);
  border-radius: 1px;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
}
.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}

/* ========================================
   HERO
   ======================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hero-bg);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hero.has-image {
  background-color: #1c1c1c;
}

.hero.has-image::before {
  background: rgba(0,0,0,0.35);
}

.hero.has-image .site-title,
.hero.has-image .tagline {
  color: #fff;
}

.hero.has-image .tagline {
  opacity: 0.85;
}

/* Glass button — shown on hero with background image or video */
.hero-btn {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px) saturate(1.4);
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255,255,255,0.25);
  letter-spacing: 0.04em;
  transition: background 0.25s, box-shadow 0.25s, transform 0.2s;
}

.hero-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255,255,255,0.35);
  transform: translateY(-2px);
}

/* On plain (no image) hero, keep it grounded */
.hero:not(.has-image) .hero-btn {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  text-shadow: none;
  box-shadow: none;
}

.hero:not(.has-image) .hero-btn:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: var(--shadow-md);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(200,195,185,0.4) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 70%, rgba(210,205,195,0.3) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  text-align: center;
  max-width: 720px;
  padding: 2rem;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.hero-content .site-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.hero-content .tagline {
  font-size: 1.125rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}

.hero-content .btn {
  padding: 1rem 2.5rem;
}

/* ========================================
   PAGE HEADER (inner pages)
   ======================================== */

.page-header {
  padding: 8rem 0 3rem;
  text-align: center;
}

.page-header h1 {
  margin-bottom: 0.25rem;
}

/* ========================================
   TAG FILTER
   ======================================== */

.tag-filter {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
}

.tag-pills {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
  justify-content: center;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  background: var(--tag-bg);
  color: var(--text-soft);
  font-size: 0.875rem;
  font-weight: 500;
  border: 1.5px solid transparent;
  transition: var(--transition);
  cursor: pointer;
}

.tag-pill:hover {
  background: var(--border);
  color: var(--text);
}

.tag-pill.active {
  background: var(--tag-active-bg);
  color: var(--tag-active-text);
  border-color: var(--tag-active-bg);
}

/* ========================================
   PHOTO GRID
   ======================================== */

.photos-section { padding-bottom: 5rem; }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.photo-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--card-bg);
  cursor: pointer;
  transition: var(--transition);
  aspect-ratio: 1/1;
}

.photo-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

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

.photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.75rem 1.25rem 1.25rem;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
  transform: translateY(8px);
  opacity: 0;
  transition: var(--transition);
}

.photo-card:hover .photo-overlay {
  transform: translateY(0);
  opacity: 1;
}

.photo-overlay h3 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.photo-tags { display: flex; gap: 0.375rem; flex-wrap: wrap; }

.tag-badge {
  display: inline-block;
  font-size: 0.6875rem;
  padding: 0.175rem 0.5rem;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  color: #fff;
  border-radius: var(--radius-pill);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.no-photos {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted);
}

/* ========================================
   FEATURED WORK (homepage)
   ======================================== */

.featured-work {
  padding: 4rem 0;
}

/* Single-row strip of featured photos */
.featured-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.625rem;
  overflow: hidden;
}

.featured-strip-item {
  aspect-ratio: 1 / 1;
}

@media (max-width: 1024px) {
  .featured-strip { grid-template-columns: repeat(4, 1fr); }
  /* Hide last 2 items so it stays one row */
  .featured-strip-item:nth-child(n+5) { display: none; }
}

@media (max-width: 640px) {
  .featured-strip { grid-template-columns: repeat(3, 1fr); }
  .featured-strip-item:nth-child(n+4) { display: none; }
}

/* ========================================
   ABOUT PAGE
   ======================================== */

.about-page {
  padding-top: 7rem;
  padding-bottom: 4rem;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-section { border-radius: var(--radius); overflow: hidden; }

.about-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-image-placeholder {
  width: 100%;
  height: 520px;
  background: var(--hero-bg);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.about-text-section h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.about-text p {
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

/* ========================================
   CONTACTS PAGE
   ======================================== */

.contacts-page {
  padding-bottom: 4rem;
}

.contacts-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info-section h2 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item h3 {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.375rem;
}

.contact-item p,
.contact-item a {
  font-size: 1.0625rem;
  color: var(--text);
  margin: 0;
}

.contact-item a:hover { color: var(--text-muted); }

.social-links-inline {
  display: flex;
  gap: 1.25rem;
}

.social-link {
  font-weight: 500;
  font-size: 1rem;
  color: var(--text);
  position: relative;
}

.social-link:hover { color: var(--text-muted); }

/* contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--text);
  box-shadow: 0 0 0 3px rgba(28,28,28,0.06);
}

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

/* ========================================
   FOOTER
   ======================================== */

.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
  margin-top: 3rem;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
}

.footer-version {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.5;
  margin-left: 0.5rem;
}

.footer-social { display: flex; }

.social-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.social-links .social-link {
  font-size: 0.875rem;
  color: var(--text-soft);
  font-weight: 500;
}

.social-links .social-link:hover { color: var(--text); }

/* ========================================
   LIGHTBOX
   ======================================== */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(248,247,244,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.25s ease-out;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.lightbox-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image-container img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
  animation: scaleIn 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.lightbox-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--text);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2001;
  box-shadow: var(--shadow-sm);
}

.lightbox-close:hover {
  background: var(--text);
  color: var(--white);
  border-color: var(--text);
}

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--text);
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  z-index: 2001;
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--text);
  color: var(--white);
  border-color: var(--text);
}

.lightbox-info {
  text-align: center;
  padding-top: 1.5rem;
}

.lightbox-info h2 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.lightbox-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

/* ========================================
   ANIMATIONS
   ======================================== */

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

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

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

.fade-in {
  opacity: 0;
  animation: fadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
  .hamburger { display: flex; }

  .navbar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    background: var(--bg);
    padding: 6rem 2rem 2rem;
    gap: 0;
    transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: -8px 0 32px rgba(0,0,0,0.08);
  }

  .navbar-menu.active { right: 0; }

  .navbar-item { width: 100%; }

  .navbar-link {
    display: block;
    padding: 1rem 0;
    font-size: 1.125rem;
    border-bottom: 1px solid var(--border);
  }

  .navbar-link::after { display: none; }

  .about-content,
  .contacts-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-image,
  .about-image-placeholder {
    height: 360px;
  }

  .photo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }
  .navbar-container { padding: 0 1.25rem; }

  .hero-content .site-title { font-size: clamp(2.5rem, 12vw, 4rem); }

  .page-header { padding: 6.5rem 0 2rem; }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .tag-filter { padding: 1.5rem 0; margin-bottom: 1.5rem; }
  .tag-pills { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 0.5rem; }
  .tag-pill { white-space: nowrap; flex-shrink: 0; }

  .footer-container { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 480px) {
  .photo-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.375rem;
  }

  .about-image,
  .about-image-placeholder {
    height: 260px;
  }

  .btn { width: 100%; }
}

/* ========================================
   PAGE HERO (inner pages)
   ======================================== */

.page-hero {
  padding: calc(var(--nav-height) + 3.5rem) 0 2.5rem;
  background: var(--hero-bg);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 1.0625rem;
  margin: 0;
}

/* ========================================
   SECTION HEADERS
   ======================================== */

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.section-header h2 { margin: 0; }

.section-link {
  font-size: 0.9375rem;
  color: var(--text-muted);
  font-weight: 500;
}

.section-link:hover { color: var(--text); }

/* ========================================
   STATS BAR
   ======================================== */

.stats-bar {
  background: var(--accent);
  padding: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item .stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-item .stat-label {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.375rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ========================================
   SERVICES
   ======================================== */

.services-preview,
.services-full { padding: 5rem 0; }

.services-preview { background: var(--bg-warm); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.services-grid-full {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-card h3 {
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}

.service-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: auto;
}

.service-price .price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}

.service-price .price-note {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.service-card-full .btn { margin-top: 1.5rem; }

.services-cta {
  text-align: center;
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
  margin-top: 3rem;
}

.services-cta h2 { margin-bottom: 0.75rem; }
.services-cta p { margin-bottom: 2rem; }

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonials-section { padding: 5rem 0; background: var(--bg-warm); }
.testimonials-full { padding: 4rem 0; }

.testimonials-carousel { position: relative; overflow: hidden; }

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  min-width: 100%;
  flex-shrink: 0;
}

.testimonial-card blockquote {
  font-size: 1.0625rem;
  color: var(--text);
  line-height: 1.75;
  margin: 1rem 0 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.author-avatar-sm {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author strong { display: block; font-size: 0.9375rem; }
.testimonial-author span { font-size: 0.8125rem; color: var(--text-muted); }

.stars { color: #f59e0b; letter-spacing: 0.1em; font-size: 0.9375rem; }
.stars-sm { color: #f59e0b; font-size: 0.75rem; }

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--text);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

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

.testimonials-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card-full { min-width: auto; }

.testimonials-cta {
  text-align: center;
  padding: 3rem 0 1rem;
  border-top: 1px solid var(--border);
  margin-top: 3rem;
}

.testimonials-cta h2 { margin-bottom: 1.5rem; }

/* ========================================
   TIMELINE
   ======================================== */

.timeline-section { padding: 5rem 0; }
.timeline-section h2 { text-align: center; margin-bottom: 3rem; }

.timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1.5px;
  background: var(--border);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding-bottom: 2.5rem;
}

.timeline-left { left: 0; padding-right: 3rem; text-align: right; }
.timeline-right { left: 50%; padding-left: 3rem; }

.timeline-item::after {
  content: '';
  position: absolute;
  top: 0.375rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.timeline-left::after { right: -5px; }
.timeline-right::after { left: -5px; }

.timeline-content { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 1.25rem 1.5rem; }

.timeline-year {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.375rem;
  text-transform: uppercase;
}

.timeline-content h3 { font-size: 1.0625rem; margin-bottom: 0.375rem; }
.timeline-content p { font-size: 0.9375rem; margin: 0; }

/* ========================================
   BEFORE / AFTER SLIDER
   ======================================== */

.before-after-section { padding: 5rem 0; background: var(--bg-warm); }
.before-after-section h2 { text-align: center; margin-bottom: 2.5rem; }

.before-after-slider {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  box-shadow: var(--shadow-lg);
}

.ba-after, .ba-before {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.ba-before {
  clip-path: inset(0 50% 0 0);
}

.ba-handle {
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 100%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ba-handle-circle {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  right: -20px;
}

.ba-labels {
  display: flex;
  justify-content: space-between;
  max-width: 800px;
  margin: 0.75rem auto 0;
}

.ba-labels span {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* ========================================
   VIDEO HERO
   ======================================== */

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

.hero-video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 177.78vh;
  min-width: 100%;
  height: 56.25vw;
  min-height: 100%;
  pointer-events: none;
}

.hero.has-video::before {
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

.hero.has-video .hero-content {
  z-index: 2;
}

/* ========================================
   INSTAGRAM GRID
   ======================================== */

.instagram-section { padding: 5rem 0; }

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.375rem;
}

.instagram-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.instagram-item:hover img { transform: scale(1.05); }

/* ========================================
   BLOG
   ======================================== */

.blog-section { padding: 4rem 0; }

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

.blog-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: transparent;
}

.blog-card-image {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img { transform: scale(1.04); }

.blog-card-body {
  padding: 1.5rem;
}

.blog-date {
  font-size: 0.8125rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  display: block;
  margin-bottom: 0.5rem;
}

.blog-card-body h2 {
  font-size: 1.25rem;
  margin-bottom: 0.625rem;
  line-height: 1.3;
}

.blog-card-body h2 a:hover { color: var(--text-muted); }

.blog-card-body p {
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

.read-more {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.read-more:hover { color: var(--text-muted); }

/* Blog post page */
.blog-post-page { padding-top: var(--nav-height); }

.blog-post-hero {
  height: 50vh;
  background-size: cover;
  background-position: center;
}

.blog-post-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

.back-link {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 1.5rem;
}

.back-link:hover { color: var(--text); }

.blog-post-header { margin-bottom: 2.5rem; }

.blog-post-header h1 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  margin: 0.5rem 0;
}

.blog-post-excerpt {
  font-size: 1.125rem;
  color: var(--text-soft);
  font-style: italic;
  margin-top: 1rem;
}

.blog-post-body {
  line-height: 1.85;
  color: var(--text-soft);
}

.blog-post-body h2 {
  font-size: 1.5rem;
  margin: 2rem 0 0.75rem;
  color: var(--text);
}

.blog-post-body p { margin-bottom: 1.25rem; }
.blog-post-body img { border-radius: var(--radius); margin: 1.5rem 0; }

.blog-post-footer { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }

/* ========================================
   BOOKING PAGE
   ======================================== */

.booking-section { padding: 4rem 0; }

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.booking-info h2 { margin-bottom: 1rem; }

.booking-steps {
  list-style: none;
  margin-top: 2rem;
}

.booking-steps li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
  color: var(--text-soft);
}

.booking-steps li span {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-muted);
  min-width: 32px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group select {
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

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

.btn-full { width: 100%; }

.booking-form-wrap {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

/* ========================================
   ALERTS
   ======================================== */

.alert {
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}

.alert-success {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.alert-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ========================================
   EMPTY STATE
   ======================================== */

.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted);
}

/* ========================================
   PRINT
   ======================================== */

@media print {
  .header, .footer, .tag-filter, .lightbox, .btn { display: none; }
  body { background: #fff; color: #000; }
  .photo-card { break-inside: avoid; }
}

/* ========================================
   RESPONSIVE — NEW SECTIONS
   ======================================== */

@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .timeline::before { left: 16px; }
  .timeline-item { width: 100%; left: 0; padding-left: 3rem; padding-right: 0; text-align: left; }
  .timeline-left { padding-right: 0; padding-left: 3rem; text-align: left; }
  .timeline-item::after { left: 11px; right: auto; }
  .testimonials-masonry { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .section-header { flex-direction: column; gap: 0.5rem; }
}
