:root {
  --primary-50: #fff0f8;
  --primary-100: #ffd8ed;
  --primary-200: #f6b3dd;
  --primary-400: #dd5ba9;
  --primary-500: #c43894;
  --primary-600: #9b2d90;
  --primary-700: #74236d;
  --foreground: #1f1530;
  --foreground-light: #4b4560;
  --muted: #6f6984;
  --border: #ede4f3;
  --surface: #fff8fc;
  --surface-dark: #f8f2fb;
  --background: #ffffff;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --shadow-card: 0 1px 3px rgba(22, 10, 33, 0.08), 0 1px 2px rgba(22, 10, 33, 0.06);
  --shadow-card-hover: 0 10px 25px rgba(22, 10, 33, 0.12), 0 4px 10px rgba(22, 10, 33, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
img, video, iframe { display: block; max-width: 100%; }
.container { width: min(1280px, 92vw); margin: 0 auto; }
h1, h2, h3, h4 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--foreground);
}
h1 { font-size: clamp(2.1rem, 6vw, 4rem); line-height: 1.08; }
h2 { font-size: clamp(1.85rem, 4vw, 2.7rem); line-height: 1.2; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.55rem); line-height: 1.3; }
p { margin: 0; color: var(--muted); }
ul { margin: 0; padding: 0; }

.pill,
.eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  border-radius: 999px;
  background: var(--primary-50);
  color: var(--primary-600);
  padding: 0.35rem 0.95rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: var(--radius-lg);
  min-height: 46px;
  padding: 0.65rem 1.5rem;
  border: 2px solid transparent;
  font-weight: 600;
  transition: all 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-solid {
  background: linear-gradient(120deg, var(--primary-600), var(--primary-500));
  color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.14);
}
.btn-solid:hover { background: var(--primary-700); }
.btn-outline {
  border-color: var(--foreground);
  color: var(--foreground);
  background: transparent;
}
.btn-outline:hover { background: var(--foreground); color: #fff; }
.btn-ghost {
  border-color: #fff;
  color: #fff;
  background: transparent;
}
.btn-ghost:hover { background: #fff; color: var(--foreground); }
.btn-light { background: #fff; color: var(--primary-600); }
.btn-light:hover { background: rgba(255, 255, 255, 0.9); color: var(--primary-700); }
.btn-sm { min-height: 40px; padding: 0.5rem 1rem; font-size: 0.9rem; }

.topbar {
  display: none;
  background: #120c1f;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
}
.topbar-list {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topbar-item a { color: #fff; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.25s ease;
}
.site-header.scrolled {
  background: rgba(20, 12, 31, 0.95);
  backdrop-filter: blur(8px);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.nav-row {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}
.brand img {
  width: 50px;
  height: 50px;
  border-radius: 999px;
}
.brand span {
  color: #fff;
  font-size: 1.03rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.site-nav > a,
.menu-trigger {
  padding: 0.45rem 0.7rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  border: 0;
  background: transparent;
  font-family: inherit;
}
.site-nav > a.active { color: #fff; }
.lang-toggle {
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  line-height: 1;
  padding: 0.45rem 0.72rem;
  color: #fff;
}
.lang-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
}
.menu-trigger { cursor: pointer; }
.menu-group { position: relative; }
.menu-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 290px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-card-hover);
  padding: 0.45rem;
  display: grid;
  gap: 0.25rem;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: all 0.2s ease;
}
.menu-dropdown a {
  border-radius: 0.6rem;
  padding: 0.55rem 0.65rem;
  color: var(--foreground-light);
  font-size: 0.88rem;
}
.menu-dropdown a:hover {
  background: var(--surface);
  color: var(--primary-600);
}
.menu-group.open .menu-dropdown,
.menu-group:hover .menu-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
  border-radius: 0.55rem;
  padding: 0.45rem 0.7rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11, 7, 18, 0.76), rgba(58, 18, 64, 0.58));
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 9.5rem 0 4rem;
  color: #fff;
}
.hero-content h1,
.hero-content p,
.hero-content .pill {
  color: #fff;
}
.hero-content .pill {
  background: rgba(196, 56, 148, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.34);
}
.hero-content > p {
  margin-top: 1rem;
  max-width: 780px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.2rem);
}
.hero-actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.hero-stats {
  margin-top: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.hero-stat {
  min-width: 150px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.75rem 0.9rem;
}
.hero-stat strong {
  display: block;
  font-size: 1.2rem;
  color: #fff;
}
.hero-stat span {
  font-size: 0.79rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.86);
}

