/* ============================================
   Michaela Peter – Design System
   Primary: #004953 | Button: #BD7F81
   Fonts: MichaelaPeter + Marcellus + Roboto
   ============================================ */

@font-face {
  font-family: 'MichaelaPeter';
  src: url('/assets/font/MichaelaPeter-Font.woff2') format('woff2'),
       url('/assets/font/MichaelaPeter-Font.woff')  format('woff');
  font-weight: normal;
  font-style:  normal;
  font-display: swap;
}

:root {
  --bg:        #F9FAFA;
  --surface:   #FFFFFF;
  --text:      #3D3D3D;
  --muted:     #8A8A8A;
  --teal:      #004953;
  --btn:       #BD7F81;
  --btn-hover: #AA696B;
  --border:    #E0E8E8;
  --dark:      #020101;
  --font-mp:   'MichaelaPeter', cursive;
  --font-h:    'Marcellus', Georgia, serif;
  --font-b:    'Marcellus', Georgia, serif;
  --font-ui:   'Roboto', Arial, sans-serif;
  --nav-h:     80px;
  --max-w:     1200px;
  --r-pill:    30px;
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body { font-family:var(--font-b); background:var(--bg); color:var(--text); line-height:1.7; -webkit-font-smoothing:antialiased; }
img  { display:block; max-width:100%; height:auto; }
a    { color:inherit; text-decoration:none; }
ul,ol { list-style:none; }
button { cursor:pointer; border:none; background:none; font:inherit; }

.container { max-width:var(--max-w); margin:0 auto; padding:0 30px; }
.container-narrow { max-width:860px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 15px 40px;
  border-radius: var(--r-pill);
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background .25s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-primary, .btn-gold {
  background: var(--btn);
  color: #fff;
}
.btn-primary:hover, .btn-gold:hover { background: var(--btn-hover); }
.btn-outline {
  background: transparent;
  border: 1.5px solid #fff;
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-outline-teal {
  background: transparent;
  border: 1.5px solid var(--teal);
  color: var(--teal);
}
.btn-outline-teal:hover { background: var(--teal); color: #fff; }

/* ── Navigation ── */
.site-header {
  position: fixed;
  top:0; left:0; right:0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  background: var(--surface);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 30px;
}

/* Logo - left */
.site-logo {
  justify-self: start;
}
.logo-text {
  font-family: var(--font-mp);
  font-size: 2.2rem;
  color: #fff;
  transition: color .3s;
  line-height: 1;
  font-weight: normal;
}
.site-header.scrolled .logo-text { color: var(--dark); }
.site-logo img { height: 52px; width: auto; }
.site-header.scrolled .site-logo img { filter: none; }

/* Inline SVG logo */
.site-logo svg,
.site-logo-svg {
  width: 200px;
  height: auto;
  display: block;
  color: #fff;
  transition: color .3s ease;
}
.site-header.scrolled .site-logo svg,
.site-header.scrolled .site-logo-svg { color: var(--teal); }

/* Center nav */
.main-nav { justify-self: center; }
.nav-list {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: .3rem;
  padding: .5rem 1rem;
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  border: none;
  background: none;
  cursor: pointer;
  transition: color .25s;
}
.site-header.scrolled .nav-link { color: var(--text); }
.nav-link:hover, .nav-item.active > .nav-link { color: var(--btn); }
.site-header.scrolled .nav-link:hover { color: var(--teal); }

.chevron { transition: transform .25s; }
.nav-item:hover .chevron, .nav-item.open .chevron { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 220px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  opacity: 0;
  visibility: hidden;
  transition: all .22s ease;
  z-index: 100;
}
.nav-item:hover .dropdown,
.nav-item.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-link {
  display: block;
  padding: .7rem 1.5rem;
  font-family: var(--font-h);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  transition: color .2s, background .2s;
}
.dropdown-link:hover, .dropdown-link.active { color: var(--teal); background: var(--bg); }

/* Right side */
.header-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.header-email {
  font-family: var(--font-h);
  font-size: 13px;
  letter-spacing: .5px;
  color: rgba(255,255,255,.85);
  transition: color .25s;
}
.site-header.scrolled .header-email { color: var(--text); }
.header-email:hover { color: var(--btn); }
.header-social {
  display: flex;
  gap: .6rem;
}
.header-social a { color: rgba(255,255,255,.8); transition: color .25s; }
.site-header.scrolled .header-social a { color: var(--text); }
.header-social a:hover { color: var(--btn); }

/* Mobile toggle */
.nav-toggle { display:none; flex-direction:column; gap:5px; padding:8px; }
.nav-toggle span { width:22px; height:1.5px; background:#fff; transition:all .25s; display:block; }
.site-header.scrolled .nav-toggle span { background: var(--dark); }
.nav-toggle.open span:nth-child(1) { transform:rotate(45deg) translate(5px,4.5px); }
.nav-toggle.open span:nth-child(2) { opacity:0; }
.nav-toggle.open span:nth-child(3) { transform:rotate(-45deg) translate(5px,-4.5px); }

/* ── Hero ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--dark);
}
.hero-slides { position:absolute; inset:0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(2,1,1,.35) 0%, rgba(2,1,1,.55) 100%);
  z-index: 1;
}
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 30px;
  padding-top: var(--nav-h);
}
.hero-title {
  font-family: var(--font-mp);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: #fff;
  font-weight: normal;
  line-height: 1.15;
  margin-bottom: 2.5rem;
  max-width: 900px;
}
.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: .5rem;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  cursor: pointer;
  transition: background .25s;
  padding: 0;
}
.hero-dot.active { background: #fff; }

/* ── Page hero (service pages) ── */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 420px;
  background: var(--dark);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(2,1,1,.3) 0%, rgba(2,1,1,.55) 100%);
}
.page-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--nav-h) 30px 0;
  z-index: 1;
}
.page-hero-title {
  font-family: var(--font-mp);
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: #fff;
  font-weight: normal;
  line-height: 1.1;
}

/* Gallery hero (individual gallery page) */
.gallery-hero { height: 100vh; min-height: 600px; }
.gallery-hero-title {
  font-family: var(--font-mp);
  font-size: clamp(3rem, 8vw, 7rem);
  color: #fff;
  font-weight: normal;
}

/* ── Sections ── */
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-alt { background: var(--surface); }
.section-dark { background: var(--dark); }

/* Section heading style */
.heading-teal {
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  line-height: 1.4;
  margin-bottom: 1.25rem;
}
.heading-teal-sm {
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.5rem;
}

/* ── About section (homepage) ── */
.about-section { background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: center;
}
.about-photo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.about-polaroid {
  background: #fff;
  padding: 14px 14px 40px;
  box-shadow: 4px 6px 20px rgba(0,0,0,.12);
  transform: rotate(-2deg);
  max-width: 340px;
  width: 100%;
}
.about-polaroid img { width:100%; aspect-ratio:4/5; object-fit:cover; display:block; }
.about-signature {
  font-family: var(--font-mp);
  font-size: 2.5rem;
  color: var(--teal);
  font-weight: normal;
  line-height: 1;
}
.about-text p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 1rem;
  font-family: var(--font-h);
}
.about-text { display:flex; flex-direction:column; gap:.5rem; }

