﻿:root {
  --rose: #b48a8f;
  --rose-dark: #9b6b70;
  --gray: #7a7a7a;
  --graphite: #3e3e3e;
  --ink: #2a2a2a;
  --cream: #f6f2f0;
  --page-bg: #ebe6e5;
  --header-bg: #e7c9cd;
  --white: #ffffff;
  --shadow: 0 20px 45px rgba(60, 60, 60, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--page-bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--header-bg);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(180, 138, 143, 0.2);
}

.alert-banner {
  background: #fff4f4;
  border-bottom: 2px solid #c83a3a;
  color: #5a1f1f;
}

.is-hidden {
  display: none;
}

.alert-banner p {
  margin: 0;
  padding: 0.75rem 0;
  font-weight: 600;
  text-align: center;
  overflow-wrap: anywhere;
}

.nav-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.2rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand__logo {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.brand__mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--rose);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.brand__name {
  margin: 0;
  font-weight: 700;
  font-size: 1.75rem;
}

.brand__meta {
  margin: 0;
  color: var(--gray);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav {
  display: flex;
  gap: 1.6rem;
  justify-content: center;
  font-size: 0.95rem;
  flex-wrap: wrap;
  row-gap: 0.4rem;
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--rose-dark);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn--primary {
  background: var(--rose);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn--primary:hover {
  transform: translateY(-2px);
}

.btn--ghost {
  border-color: var(--rose);
  color: var(--rose-dark);
  background: transparent;
}

.hero {
  padding: 6rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(180, 138, 143, 0.45) 0%, rgba(180, 138, 143, 0.1) 55%, transparent 70%);
  filter: blur(6px);
  opacity: 0.8;
  z-index: 0;
  animation: blob-float 12s ease-in-out infinite;
}

.hero::before {
  top: -180px;
  right: -140px;
}

.hero::after {
  bottom: -220px;
  left: -160px;
  width: 360px;
  height: 360px;
  animation-delay: -4s;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 3vw, 3.4rem);
  margin: 0.6rem 0 1rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--graphite);
  margin-bottom: 0.8rem;
}

.hero-list {
  margin: 0 0 1.8rem;
  padding-left: 1.2rem;
  color: var(--graphite);
}

.hero-list li {
  margin-bottom: 0.4rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.hero-highlights {
  display: grid;
  gap: 1.2rem;
  background: rgba(255, 255, 255, 0.6);
  padding: 1.2rem;
  border-radius: 18px;
  border: 1px solid rgba(180, 138, 143, 0.2);
}

.highlight-title {
  margin: 0;
  font-weight: 600;
}

.highlight-text {
  margin: 0;
  color: var(--gray);
  font-size: 0.95rem;
}

.hero-card {
  display: grid;
  gap: 1.4rem;
}

@keyframes blob-float {
  0% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(18px) translateX(-12px);
  }
  100% {
    transform: translateY(0) translateX(0);
  }
}

.card {
  background: var(--white);
  padding: 1.8rem;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.card--accent {
  background: linear-gradient(135deg, #f6edea 0%, #f8f4f3 100%);
}

.card-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--gray);
  margin: 0 0 0.5rem;
}

.card-text {
  margin: 0.5rem 0;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.tag-list span {
  background: rgba(180, 138, 143, 0.15);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

.stats {
  padding: 2.5rem 0 4rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.stat {
  background: var(--white);
  padding: 1.4rem;
  border-radius: 18px;
  border: 1px solid rgba(180, 138, 143, 0.2);
  text-align: center;
}

.stat-number {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0;
}

.stat-label {
  margin: 0;
  color: var(--gray);
}

.section {
  padding: 4.5rem 0;
}

.section--alt {
  background: #f9f6f5;
}

.section-heading {
  margin-bottom: 2.5rem;
}

.section-heading h2 {
  font-family: "Playfair Display", serif;
  margin: 0.4rem 0 0;
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--rose-dark);
  margin: 0;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
}

.service-card {
  background: var(--white);
  padding: 1.6rem;
  border-radius: 18px;
  border: 1px solid rgba(180, 138, 143, 0.2);
  box-shadow: 0 12px 30px rgba(60, 60, 60, 0.08);
}

.service-card h3 {
  margin: 0 0 0.6rem;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.checklist li {
  margin-bottom: 0.6rem;
  padding-left: 1.6rem;
  position: relative;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 10px;
  height: 10px;
  background: var(--rose);
  border-radius: 50%;
}

.panel {
  background: var(--white);
  border-radius: 26px;
  padding: 2rem;
  box-shadow: var(--shadow);
  background-image: radial-gradient(circle at top right, rgba(180, 138, 143, 0.2), transparent 55%);
}

.panel__title {
  font-weight: 600;
  margin: 0 0 0.6rem;
}

.team-grid {
  display: grid;
  gap: 1.6rem;
}

.team-card {
  background: var(--white);
  padding: 1.4rem;
  border-radius: 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  align-items: center;
  border: 1px solid rgba(180, 138, 143, 0.2);
}

.team-photo {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  object-fit: cover;
  background: var(--rose);
}

.avatar {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: var(--rose);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 600;
}

.role {
  margin: 0.2rem 0 0.6rem;
  color: var(--gray);
}

.hours-table {
  background: var(--white);
  padding: 1.6rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.8rem;
}

.hours-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  font-weight: 500;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}

.contact-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(180, 138, 143, 0.2);
}

.footer {
  background: #2f2f2f;
  color: #f4f4f4;
  padding: 2.5rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
}

.footer-credit {
  margin: 1.2rem auto 0;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: rgba(244, 244, 244, 0.72);
}

.footer-credit a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(244, 244, 244, 0.4);
}

.footer-credit a:hover {
  border-bottom-color: rgba(244, 244, 244, 0.8);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.document-card {
  display: block;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.document-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.document-card span {
  display: block;
  color: var(--gray);
  font-size: 0.9rem;
  margin-top: 0.4rem;
}

@media (max-width: 900px) {
  .site-header {
    position: static;
  }

  .nav-row {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 1rem;
  }

  .nav {
    justify-content: flex-start;
    gap: 1rem;
  }

  .nav-row .btn--primary {
    justify-self: start;
  }
}

@media (max-width: 600px) {
  .brand__logo {
    width: 72px;
    height: 72px;
  }

  .brand__name {
    font-size: 1.4rem;
  }

  .brand__meta {
    font-size: 0.9rem;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hours-row {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 1.4rem;
  }

  .section {
    padding: 3.2rem 0;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(1100px, 90vw);
  }

  .nav {
    font-size: 0.9rem;
  }

  .btn {
    width: 100%;
  }
}