.contact-strip {
  background: linear-gradient(120deg, var(--primary-700), var(--primary-600));
  color: #fff;
}
.contact-strip-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.6rem 0;
}
.contact-item {
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.95);
}
.contact-item a { color: #fff; text-decoration: underline; text-decoration-thickness: 1px; }

.section { padding: clamp(3rem, 7vw, 5.6rem) 0; }
.section-alt { background: var(--surface-dark); }
.section-head { text-align: center; margin: 0 auto 2rem; max-width: 840px; }
.section-head p { margin-top: 0.75rem; }

.about-grid,
.standards-grid,
.quote-grid,
.footer-grid {
  display: grid;
  gap: 2rem;
}
.about-grid,
.standards-grid { align-items: center; }
.about-points,
.standards-list {
  list-style: none;
  margin-top: 1.2rem;
  display: grid;
  gap: 0.7rem;
}
.about-points li,
.standards-list li {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.7rem;
  padding: 0.72rem 0.85rem;
  color: var(--foreground-light);
  font-size: 0.95rem;
}
.about-points li strong { color: var(--foreground); }

.photo-frame {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(17, 10, 28, 0.85);
  color: #fff;
  border-radius: 0.75rem;
  padding: 0.55rem 0.7rem;
}
.photo-badge strong {
  display: block;
  font-size: 1rem;
  color: #fff;
}
.photo-badge span { font-size: 0.74rem; color: rgba(255, 255, 255, 0.86); }

.services-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.service-card {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-card);
  display: grid;
}
.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.service-body { padding: 1rem; }
.service-body p { margin-top: 0.45rem; }
.service-link {
  margin-top: 0.9rem;
  display: inline-flex;
  font-weight: 700;
  color: var(--primary-600);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: #fff;
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.25s ease;
}
.gallery-item img:hover { transform: scale(1.03); }

.faq-wrap { max-width: 920px; }
.faq-list {
  display: grid;
  gap: 0.7rem;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  background: #fff;
  overflow: hidden;
}
.faq-item button {
  width: 100%;
  border: 0;
  background: #fff;
  text-align: left;
  padding: 0.92rem 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
  cursor: pointer;
}
.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-panel p { padding: 0 1rem 1rem; }
.faq-item.open .faq-panel { max-height: 240px; }

.quote-section { background: linear-gradient(180deg, #fff 0%, var(--surface) 100%); }
.quote-grid { align-items: start; }
.quote-grid h2 { margin-bottom: 0.6rem; }
.quote-embed {
  margin-top: 1rem;
  height: 640px;
  border-radius: 1rem;
  border: 1px solid var(--border);
  overflow: hidden;
  background: #fff;
}
.contact-card {
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: #fff;
  padding: 1rem;
  box-shadow: var(--shadow-card);
}
.contact-card ul {
  list-style: none;
  margin-top: 0.8rem;
  display: grid;
  gap: 0.65rem;
}
.contact-card strong { color: var(--foreground); }
.contact-card a { color: var(--primary-600); }

.value-grid {
  display: grid;
  gap: 1rem;
}
.value-grid article {
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  background: #fff;
  padding: 1rem;
}
.value-grid p { margin-top: 0.45rem; }

.page-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11, 7, 18, 0.8), rgba(58, 18, 64, 0.55));
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero h1,
.page-hero p,
.page-hero .pill { color: #fff; }
.page-hero p { margin-top: 0.7rem; max-width: 760px; }

.map-wrap {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

.site-footer {
  background: #140e21;
  color: rgba(255, 255, 255, 0.84);
  padding: 3rem 0 1.1rem;
}
.footer-grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.footer-brand {
  display: inline-flex;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  color: #fff;
}
.site-footer h3 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}
.site-footer ul {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}
.site-footer a { color: rgba(255, 255, 255, 0.9); }
.site-footer p { color: rgba(255, 255, 255, 0.75); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 1.4rem;
  padding-top: 1rem;
  font-size: 0.82rem;
  text-align: center;
}

@media (min-width: 860px) {
  .topbar { display: block; }
  .about-grid,
  .standards-grid { grid-template-columns: 1.1fr 1fr; }
  .quote-grid { grid-template-columns: 1.5fr 1fr; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .value-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

@media (max-width: 1020px) {
  .mobile-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: rgba(20, 12, 31, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.75rem;
    margin-top: 0.45rem;
    padding: 0.65rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
  }
  .site-nav.open { display: flex; }
  .site-nav > a,
  .menu-trigger,
  .site-nav .btn { width: 100%; }
  .lang-toggle {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    border-radius: 0.55rem;
  }
  .menu-dropdown {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    min-width: 0;
    border: 0;
    background: rgba(255, 255, 255, 0.07);
    box-shadow: none;
    margin-top: 0.3rem;
    display: none;
  }
  .menu-group.open .menu-dropdown { display: grid; }
  .menu-dropdown a { color: rgba(255, 255, 255, 0.88); }
  .menu-dropdown a:hover { color: #fff; background: rgba(255, 255, 255, 0.12); }
}

@media (max-width: 640px) {
  .brand span { font-size: 0.92rem; max-width: 180px; white-space: normal; line-height: 1.1; }
  .hero-content { padding-top: 7.2rem; }
  .hero-stat { min-width: 132px; }
  .contact-strip-inner { justify-content: flex-start; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quote-embed { height: 580px; }
}
