*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Outfit", sans-serif;
  background: #F7F4EF;
  color: #111918;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

:root {
  --teal: #1B8B8B;
  --wood: #C8965A;
  --cream: #F7F4EF;
  --radius: 1.25rem;
  --radius-sm: 0.75rem;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow: 0 4px 40px rgba(17,25,24,0.08);
  --shadow-lg: 0 16px 60px rgba(17,25,24,0.14);
}

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

.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1B8B8B;
  margin-bottom: 0.85rem;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  color: #111918;
}
.section-title em {
  font-style: italic;
  color: #1B8B8B;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn--primary {
  background: #1B8B8B;
  color: #FFFFFF;
  box-shadow: 0 6px 24px rgba(27, 139, 139, 0.3);
}
.btn--primary:hover {
  background: #2AADA8;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(27, 139, 139, 0.4);
}
.btn--ghost {
  background: transparent;
  color: #111918;
  border: 1.5px solid rgba(17, 25, 24, 0.2);
}
.btn--ghost:hover {
  border-color: #1B8B8B;
  color: #1B8B8B;
  transform: translateY(-2px);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 3rem;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.nav.scrolled {
  background: rgba(247, 244, 239, 0.93);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 24px rgba(17, 25, 24, 0.07);
  padding: 0.7rem 3rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #111918;
}
.nav__icon {
  width: 40px;
  height: 44px;
  color: #1B8B8B;
  flex-shrink: 0;
}
.nav__brand-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav__brand {
  font-family: "Outfit", sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  color: #111918;
  line-height: 1.2;
}
.nav__brand strong {
  font-weight: 600;
}
.nav__tagline {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #5C6E6D;
  opacity: 0.7;
  text-transform: uppercase;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  font-size: 0.87rem;
  font-weight: 400;
  color: #5C6E6D;
  transition: color var(--transition);
}
.nav__links a:hover {
  color: #1B8B8B;
}
.nav__links a.active {
  color: #1B8B8B;
  font-weight: 500;
}
.nav__cta {
  background: #1B8B8B !important;
  color: #FFFFFF !important;
  padding: 0.55rem 1.3rem;
  border-radius: 100px;
  font-size: 0.82rem !important;
  font-weight: 500 !important;
  transition: var(--transition) !important;
}
.nav__cta:hover {
  background: #2AADA8 !important;
  transform: translateY(-1px);
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #111918;
  border-radius: 2px;
  transition: var(--transition);
}
.nav__burger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
  background: #FFFFFF;
}
.nav__burger.open span:nth-child(2) {
  opacity: 0;
}
.nav__burger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
  background: #FFFFFF;
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  position: relative;
  overflow: hidden;
}
.hero__image-side {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
}
.hero__image-side .hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.88) contrast(1.05) saturate(0.95);
  transition: transform 8s ease;
}
.hero__image-side .hero__photo:hover {
  transform: scale(1.03);
}
.hero__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(17, 25, 24, 0.3) 0%, rgba(17, 25, 24, 0.05) 60%, transparent 100%);
}
.hero__photo-badge {
  position: absolute;
  bottom: 2.5rem;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.25rem;
  color: #FFFFFF;
  animation: floatCard 3.5s ease infinite;
}
.hero__photo-badge-stars {
  font-size: 1rem;
  color: #F5C842;
  letter-spacing: 3px;
}
.hero__photo-badge strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
}
.hero__photo-badge small {
  font-size: 0.73rem;
  opacity: 0.7;
}
.hero__content {
  background: #1A2827;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero__bg-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.hero__orb--1 {
  width: 500px;
  height: 500px;
  background: #1B8B8B;
  opacity: 0.18;
  top: -100px;
  right: -100px;
}
.hero__orb--2 {
  width: 300px;
  height: 300px;
  background: #C8965A;
  opacity: 0.1;
  bottom: 0;
  left: 0;
}
.hero__text {
  position: relative;
  z-index: 2;
  padding: 8rem 3.5rem 4rem;
  animation: fadeUp 0.8s ease both;
}
.hero__eyebrow {
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #2AADA8;
  margin-bottom: 1.5rem;
  opacity: 0.85;
}
.hero__logo-display {
  width: 70px;
  height: 80px;
  margin-bottom: 1.5rem;
}
.hero__logo-display svg {
  width: 100%;
  height: 100%;
}
.hero__logo-display {
  opacity: 0.9;
}
.hero__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.05;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}
.hero__title em {
  font-style: italic;
  color: #2AADA8;
}
.hero__subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
.hero__sub {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2.5rem;
  max-width: 380px;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero__actions .btn--ghost {
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.2);
}
.hero__actions .btn--ghost:hover {
  color: #FFFFFF;
  border-color: #2AADA8;
}
.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.hero__chip {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
}