/* ── Services grid (homepage) ── */
.services-section { padding: 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.service-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  display: block;
  cursor: pointer;
}
.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
  display: block;
}
.service-card:hover .service-card-img { transform: scale(1.05); }
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2,1,1,.65) 0%, transparent 55%);
  transition: background .3s;
}
.service-card:hover .service-card-overlay { background: linear-gradient(to top, rgba(2,1,1,.8) 0%, rgba(2,1,1,.2) 100%); }
.service-card-name {
  position: absolute;
  bottom: 1.5rem;
  left: 1.75rem;
  font-family: var(--font-mp);
  font-size: 2rem;
  color: #fff;
  font-weight: normal;
  line-height: 1;
  pointer-events: none;
}
.img-placeholder { background: var(--border); width:100%; height:100%; }

/* ── Service page layout ── */
.service-body {
  padding: 80px 0;
}
.service-columns {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 4rem;
  align-items: start;
}
.service-columns--full {
  grid-template-columns: 1fr;
  max-width: 860px;
}
.service-content {}
.service-content h2 {
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin: 2.5rem 0 1rem;
}
.service-content h2:first-child { margin-top: 0; }
.service-content p {
  font-family: var(--font-h);
  font-size: 15px;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 1rem;
  text-align: justify;
}
.service-content ul { margin: .75rem 0 1.25rem; }
.service-content ul li {
  font-family: var(--font-h);
  font-size: 15px;
  line-height: 1.9;
  color: var(--text);
  padding-left: 1rem;
  position: relative;
}
.service-content ul li::before { content:'•'; position:absolute; left:0; color:var(--teal); }
.service-content a { color: var(--teal); text-decoration: underline; }

