:root {
  --bg-0: #f6f3ef;
  --bg-1: #f2efe9;
  --ink-0: #1d1b19;
  --ink-1: #3a3430;
  --ink-2: #4b433d;
  --brand-0: #1b6b5a;
  --brand-1: #2c8c76;
  --brand-2: #d7b58c;
  --accent-0: #c84b31;
  --accent-1: #f08a5d;
  --card: #ffffff;
  --shadow: 0 18px 50px rgba(27, 21, 18, 0.12);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --max-w: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink-0);
  background: radial-gradient(1200px 600px at 10% -20%, #fff7ed 0%, var(--bg-0) 45%, var(--bg-1) 100%);
}

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

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

.container {
  width: min(92vw, var(--max-w));
  margin: 0 auto;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #efe5d6;
  color: var(--ink-1);
  font-size: 13px;
  letter-spacing: 0.3px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--brand-0);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(27, 107, 90, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(27, 107, 90, 0.32);
}

.btn.secondary {
  background: #fff;
  border-color: #cbb9a2;
  color: var(--ink-1);
  box-shadow: none;
}

.btn.secondary:hover {
  border-color: var(--brand-1);
  color: var(--brand-0);
  background: #f6f0e8;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(246, 243, 239, 0.85);
  border-bottom: 1px solid rgba(203, 185, 162, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Fraunces", "Georgia", serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.5px;
}

.brand-badge {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-0), var(--brand-1));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  color: var(--ink-2);
}

nav a {
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--brand-1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

nav a:hover::after,
nav a.active::after {
  transform: scaleX(1);
}

.hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(0px);
  opacity: 0.45;
}

.hero::before {
  width: 420px;
  height: 420px;
  right: -120px;
  top: -120px;
  background: radial-gradient(circle, #f0c39b, transparent 60%);
}

.hero::after {
  width: 360px;
  height: 360px;
  left: -140px;
  bottom: -140px;
  background: radial-gradient(circle, #a5d3c7, transparent 65%);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px;
  align-items: center;
}

.hero h1 {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.05;
  margin: 14px 0 18px;
}

.hero p {
  font-size: 18px;
  color: var(--ink-2);
  margin: 0 0 26px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}

.hero-card h3 {
  margin: 0;
  font-size: 18px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.stat {
  background: #f2e9dd;
  border-radius: 14px;
  padding: 14px;
  text-align: center;
  font-weight: 600;
  color: var(--ink-1);
}

.stat span {
  display: block;
  font-size: 12px;
  color: var(--ink-1);
  font-weight: 500;
}

.section {
  padding: 70px 0;
}

.section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-title h2 {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(28px, 3vw, 42px);
  margin: 0;
}

.section-title p {
  margin: 0;
  color: var(--ink-2);
  max-width: 520px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.step-card {
  background: var(--card);
  padding: 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  min-height: 180px;
}

.step-card h4 {
  margin: 12px 0 8px;
}

.step-num {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brand-0);
  font-weight: 700;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-btn {
  border: 1px solid #d6c5b2;
  background: #fff;
  color: var(--ink-1);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn.active,
.filter-btn:hover {
  border-color: var(--brand-0);
  color: #fff;
  background: var(--brand-0);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.card {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
  position: relative;
}

.card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #f4d3b1, #c7e1d7);
  display: grid;
  place-items: center;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-image-fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--ink-1);
  font-size: 24px;
  background: linear-gradient(135deg, rgba(244, 211, 177, 0.9), rgba(199, 225, 215, 0.9));
  text-align: center;
  padding: 16px;
}

.card-image-initials {
  font-size: 28px;
}

.card-image-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
  margin-top: 6px;
}

.is-hidden {
  display: none;
}

.avatar {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(140deg, #f4d3b1, #c7e1d7);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--ink-1);
  overflow: hidden;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
}

.profile-photo {
  width: 120px;
  height: 120px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #f4d3b1, #c7e1d7);
  display: grid;
  place-items: center;
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-photo-fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--ink-1);
  font-size: 28px;
  background: linear-gradient(135deg, rgba(244, 211, 177, 0.9), rgba(199, 225, 215, 0.9));
}

.card h3 {
  margin: 0;
  font-size: 18px;
}

.card .meta {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-2);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #eadbc8;
  color: var(--ink-1);
}

.rating {
  font-weight: 700;
  color: #165549;
}

.price {
  font-weight: 700;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-footer {
  flex-wrap: wrap;
  gap: 10px;
}

.mobile-toggle {
  display: none;
  border: 1px solid #cbb9a2;
  border-radius: 999px;
  padding: 10px 16px;
  background: #fff;
  font-weight: 600;
  color: var(--ink-1);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(86vw, 320px);
  height: 100vh;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 24px;
  display: grid;
  gap: 16px;
  z-index: 60;
  transition: right 0.25s ease;
}

.mobile-menu a {
  font-size: 16px;
  color: var(--ink-1);
}

.mobile-menu .btn {
  justify-content: center;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
}

.mobile-close {
  border: none;
  background: transparent;
  font-weight: 600;
  color: var(--ink-2);
}

.mobile-scrim {
  position: fixed;
  inset: 0;
  background: rgba(18, 16, 14, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 55;
}

body.menu-open .mobile-menu {
  right: 0;
}

body.menu-open .mobile-scrim {
  opacity: 1;
  pointer-events: auto;
}

.banner {
  background: linear-gradient(120deg, #193b33, #1b6b5a);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.banner .btn {
  background: #f6e6d0;
  color: #18332c;
  box-shadow: none;
}

.banner .btn:hover {
  background: #f2dcc0;
}

.banner .detail-list,
.banner .detail-list div {
  color: #e7f2ee;
}

.banner h3 {
  font-family: "Fraunces", "Georgia", serif;
  font-size: 28px;
  margin: 0 0 10px;
}

.banner p {
  margin: 0;
  color: #dfeee9;
}

.faq {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.faq-item {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 40px 0 60px;
  color: var(--ink-2);
  border-top: 1px solid rgba(203, 185, 162, 0.4);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.page-hero {
  padding: 60px 0 30px;
}

.profile-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.profile-card {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow);
}

.profile-card h2 {
  margin: 8px 0 6px;
}

.detail-list {
  display: grid;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-2);
}

.booking {
  display: grid;
  gap: 14px;
}

.booking input,
.booking select,
.booking textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d8c7b2;
  font-family: inherit;
}

.booking small {
  color: var(--ink-2);
}

.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js .animate {
  opacity: 0;
  transform: translateY(20px);
}

.js .animate.visible {
  opacity: 1;
  transform: translateY(0);
}

#profiles-grid .animate {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .banner,
  .profile-grid {
    grid-template-columns: 1fr;
  }

  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  nav {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-title {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .steps,
  .faq,
  .grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    flex-direction: column;
    gap: 14px;
  }

  .hero {
    padding-top: 50px;
  }

  .stats {
    grid-template-columns: 1fr;
  }
}