.stats {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1B8B8B;
  padding: 1.75rem 3rem;
  flex-wrap: wrap;
}
.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem 3rem;
  color: #FFFFFF;
}
.stats__item strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}
.stats__item span {
  font-size: 0.76rem;
  opacity: 0.72;
  margin-top: 0.25rem;
  letter-spacing: 0.05em;
}
.stats__sep {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
}

.services {
  padding: 7rem 0;
  background: #F7F4EF;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: #FFFFFF;
  border-radius: var(--radius);
  padding: 2.2rem;
  border: 1px solid rgba(27, 139, 139, 0.12);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #1B8B8B;
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card__num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: rgba(27, 139, 139, 0.1);
  line-height: 1;
  margin-bottom: 0.85rem;
  letter-spacing: -0.05em;
}
.service-card__icon {
  width: 40px;
  height: 40px;
  color: #1B8B8B;
  margin-bottom: 1rem;
}
.service-card__icon svg {
  width: 100%;
  height: 100%;
}
.service-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: #111918;
  margin-bottom: 0.65rem;
}
.service-card p {
  font-size: 0.87rem;
  line-height: 1.7;
  color: #5C6E6D;
}
.service-card__tag {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.28rem 0.8rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  background: #E8F5F5;
  color: #1B8B8B;
}
.service-card--featured {
  background: #1A2827;
  border-color: transparent;
}
.service-card--featured .service-card__num {
  color: rgba(255, 255, 255, 0.07);
}
.service-card--featured .service-card__icon {
  color: #2AADA8;
}
.service-card--featured h3 {
  color: #FFFFFF;
}
.service-card--featured p {
  color: rgba(255, 255, 255, 0.52);
}
.service-card--featured .service-card__tag {
  background: rgba(27, 139, 139, 0.2);
  color: #2AADA8;
}
.service-card--featured::before {
  background: #2AADA8;
}
.service-card--accent {
  background: #1B8B8B;
  border-color: transparent;
}
.service-card--accent .service-card__num {
  color: rgba(255, 255, 255, 0.1);
}
.service-card--accent .service-card__icon {
  color: #FFFFFF;
}
.service-card--accent h3 {
  color: #FFFFFF;
}
.service-card--accent p {
  color: rgba(255, 255, 255, 0.75);
}
.service-card--accent .service-card__tag {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}
.service-card--accent::before {
  background: #FFFFFF;
}
.service-card--accent:hover {
  box-shadow: 0 16px 60px rgba(27, 139, 139, 0.35);
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  padding: 7rem 4rem;
  background: #FFFFFF;
  overflow: hidden;
}
.about__content .section-title {
  margin: 0.75rem 0 1.25rem;
}
.about__text {
  font-size: 0.93rem;
  line-height: 1.8;
  color: #5C6E6D;
  margin-bottom: 1.1rem;
}
.about__features {
  margin: 1.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.about__features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.88rem;
  color: #111918;
}
.about__feat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1B8B8B;
  flex-shrink: 0;
}
.about__visual {
  position: relative;
}
.about__photos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.85rem;
  border-radius: var(--radius);
  overflow: hidden;
}
.about__photo {
  overflow: hidden;
  border-radius: 0.75rem;
}
.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about__photo:hover img {
  transform: scale(1.04);
}
.about__photo--tall {
  grid-row: span 2;
}
.about__photo--tall img {
  height: 100%;
  min-height: 380px;
}
.about__photo--sq img {
  height: 180px;
}
.about__tagline-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #FFFFFF;
  border: 1px solid rgba(27, 139, 139, 0.12);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin-top: 1rem;
  box-shadow: var(--shadow);
}
.about__tagline-card strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #111918;
}
.about__tagline-card small {
  font-size: 0.73rem;
  color: #5C6E6D;
  margin-top: 0.2rem;
  display: block;
}
.about__tagline-logo {
  width: 42px;
  height: 48px;
  flex-shrink: 0;
}
.about__tagline-logo svg {
  width: 100%;
  height: 100%;
}