/* Pricing card (right column) */
.pricing-card {
  background: var(--surface);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 32px rgba(0,0,0,.10);
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}
.pricing-card-title {
  font-family: var(--font-h);
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.pricing-card-content {
  font-family: var(--font-h);
  font-size: 14px;
  line-height: 1.8;
  color: var(--text);
}
.pricing-card-content ul { margin: .75rem 0 1rem; }
.pricing-card-content li { padding-left: 1rem; position:relative; margin-bottom:.4rem; }
.pricing-card-content li::before { content:'•'; position:absolute; left:0; color:var(--teal); }
.pricing-card-content .price-main {
  font-size: 26px;
  color: var(--text);
  font-weight: 400;
  margin: 1.25rem 0 1.5rem;
  letter-spacing: 1px;
}
.pricing-card-content p { margin-bottom: .75rem; }
.pricing-card .btn { width:100%; margin-top: 1rem; }

/* ── Gallery on service pages ── */
.gallery-section { padding: 60px 0 80px; background: var(--bg); }
.gallery-section-title {
  font-family: var(--font-h);
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal);
  text-align: center;
  margin-bottom: 2.5rem;
}
.gallery-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.gallery-card {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  display: block;
  cursor: pointer;
}
.gallery-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.gallery-card:hover .gallery-card-img { transform: scale(1.04); }
.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2,1,1,.7) 0%, transparent 50%);
}
.gallery-card-name {
  position: absolute;
  bottom: 1.25rem;
  left: 1.5rem;
  font-family: var(--font-mp);
  font-size: 1.75rem;
  color: #fff;
  font-weight: normal;
  line-height: 1;
}

/* ── Gallery detail (masonry) ── */
.gallery-masonry {
  background: var(--dark);
  padding: 0;
  columns: 5 180px;
  column-gap: 4px;
  padding: 4px;
}
.gallery-masonry-item {
  break-inside: avoid;
  margin-bottom: 4px;
  cursor: pointer;
  overflow: hidden;
  display: block;
}
.gallery-masonry-item img {
  width: 100%;
  display: block;
  transition: transform .4s ease;
}
.gallery-masonry-item:hover img { transform: scale(1.03); }