.dra-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #E8F5F5;
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.4rem;
  margin: 1.5rem 0;
  border: 1px solid rgba(27, 139, 139, 0.15);
}
.dra-card__img-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2.5px solid #1B8B8B;
}
.dra-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.dra-card__role {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1B8B8B;
  margin-bottom: 0.2rem;
}
.dra-card__name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: #111918;
  margin-bottom: 0.2rem;
}
.dra-card__desc {
  font-size: 0.78rem;
  color: #5C6E6D;
  line-height: 1.5;
}

.gallery {
  padding: 7rem 0 0;
  background: #F7F4EF;
}
.gallery .container {
  margin-bottom: 3rem;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 340px;
  gap: 6px;
  overflow: hidden;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.9) saturate(0.95);
}
.gallery__item:hover img {
  transform: scale(1.07);
  filter: brightness(1) saturate(1.05);
}
.gallery__item:hover .gallery__caption {
  opacity: 1;
  transform: translateY(0);
}
.gallery__item--wide {
  grid-column: span 2;
}
.gallery__item--tall {
  grid-row: span 2;
}
.gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(17, 25, 24, 0.7));
  color: #FFFFFF;
  padding: 1.5rem 1.25rem 1rem;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.reviews {
  padding: 7rem 0;
  background: #FFFFFF;
}
.reviews__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.reviews__col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.reviews__cta {
  text-align: center;
}

.review-card {
  background: #F7F4EF;
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(27, 139, 139, 0.12);
  transition: var(--transition);
}
.review-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.review-card--large {
  padding: 2.5rem;
  background: #1A2827;
  border-color: transparent;
}
.review-card--large .review-card__stars {
  color: #F5C842;
}
.review-card--large blockquote {
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 0.98rem !important;
}
.review-card--large .review-card__author strong {
  color: #FFFFFF;
}
.review-card--large .review-card__author small {
  color: rgba(255, 255, 255, 0.4) !important;
}
.review-card__stars {
  color: #F5C842;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}
.review-card blockquote {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.65;
  color: #111918;
  margin-bottom: 1.4rem;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.review-card__author strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
}
.review-card__author small {
  font-size: 0.72rem;
  color: #93A8A7;
  display: block;
  margin-top: 0.1rem;
}
.review-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}
.contact__info {
  padding: 6rem 4rem;
  background: #F7F4EF;
}
.contact__info .section-title {
  margin: 0.75rem 0 2rem;
}
.contact__block {
  display: flex;
  gap: 1.1rem;
  margin-bottom: 1.75rem;
  align-items: flex-start;
}
.contact__block strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1B8B8B;
  margin-bottom: 0.35rem;
}
.contact__block p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #5C6E6D;
}
.contact__block p a {
  color: #111918;
  font-weight: 500;
  font-size: 1.05rem;
}
.contact__block p a:hover {
  color: #1B8B8B;
}
.contact__block small {
  font-size: 0.75rem;
  color: #93A8A7;
  margin-top: 0.2rem;
  display: block;
}
.contact__icon {
  font-size: 1.3rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}
.contact__exterior {
  margin: 1.5rem 0 2rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.contact__exterior img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  object-position: center;
}
.contact__map {
  background: #E8F5F5;
}
.contact__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  filter: grayscale(10%) contrast(1.05);
}
.contact__btn {
  margin-top: 0.5rem;
}

.hours__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(27, 139, 139, 0.12);
  font-size: 0.85rem;
}
.hours__row:last-child {
  border-bottom: none;
}
.hours__row span:first-child {
  color: #111918;
  font-weight: 500;
}
.hours__row span:last-child {
  color: #5C6E6D;
}
.hours__row--closed span {
  color: #93A8A7 !important;
  font-style: italic;
}

.footer {
  background: #1A2827;
  color: rgba(255, 255, 255, 0.55);
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding: 4rem 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}
.footer__brand p {
  font-size: 0.83rem;
  line-height: 1.8;
  opacity: 0.45;
  margin-top: 0.5rem;
}
.footer__links h4 {
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer__links li, .footer__links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.42);
  transition: color var(--transition);
}
.footer__links a:hover {
  color: #2AADA8;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 3rem;
  font-size: 0.78rem;
}
.footer__bottom p {
  opacity: 0.38;
}
.footer__badges {
  display: flex;
  gap: 1rem;
}
.footer__badges span {
  font-size: 0.75rem;
  opacity: 0.45;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1200px) {
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 240px 300px;
  }
}
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero__image-side {
    min-height: 60svh;
    max-height: 500px;
  }
  .hero__text {
    padding: 4rem 2.5rem 3rem;
  }
  .hero__sub {
    max-width: 100%;
  }
  .hero__logo-display {
    width: 55px;
    height: 63px;
  }
  .about {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 5rem 2.5rem;
  }
  .about__photos-grid__photo--tall img {
    min-height: 260px;
  }
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews__grid {
    grid-template-columns: 1fr;
  }
  .contact {
    grid-template-columns: 1fr;
  }
  .contact__map {
    min-height: 350px;
  }
  .contact__info {
    padding: 4rem 2rem;
  }
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .nav {
    padding: 0.9rem 1.5rem;
  }
  .nav.scrolled {
    padding: 0.75rem 1.5rem;
  }
  .nav__tagline {
    display: none;
  }
  .nav__links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 40, 39, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 100;
  }
  .nav__links a {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
  }
  .nav__links.open {
    opacity: 1;
    pointer-events: all;
  }
  .nav__burger {
    display: flex;
  }
  .hero__chips {
    gap: 0.4rem;
  }
  .hero__chip {
    font-size: 0.7rem;
    padding: 0.3rem 0.7rem;
  }
  .stats__item {
    padding: 0.75rem 1.25rem;
  }
  .stats__item strong {
    font-size: 1.6rem;
  }
  .stats__sep {
    height: 28px;
  }
  .services__grid {
    grid-template-columns: 1fr;
  }
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery__grid .gallery__item--wide, .gallery__grid .gallery__item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }
  .gallery__grid .gallery__item img {
    height: 180px;
  }
  .about__photos-grid__photo--sq img {
    height: 140px;
  }
  .about__photos-grid__photo--tall img {
    min-height: 280px;
  }
  .footer__top {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 1.5rem;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
    padding: 1.25rem;
  }
}
.hero__bg-photo {
  position: absolute;
  inset: 0;
}
.hero__bg-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17, 25, 24, 0.88) 0%, rgba(17, 25, 24, 0.72) 50%, rgba(27, 139, 139, 0.35) 100%);
}
.hero__logo-mark {
  width: 80px;
  height: 88px;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
.hero__logo-mark svg {
  width: 100%;
  height: 100%;
}
.hero__logo-mark {
  filter: drop-shadow(0 0 20px rgba(43, 173, 168, 0.4));
}
.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.4));
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.7;
    transform: scaleY(1.15);
  }
}
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100svh;
  padding: 8rem 2rem 5rem;
  position: relative;
  overflow: hidden;
  background: #1A2827;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  animation: fadeUp 0.9s ease both;
}
.hero__sub {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2.5rem;
}
.hero__actions {
  justify-content: center;
}
.hero__badge {
  justify-content: center;
}

.doctor {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: #F7F4EF;
  overflow: hidden;
}
.doctor__photo-wrap {
  position: relative;
  height: 640px;
}
.doctor__photo-bg {
  position: absolute;
  inset: 0;
  background: #1A2827;
}
.doctor__photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}
.doctor__photo:hover {
  transform: scale(1.02);
}
.doctor__content {
  padding: 5rem 4rem;
}
.doctor__content .section-title {
  margin: 1rem 0 1.75rem;
}
.doctor__text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #5C6E6D;
  margin-bottom: 1.25rem;
}
.doctor__features {
  margin: 1.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.doctor__features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: #111918;
}
.doctor__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1B8B8B;
  flex-shrink: 0;
}
.doctor__tagline {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid #1B8B8B;
  background: #E8F5F5;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-style: italic;
  color: #1B8B8B;
  line-height: 1.5;
}