/* ── Testimonials ── */
.testimonials-section { background: var(--bg); padding: 90px 0; }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 960px;
  margin: 0 auto;
}
.testimonial-card { display: flex; flex-direction: column; gap: 1rem; }
.testimonial-author-row { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar {
  width: 70px; height: 70px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-avatar-placeholder {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
}
.testimonial-name {
  font-family: var(--font-h);
  font-size: 18px;
  color: var(--teal);
  font-weight: 400;
}
.testimonial-stars { color: #F4C430; font-size: 1rem; letter-spacing: 2px; }
.testimonial-text {
  font-family: var(--font-h);
  font-size: 14px;
  line-height: 1.9;
  color: var(--text);
}

/* ── Footer ── */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 50px 30px 30px;
}
.footer-main {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
.footer-tagline {
  font-family: var(--font-mp);
  font-size: 2.4rem;
  color: var(--teal);
  font-weight: normal;
  line-height: 1.1;
}
.footer-cta { justify-self: center; }
.footer-social-wrap { justify-self: end; display:flex; gap:1rem; align-items:center; }
.footer-social-wrap a { color: var(--text); transition: color .2s; }
.footer-social-wrap a:hover { color: var(--teal); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom-text {
  font-family: var(--font-h);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .5px;
}
.footer-logos { display:flex; gap:1rem; align-items:center; }
.footer-logos img { height: 40px; width: auto; opacity: .7; }
.footer-admin-link { font-size:11px; color:var(--border); transition:color .2s; }
.footer-admin-link:hover { color:var(--muted); }

/* ── Lightbox ── */
.lightbox {
  position: fixed; inset:0;
  background: rgba(2,1,1,.94);
  z-index: 9999;
  display: flex; align-items:center; justify-content:center;
  animation: fadeIn .2s ease;
}
.lightbox[hidden] { display:none; }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
.lightbox-content { position:relative; max-width:92vw; max-height:92vh; display:flex; flex-direction:column; align-items:center; }
.lightbox-img { max-width:92vw; max-height:82vh; object-fit:contain; }
.lightbox-caption { color:rgba(255,255,255,.6); margin-top:.75rem; font-size:.875rem; font-family:var(--font-h); }
.lightbox-close { position:fixed; top:1.5rem; right:1.5rem; color:#fff; font-size:2rem; z-index:10; padding:.5rem; opacity:.75; transition:opacity .2s; }
.lightbox-close:hover { opacity:1; }
.lightbox-prev,.lightbox-next { position:fixed; top:50%; transform:translateY(-50%); color:#fff; font-size:3rem; padding:1rem .75rem; opacity:.65; transition:opacity .2s; z-index:10; }
.lightbox-prev:hover,.lightbox-next:hover { opacity:1; }
.lightbox-prev { left:1rem; }
.lightbox-next { right:1rem; }

/* ── Contact page ── */
.contact-section { padding: 80px 0; }
.contact-grid { display:grid; grid-template-columns:1.3fr 1fr; gap:4rem; }
.contact-form-heading { font-family:var(--font-h); font-size:18px; letter-spacing:3px; text-transform:uppercase; color:var(--teal); margin-bottom:2rem; }
.contact-form { display:flex; flex-direction:column; gap:1.25rem; }
.contact-form label { font-family:var(--font-ui); font-size:15px; line-height:37px; color:var(--text); display:block; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width:100%;
  padding: 13px 18px;
  border: none;
  border-radius: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-h);
  font-size: 14px;
  transition: background .62s;
  outline: none;
  border-bottom: 1px solid var(--border);
}
.contact-form input:focus,
.contact-form textarea:focus { background: #fff; border-bottom-color: var(--teal); }
.contact-form textarea { resize:vertical; }
.contact-form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.form-privacy { font-family:var(--font-h); font-size:12px; color:var(--muted); }
.field-error { font-family:var(--font-ui); font-size:.8rem; color:#c0392b; }

.contact-info-block { padding-top: 1rem; }
.contact-info-block h3 { font-family:var(--font-h); font-size:16px; letter-spacing:3px; text-transform:uppercase; color:var(--teal); margin-bottom:1.5rem; }
.contact-info-item { display:flex; align-items:flex-start; gap:.75rem; margin-bottom:1rem; font-family:var(--font-h); font-size:14px; color:var(--text); }
.contact-info-item a:hover { color:var(--teal); }
.contact-social { display:flex; gap:1rem; margin-top:1.5rem; }
.contact-social a { color:var(--text); transition:color .2s; }
.contact-social a:hover { color:var(--teal); }
.contact-map { border-radius:4px; overflow:hidden; margin-top:2rem; }
.contact-map iframe { display:block; width:100%; }

.form-success { background:#edf7f4; border:1px solid #27ae60; padding:1.5rem; color:#1a7045; font-family:var(--font-h); font-size:15px; }
.form-errors  { background:#fdf2f0; border:1px solid #e74c3c; padding:1rem 1.25rem; color:#c0392b; font-family:var(--font-h); font-size:14px; }
.form-errors ul { list-style:disc; padding-left:1.25rem; }
.hp-field { position:absolute; left:-9999px; opacity:0; pointer-events:none; height:0; }
.required { color:var(--btn); }

/* ── Blog ── */
.blog-section { padding: 80px 0; }
.blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; }
.blog-card { background:var(--surface); overflow:hidden; box-shadow:0 2px 16px rgba(0,0,0,.07); }
.blog-card:hover { box-shadow:0 6px 28px rgba(0,0,0,.12); }
.blog-card-img-link { display:block; aspect-ratio:16/9; overflow:hidden; }
.blog-card-img-link img { width:100%; height:100%; object-fit:cover; transition:transform .4s ease; }
.blog-card:hover .blog-card-img-link img { transform:scale(1.04); }
.blog-card-body { padding:1.5rem; }
.blog-card-date { font-family:var(--font-h); font-size:12px; letter-spacing:1px; color:var(--muted); display:block; margin-bottom:.5rem; }
.blog-card-title { font-family:var(--font-h); font-size:1.3rem; margin-bottom:.75rem; }
.blog-card-title a:hover { color:var(--teal); }
.blog-card-excerpt { font-family:var(--font-h); font-size:14px; color:var(--muted); margin-bottom:1rem; line-height:1.7; }
.blog-card-read { font-family:var(--font-h); font-size:12px; letter-spacing:2px; text-transform:uppercase; color:var(--teal); }

.blog-post-lead { font-family:var(--font-h); font-size:1.15rem; color:var(--text); margin-bottom:2rem; line-height:1.8; }
.prose { font-family:var(--font-h); color:var(--text); font-size:15px; line-height:1.9; }
.prose h2 { font-size:1.4rem; color:var(--text); margin:2rem 0 .75rem; font-weight:400; }
.prose p  { margin-bottom:1.25rem; }
.prose ul { margin:1rem 0 1.5rem 1.5rem; list-style:disc; }
.prose li { margin-bottom:.4rem; }
.prose a  { color:var(--teal); }

.pagination { display:flex; gap:.5rem; justify-content:center; margin-top:3rem; }
.page-link { width:40px; height:40px; display:flex; align-items:center; justify-content:center; border:1px solid var(--border); font-family:var(--font-h); font-size:.875rem; color:var(--muted); transition:all .2s; }
.page-link:hover, .page-link.active { background:var(--teal); color:#fff; border-color:var(--teal); }

/* ── 404 ── */
.error-page { min-height:60vh; display:flex; align-items:center; text-align:center; }
.error-code  { font-family:var(--font-mp); font-size:8rem; color:var(--border); line-height:1; }
.error-title { font-family:var(--font-h); font-size:2rem; letter-spacing:3px; text-transform:uppercase; color:var(--teal); margin:1rem 0; font-weight:400; }
.error-desc  { font-family:var(--font-h); color:var(--muted); margin-bottom:2rem; }

/* ── Booking ── */
.booking-section { padding:80px 0; background:var(--bg); }
.booking-wrapper { display:grid; grid-template-columns:380px 1fr; gap:3rem; align-items:start; }
.booking-calendar-panel { background:var(--surface); padding:1.75rem; box-shadow:0 4px 24px rgba(0,0,0,.08); }
.cal-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:1.5rem; }
.cal-nav { width:36px; height:36px; border-radius:50%; font-size:1.5rem; color:var(--muted); display:flex; align-items:center; justify-content:center; transition:all .2s; background:none; border:none; cursor:pointer; }
.cal-nav:hover { background:var(--bg); color:var(--teal); }
.cal-month-label { font-family:var(--font-h); font-size:1rem; letter-spacing:2px; text-transform:uppercase; color:var(--text); }
.cal-weekdays { display:grid; grid-template-columns:repeat(7,1fr); text-align:center; font-family:var(--font-h); font-size:.65rem; letter-spacing:2px; text-transform:uppercase; color:var(--muted); margin-bottom:.75rem; }
.cal-grid { display:grid; grid-template-columns:repeat(7,1fr); gap:4px; }
.cal-day { aspect-ratio:1; display:flex; align-items:center; justify-content:center; border-radius:50%; font-family:var(--font-h); font-size:.875rem; cursor:pointer; transition:all .2s; }
.cal-day.past   { color:var(--border); cursor:default; }
.cal-day.available { background:rgba(0,73,83,.1); color:var(--teal); font-weight:700; cursor:pointer; }
.cal-day.available:hover { background:var(--teal); color:#fff; }
.cal-day.selected { background:var(--teal); color:#fff; }
.cal-day.booked   { color:var(--muted); text-decoration:line-through; cursor:default; }
.cal-legend { display:flex; gap:1.25rem; margin-top:1.25rem; font-family:var(--font-h); font-size:.75rem; color:var(--muted); }
.legend-dot { width:10px; height:10px; border-radius:50%; display:inline-block; margin-right:.3rem; }
.dot-available { background:var(--teal); } .dot-booked { background:var(--border); }
.legend-item { display:flex; align-items:center; }
.time-slots-section { margin-bottom:2rem; }
.slots-heading { font-family:var(--font-h); font-size:13px; letter-spacing:3px; text-transform:uppercase; color:var(--teal); margin-bottom:1rem; }
.time-slots { display:flex; flex-wrap:wrap; gap:.75rem; }
.time-slot-btn { padding:.5rem 1.5rem; border:1px solid var(--border); font-family:var(--font-h); font-size:13px; letter-spacing:1px; color:var(--text); transition:all .2s; cursor:pointer; background:none; border-radius:0; }
.time-slot-btn:hover { border-color:var(--teal); color:var(--teal); }
.time-slot-btn.selected { background:var(--teal); border-color:var(--teal); color:#fff; }
.selected-datetime { background:var(--bg); padding:1rem 1.25rem; font-family:var(--font-h); font-weight:600; margin-bottom:1.5rem; display:none; border-left:3px solid var(--teal); }
.selected-datetime.visible { display:block; }
.booking-form label { font-family:var(--font-ui); font-size:15px; line-height:37px; color:var(--text); display:block; }
.booking-form input, .booking-form textarea, .booking-form select { width:100%; padding:13px 18px; border:none; border-bottom:1px solid var(--border); background:var(--bg); color:var(--text); font-family:var(--font-h); font-size:14px; outline:none; margin-bottom:.5rem; transition:border-color .2s; }
.booking-form input:focus,.booking-form textarea:focus { border-bottom-color:var(--teal); background:#fff; }
.booking-form .form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.package-options { display:grid; grid-template-columns:1fr 1fr; gap:1rem; margin-bottom:1rem; }
.package-option { display:block; cursor:pointer; }
.package-option input[type=radio] { display:none; }
.package-label { display:flex; flex-direction:column; gap:.25rem; padding:1.25rem; border:1px solid var(--border); transition:border-color .2s; }
.package-option input:checked + .package-label { border-color:var(--teal); background:rgba(0,73,83,.04); }
.package-label strong { font-family:var(--font-h); font-size:1rem; color:var(--text); }
.package-label span { font-family:var(--font-h); font-size:.85rem; color:var(--muted); }
.package-price { font-family:var(--font-h); font-weight:400; color:var(--teal); font-size:.95rem; }
.form-section-title { font-family:var(--font-h); font-size:13px; letter-spacing:3px; text-transform:uppercase; color:var(--teal); margin-bottom:1.25rem; }

/* ── Breadcrumb ── */
.breadcrumb { margin-bottom: 1rem; }
.breadcrumb ol { display:flex; gap:.5rem; flex-wrap:wrap; }
.breadcrumb li:not(:last-child)::after { content:'›'; margin-left:.5rem; color:rgba(255,255,255,.4); }
.breadcrumb a,.breadcrumb span { font-family:var(--font-h); font-size:12px; letter-spacing:1px; color:rgba(255,255,255,.65); }
.breadcrumb a:hover { color:#fff; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns:repeat(2,1fr); }
  .gallery-cards { grid-template-columns:repeat(2,1fr); }
  .service-columns { grid-template-columns:1fr; }
  .pricing-card { position:static; }
  .about-grid { grid-template-columns:1fr; gap:2rem; }
  .about-photo-wrap { flex-direction:row; justify-content:center; }
  .footer-main { grid-template-columns:1fr; justify-items:center; text-align:center; }
  .footer-social-wrap { justify-self:center; }
}
@media (max-width: 768px) {
  :root { --nav-h:64px; }
  .nav-toggle { display:flex; }
  .main-nav {
    position: fixed; top:var(--nav-h); left:0; right:0; bottom:0;
    background: var(--surface);
    transform: translateX(100%);
    transition: transform .28s ease;
    overflow-y: auto; z-index:999;
    padding: 2rem 1.5rem;
  }
  .main-nav.open { transform:translateX(0); }
  .nav-list { flex-direction:column; align-items:stretch; }
  .nav-link { color:var(--text); padding:.85rem 0; border-bottom:1px solid var(--border); font-size:14px; }
  .dropdown { position:static; opacity:1; visibility:visible; transform:none; box-shadow:none; border:none; border-bottom:1px solid var(--border); }
  .header-inner { grid-template-columns:1fr auto; }
  .header-right { display:none; }
  .services-grid { grid-template-columns:repeat(2,1fr); }
  .gallery-cards  { grid-template-columns:1fr; }
  .contact-grid   { grid-template-columns:1fr; }
  .testimonials-grid { grid-template-columns:1fr; }
  .blog-grid      { grid-template-columns:1fr; }
  .booking-wrapper { grid-template-columns:1fr; }
  .contact-form-row, .booking-form .form-row { grid-template-columns:1fr; }
  .package-options { grid-template-columns:1fr; }
  .gallery-masonry { columns:3 120px; }
  .hero-title { font-size:2.5rem; }
  .page-hero { height:45vh; min-height:300px; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns:1fr; }
  .gallery-masonry { columns:2 100px; }
  .footer-tagline { font-size:1.8rem; }
}