.gallery {
  background: #1A2827;
  padding-bottom: 0;
}
.gallery__header {
  padding: 5rem 0 3rem;
}
.gallery__header .section-eyebrow {
  color: #2AADA8;
}
.gallery__header .section-title {
  color: #FFFFFF;
}
.gallery__header .section-title em {
  color: #2AADA8;
}
.gallery__bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: 4px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery__item:hover img {
  transform: scale(1.06);
}
.gallery__item:hover .gallery__item-overlay {
  opacity: 1;
}
.gallery__item--tall {
  grid-row: span 2;
}
.gallery__item--wide {
  grid-column: span 2;
}
.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 25, 24, 0.55);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.gallery__item-overlay span {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: rgba(27, 139, 139, 0.8);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10, 16, 16, 0.95);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox__img-wrap {
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}
.lightbox__img-wrap img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}
.lightbox__label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 1rem;
}
.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  font-size: 1.2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
}
.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.2);
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  font-size: 2rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox__nav:hover {
  background: rgba(27, 139, 139, 0.4);
}
.lightbox__nav--prev {
  left: 1.5rem;
}
.lightbox__nav--next {
  right: 1.5rem;
}

.footer__logo-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.footer__logo-svg {
  width: 44px;
  height: 48px;
  color: #2AADA8;
  flex-shrink: 0;
}
.footer__brand-name {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: #FFFFFF;
}
.footer__brand-name strong {
  font-weight: 700;
}
.footer small {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.04em;
}
.footer__tagline {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.5;
}
.footer__badges {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.footer__badges span {
  font-size: 0.78rem;
  opacity: 0.45;
}

@media (max-width: 1024px) {
  .doctor {
    grid-template-columns: 1fr;
  }
  .doctor__photo-wrap {
    height: 420px;
  }
  .doctor__content {
    padding: 3rem 2rem;
  }
  .gallery__bento {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery__bento .gallery__item--tall {
    grid-row: span 1;
  }
  .gallery__bento .gallery__item--wide {
    grid-column: span 2;
  }
}
@media (max-width: 768px) {
  .gallery__bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px 200px;
  }
  .gallery__bento .gallery__item--wide {
    grid-column: span 2;
  }
  .gallery__bento .gallery__item--tall {
    grid-row: span 1;
  }
  .hero__logo-mark {
    width: 60px;
    height: 66px;
  }
  .lightbox__nav--prev {
    left: 0.5rem;
  }
  .lightbox__nav--next {
    right: 0.5rem;
  }
}
.nav__brand-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav__tagline {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #93A8A7;
  line-height: 1;
}

.footer__logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
  padding: 7rem 3rem;
  background: #FFFFFF;
  overflow: hidden;
}
.about__content .section-title {
  margin: 1rem 0 1.5rem;
}

.about__carousel-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.carousel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: #1A2827;
  box-shadow: var(--shadow-lg);
  cursor: grab;
  user-select: none;
}
.carousel:active {
  cursor: grabbing;
}
.carousel__track {
  display: flex;
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.carousel__slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
.carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  pointer-events: none;
}
.carousel__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(17, 25, 24, 0.85) 0%, transparent 100%);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 400;
  padding: 2.5rem 1.5rem 1.25rem;
  letter-spacing: 0.03em;
}
.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
}
.carousel__btn svg {
  width: 20px;
  height: 20px;
}
.carousel__btn:hover {
  background: rgba(27, 139, 139, 0.7);
  transform: translateY(-50%) scale(1.08);
}
.carousel__btn--prev {
  left: 1rem;
}
.carousel__btn--next {
  right: 1rem;
}
.carousel__dots {
  position: absolute;
  bottom: 3.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}
.carousel__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.carousel__dot.active {
  background: #FFFFFF;
  width: 22px;
  border-radius: 3px;
}
.carousel__progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  background: #1B8B8B;
  z-index: 10;
  transform-origin: left;
  animation: progressBar 4.5s linear infinite;
}

.carousel__thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}
.carousel__thumbs .thumb {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  opacity: 0.55;
}
.carousel__thumbs .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  pointer-events: none;
}
.carousel__thumbs .thumb.active, .carousel__thumbs .thumb:hover {
  border-color: #1B8B8B;
  opacity: 1;
}

@keyframes progressBar {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .about {
    grid-template-columns: 1fr;
    padding: 5rem 2rem;
  }
  .about__carousel-wrap {
    order: -1;
  }
  .carousel {
    aspect-ratio: 16/10;
  }
  .carousel__thumbs {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width: 768px) {
  .nav__tagline {
    display: none;
  }
  .carousel {
    aspect-ratio: 4/3;
  }
  .carousel__thumbs {
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
  }
}
