/* fonts.css */
@font-face {
  font-family: "Loew";
  src: url("../fonts/LoewNext-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Loew";
  src: url("../fonts/LoewNext-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Loew";
  src: url("../fonts/LoewNext-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}


/* profiles.css */
:root {
  --font-sans: "Poppins", sans-serif;
  --bg: #efe9df;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --text: #201812;
  --muted: #6f635a;
  --line: rgba(32, 24, 18, 0.1);
  --accent: #8a5d3b;
  --carbon: #25201c;
  --carbon-300: #3a332d;
  --shadow: 0 24px 60px rgba(43, 29, 19, 0.12);
  --radius: 22px;
  --max: 1380px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.2px;
  font-weight: 400;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.75), transparent 30%),
    linear-gradient(180deg, #f7f3ec 0%, #ece4d8 42%, #f3ede5 100%);
  min-height: 100vh;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.shell {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.wide-shell {
  width: min(calc(100% - 32px), 1680px);
}

body.browse-page {
  --city-shell: 1680px;
  --city-hero-shell: var(--max);
  --city-shell-gutter: 16px;
}

body.perks-page {
  --city-shell: 1400px;
  --city-hero-shell: 1400px;
  --city-shell-gutter: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
}

.site-header-main {
  background: var(--carbon);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header-sub {
  background: var(--carbon-300);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
}

.subbar {
  min-height: 38px;
  display: flex;
  align-items: center;
}

.brand {
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #f8f3ea;
}

.menu {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.menu a,
.menu-trigger {
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 248, 241, 0.78);
  transition: color 0.2s ease;
}

.account-menu {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 6px;
}

.account-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 248, 241, 0.9);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.account-trigger:hover,
.account-menu.is-open .account-trigger {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.26);
  color: #ffffff;
}

.account-icon {
  flex: 0 0 auto;
}

.account-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(320px, calc(100vw - 32px));
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(32, 24, 18, 0.08);
  box-shadow: 0 22px 44px rgba(32, 24, 18, 0.14);
  z-index: 48;
}

.account-panel-head {
  margin-bottom: 14px;
}

.account-panel-head h3 {
  margin: 0;
  color: var(--text);
  font-size: 12px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.account-form {
  display: grid;
  gap: 12px;
}

.account-field {
  display: grid;
  gap: 6px;
}

.account-field span {
  color: var(--muted);
  font-size: 10px;
  line-height: 18px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.account-field input {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(32, 24, 18, 0.12);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  font: inherit;
  outline: none;
}

.account-field input:focus {
  border-color: rgba(138, 93, 59, 0.4);
}

.account-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  font: inherit;
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
}

.account-forgot {
  color: var(--muted);
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  text-align: center;
}

.menu-trigger,
.splash-menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.menu-trigger-icon {
  width: 16px;
  height: 17px;
  flex: 0 0 auto;
  transition: transform 0.28s ease;
}

.menu a:hover,
.menu a.active,
.menu-trigger:hover,
.menu-trigger.active {
  color: #ffffff;
}

.menu-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.menu-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(32, 24, 18, 0.08);
  box-shadow: 0 22px 44px rgba(32, 24, 18, 0.12);
  display: grid;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
  z-index: 40;
}

.menu-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 12px;
}

.menu-dropdown:hover .menu-panel,
.menu-dropdown:focus-within .menu-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-dropdown:hover > .menu-trigger,
.menu-dropdown:focus-within > .menu-trigger {
  color: #ffffff;
}

.menu-dropdown:hover > .menu-trigger .menu-trigger-icon,
.menu-dropdown:focus-within > .menu-trigger .menu-trigger-icon {
  transform: rotate(180deg);
}

.menu-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--text);
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.menu-panel a:hover {
  background: rgba(138, 93, 59, 0.08);
  color: var(--text);
}

.breadcrumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(255, 248, 241, 0.86);
  font-size: 10px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.breadcrumbs a {
  color: rgba(255, 248, 241, 0.86);
}

.breadcrumbs span:last-child {
  color: #ffffff;
}

.hero {
  padding: 54px 0 30px;
}

.hero-banner {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding: 34px 32px 24px;
}

.hero-banner-shell {
  width: min(calc(100% - 0px), 1680px);
  margin: 0 auto;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 246, 238, 0.72)),
    url("../../images/profile-13.jpg") center 24% / cover;
  box-shadow: var(--shadow);
  isolation: isolate;
  min-height: 380px;
  display: grid;
  align-items: end;
}

.hero-panel-banner {
  min-height: 420px;
  padding: clamp(28px, 4vw, 46px);
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 246, 238, 0.08));
  background-position: center, center 28%;
  background-size: auto, cover;
  background-repeat: no-repeat, no-repeat;
  grid-template-columns: minmax(0, 560px) minmax(220px, 1fr);
  column-gap: clamp(24px, 4vw, 64px);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 13, 9, 0.82) 0%, rgba(20, 13, 9, 0.44) 42%, rgba(20, 13, 9, 0.16) 100%);
  z-index: -1;
}

.hero-copy {
  max-width: 620px;
  color: #fffaf3;
}

.browse-hero-copy {
  max-width: 560px;
}

.browse-hero-actions {
  display: flex;
  align-items: center;
  margin-top: 26px;
}

.browse-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.browse-hero-featured {
  margin: 0;
  align-self: end;
  justify-self: end;
  color: rgba(255, 250, 243, 0.92);
  font-size: 12px;
  line-height: 20px;
  font-weight: 700 !important;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-align: right;
}

body.perks-page .grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.perks-page .wide-shell {
  width: min(calc(100% - 32px), 1400px);
}

body.city-page .hero-banner {
  padding: 0;
}

body.city-page .hero-banner-shell {
  width: 100%;
}

body.city-page .hero-panel-banner {
  border-radius: 0;
  padding-top: clamp(28px, 4vw, 46px);
  padding-bottom: clamp(28px, 4vw, 46px);
  padding-left: max(var(--city-shell-gutter), calc((100% - var(--city-hero-shell)) / 2));
  padding-right: max(var(--city-shell-gutter), calc((100% - var(--city-hero-shell)) / 2));
}

body.browse-page .hero-panel-banner {
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 246, 238, 0.08)),
    url("../../images/splash-02.jpg");
}

body.perks-page .hero-panel-banner {
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 246, 238, 0.08)),
    url("../../images/perks-splash.jpg");
}

body.city-page main.shell.wide-shell {
  margin-top: 25px;
}

body.perks-page .card-media {
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

body.perks-page .perk-card {
  display: flex;
  flex-direction: column;
}

body.perks-page .card-media img {
  transition: transform 0.5s ease;
}

body.perks-page .card-media:hover img,
body.perks-page .card-media:focus-visible img {
  transform: scale(1.03);
}

body.perks-page .perk-card h3 {
  cursor: pointer;
}

body.perks-page .card-media:focus-visible,
body.perks-page .perk-card h3:focus-visible {
  outline: 2px solid rgba(255, 250, 243, 0.88);
  outline-offset: 4px;
}

body.perks-page .perk-validity {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(20, 14, 11, 0.76);
  color: #fff7ef;
  font-size: 11px;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

body.perks-page .card-body {
  display: grid;
  gap: 16px;
  padding: 20px;
}

body.perks-page .card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -0.8px;
  font-weight: 700;
  text-transform: none;
}

body.perks-page .perk-summary {
  margin: 0;
  min-height: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.2px;
  font-weight: 400;
  font-style: normal;
}

body.perks-page .perk-label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 10px;
  line-height: 16px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

body.perks-page .meta-row {
  align-items: center;
  margin-bottom: 0;
}

body.perks-page .meta-owner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

body.perks-page .perk-avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  overflow: hidden;
  border-radius: 50%;
  background: rgba(31, 23, 18, 0.08);
}

body.perks-page .perk-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

body.perks-page .meta-row > span:last-child {
  color: var(--muted);
}

body.perks-page .meta-owner > span:last-child {
  color: var(--text);
}

body.perks-page .perk-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: auto;
}

body.perks-page .perk-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(32, 24, 18, 0.1);
  font-size: 12px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

body.perks-page .perk-cta-primary {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

body.perks-page .perk-cta-secondary {
  background: rgba(255, 255, 255, 0.74);
  color: var(--text);
  transition: transform .3s ease-out;
}

body.perks-page .perk-cta:hover,
body.perks-page .perk-cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(32, 24, 18, 0.12);
}

body.perks-page .perk-cta-secondary:hover,
body.perks-page .perk-cta-secondary:focus-visible {
  box-shadow: none;
}

body.perks-page .perk-lightbox[hidden] {
  display: none;
}

body.perks-page .perk-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease-out, visibility .3s ease-out;
}

body.perks-page .perk-lightbox.is-visible {
  opacity: 1;
  visibility: visible;
}

body.perks-page .perk-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 12, 9, 0.58);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .3s ease-out;
}

body.perks-page .perk-lightbox.is-visible .perk-lightbox__backdrop {
  opacity: 1;
}

body.perks-page .perk-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 640px);
  padding: 28px;
  border: 1px solid rgba(32, 24, 18, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 32px 64px rgba(32, 24, 18, 0.18);
  opacity: 0;
  transform: translateY(-24px);
  transition: transform .3s ease-out, opacity .3s ease-out;
}

body.perks-page .perk-lightbox.is-visible .perk-lightbox__dialog {
  opacity: 1;
  transform: translateY(0);
}

body.perks-page .perk-lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(32, 24, 18, 0.06);
  color: var(--text);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

body.perks-page .perk-lightbox__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

body.perks-page .perk-lightbox__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(138, 93, 59, 0.08);
  color: var(--accent);
  font-size: 11px;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

body.perks-page .perk-lightbox__dialog h2 {
  margin: 0 0 20px;
  font-size: 34px;
  line-height: 0.98;
  letter-spacing: -1px;
  font-weight: 700;
}

body.perks-page .perk-lightbox__section + .perk-lightbox__section {
  margin-top: 18px;
}

body.perks-page .perk-lightbox__section p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 24px;
  font-style: normal;
}

body.perks-page .perk-lightbox__actions {
  margin-top: 24px;
}

body.perks-page.perk-lightbox-open {
  overflow: hidden;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 11px;
  line-height: 20px;
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.hero h1 {
  margin: 18px 0 14px;
  font-family: var(--font-sans);
  font-size: clamp(34px, 6vw, 56px);
  line-height: 0.95;
  letter-spacing: -1px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero p {
  margin: 0;
  max-width: 46ch;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.2px;
  font-weight: 400;
  color: rgba(255, 250, 243, 0.88);
}

.toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 18px;
  margin: 26px 0 34px;
}

.toolbar-search-only {
  grid-template-columns: minmax(0, 1fr);
  margin-bottom: 14px;
}

.search-box,
.filter-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(66, 42, 26, 0.06);
}

.search-box input {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  outline: none;
}

.search-box input::placeholder {
  color: #918277;
}

.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.results-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 24px;
}

.browse-city-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.browse-city-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--text);
  font: inherit;
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(66, 42, 26, 0.06);
}

.browse-city-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 460px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(32, 24, 18, 0.08);
  box-shadow: 0 22px 44px rgba(32, 24, 18, 0.12);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
  z-index: 26;
}

.browse-city-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 12px;
}

.browse-city-dropdown:hover .browse-city-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.browse-city-dropdown:hover .browse-city-trigger .menu-trigger-icon {
  transform: rotate(180deg);
}

.browse-city-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--text);
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.browse-city-panel a:hover {
  background: rgba(138, 93, 59, 0.08);
  color: var(--text);
}

.results-toolbar-main {
  display: flex;
  align-items: center;
  gap: 14px;
}

.search-box-compact {
  width: min(100%, 400px);
  min-width: 400px;
}

.results-count {
  order: -1;
  margin: 0;
  color: var(--text);
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.filter-popover {
  position: relative;
}

.filter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--text);
  font: inherit;
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(66, 42, 26, 0.06);
}

.filter-toggle-meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  min-height: 24px;
  padding: 0 7px;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  font-size: 10px;
  line-height: 1;
}

.filter-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(360px, calc(100vw - 32px));
  padding: 20px;
  border: 1px solid rgba(32, 24, 18, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 60px rgba(43, 29, 19, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
  z-index: 25;
}

.filter-popover.is-open .filter-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.filter-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.filter-panel-head h3 {
  margin: 0;
  font-size: 12px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.filter-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: rgba(32, 24, 18, 0.06);
  color: var(--text);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.filter-group + .filter-group {
  margin-top: 18px;
}
.filter-panel-actions {
  margin-top: 22px;
}

.filter-apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  font: inherit;
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
}

.filter-group-label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 10px;
  line-height: 18px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.filter-panel .filters {
  justify-content: flex-start;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(138, 93, 59, 0.18);
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.chip.active {
  background: var(--text);
  border-color: var(--text);
  color: #fff;
}

.section-head {
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin: 10px 0 18px;
  text-align: center;
}
.section-head-browse {
  margin-top: 26px;
  margin-bottom: 16px;
}

.section-head h2 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 32px;
  line-height: 54px;
  letter-spacing: -1.5px;
  font-weight: 700;
  text-transform: uppercase;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.2px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 56px;
}

.card {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(32, 24, 18, 0.08);
  background: var(--surface-strong);
  box-shadow: 0 18px 36px rgba(39, 26, 17, 0.08);
  margin-bottom: 4px;
}

.card:hover {
  transform: none;
  box-shadow: 0 18px 36px rgba(39, 26, 17, 0.08);
}

.card-media {
  position: relative;
  aspect-ratio: 4 / 5.4;
  overflow: hidden;
  background: #d9cfbf;
}

.card-media-link {
  display: block;
  height: 100%;
  position: relative;
  z-index: 0;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card-media-link:hover img,
.card-media-link:focus-visible img {
  transform: scale(1.03);
}

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(18, 12, 9, 0.74);
  color: #fff7ef;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-body {
  padding: 18px 18px 20px;
}

.meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.meta-row span {
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent);
}

.card h3 {
  margin: 0 0 10px;
  font-family: var(--font-sans);
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.2px;
  font-weight: 700;
  text-transform: uppercase;
}

.card-title-link {
  color: inherit;
  text-decoration: none;
}

.card p {
  margin: 0 0 16px;
  min-height: 48px;
  color: var(--text);
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.2px;
  font-weight: 400;
  font-style: italic;
}

.card-footer {
  display: none;
}

.location {
  color: var(--muted);
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.2px;
  font-weight: 400;
}

.view-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(138, 93, 59, 0.11);
  color: var(--text);
  font-size: 12px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.site-footer {
  border-top: 1px solid rgba(32, 24, 18, 0.08);
  padding: 26px 0 40px;
  color: var(--muted);
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.2px;
}

@media (min-width: 900px) {
  .section-head h2 {
        font-size: 40px;
        line-height: 60px;
        letter-spacing: -1.5px;
  }
}

@media (max-width: 1180px) {
  .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .filters {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .topbar,
  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .menu {
    justify-content: flex-start;
  }

  .subbar {
    min-height: 34px;
  }

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

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

  body.perks-page .perk-actions {
    grid-template-columns: 1fr;
  }

  .results-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .browse-city-panel {
    min-width: 320px;
  }

  .results-toolbar-main {
    width: 100%;
    flex-wrap: wrap;
  }

  .browse-hero-actions {
    align-items: flex-start;
  }

  .browse-hero-featured {
    justify-self: start;
    align-self: start;
    text-align: left;
  }

  .hero-panel-banner {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }

  .search-box-compact {
    width: min(100%, 400px);
    min-width: 0;
  }

  .filter-panel {
    right: auto;
    left: 0;
    width: min(360px, calc(100vw - 32px));
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(calc(100% - 20px), var(--max));
  }

  .wide-shell {
    width: min(calc(100% - 20px), 1680px);
  }

  body.perks-page .wide-shell {
    width: min(calc(100% - 20px), 1400px);
  }

  body.city-page {
    --city-shell-gutter: 10px;
  }

  .hero-banner {
    padding: 22px 20px 18px;
  }

  body.city-page .hero-banner {
    padding: 0;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-panel {
    min-height: 320px;
  }

  .hero-panel-banner {
    min-height: 380px;
    border-radius: 24px;
  }

  body.city-page .hero-panel-banner {
    border-radius: 0;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  body.perks-page .grid {
    grid-template-columns: 1fr;
  }

  body.perks-page .perk-lightbox {
    padding: 16px;
  }

  body.perks-page .perk-lightbox__dialog {
    padding: 22px 20px;
  }

  body.perks-page .perk-lightbox__dialog h2 {
    font-size: 28px;
  }

  .filter-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .results-toolbar-main {
    width: 100%;
    gap: 12px;
  }

  .search-box-compact {
    width: 100%;
  }

  .filter-panel {
    width: min(100vw - 20px, 360px);
  }

  .browse-city-panel {
    min-width: min(100vw - 20px, 320px);
    grid-template-columns: 1fr;
  }
}


/* footer.css */
.lush-footer {
  width: 100%;
  min-height: 100vh;
  padding: 36px 0;
  position: relative;
  z-index: 0;
  background: #000;
  color: #ffffff;
}

.lush-footer a {
  color: inherit;
  text-decoration: none;
}

.lush-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lush-footer .footer__inner {
  width: 100%;
  max-width: 1660px;
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.lush-footer .footer__top {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
}

.lush-footer .footer__logo {
  margin: 0 0 36px;
}

.lush-footer .footer__logo a {
  display: block;
  min-width: 162px;
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.lush-footer .footer__menus {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.lush-footer .footer__menus ul {
  min-width: 140px;
}

.lush-footer .footer__menus li,
.lush-footer .footer__menus li a {
  color: #e6e6e6;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 1.2px;
  font-weight: 500;
  text-transform: uppercase;
}

.lush-footer .footer__menus li {
  margin-bottom: 4px;
}

.lush-footer .footer__top .footer__menus li:first-child {
  margin-bottom: 10px;
  color: #ffffff;
  font-weight: 700;
}

.lush-footer .footer__bottom {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 28px 32px;
  margin-top: 28px;
  padding-top: 28px;
  position: relative;
}

.lush-footer .footer__bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
}

.lush-footer .footer__icon {
  flex: 0 0 auto;
}

.lush-footer .footer__icon a {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lush-footer .footer__bottom .footer__menus {
  margin: 0;
  padding: 0;
}

.lush-footer .footer__bottom .footer__menus li,
.lush-footer .footer__bottom .footer__menus li a {
  color: #ffffff;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 1.2px;
  font-weight: 500;
  text-transform: uppercase;
}

.lush-footer .footer__bottom .footer__menus li:first-child {
  margin-bottom: 4px;
}

.lush-footer .footer__credits {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  margin-top: 60px;
}

.lush-footer .footer__credits ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.lush-footer .footer__credits li,
.lush-footer .footer__credits li a {
  color: #e6e6e6;
  font-size: 8px;
  line-height: 14px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.lush-footer a:hover {
  color: #ffffff;
}

@media (min-width: 900px) {
  .lush-footer .footer__inner {
    padding-left: 48px;
    padding-right: 48px;
  }

  .lush-footer .footer__logo {
    margin: 0;
  }

  .lush-footer .footer__menus {
    width: calc(50% - 16px);
    gap: 90px;
  }

  .lush-footer .footer__bottom .footer__menus {
    width: calc(50% - 16px);
  }
}

@media (max-width: 899px) {
  .lush-footer .footer__credits {
    margin-top: 40px;
  }
}


/* index.css */
body.home-page {
  --header-progress: 0;
  background:
    linear-gradient(180deg, #130e0b 0%, #18120f 14%, #f7f3ec 14%, #ece4d8 48%, #f3ede5 100%);
}

.home-page .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  opacity: var(--header-progress);
  transform: translateY(calc((1 - var(--header-progress)) * -24px));
  transition: opacity 0.28s ease, transform 0.28s ease;
  pointer-events: none;
}

.home-page.header-visible .site-header {
  pointer-events: auto;
}

.home-main {
  position: relative;
}

.splash-header {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 4;
  transform: translateX(-50%) translateY(calc(var(--header-progress) * -18px));
  opacity: calc(1 - var(--header-progress));
  transition: opacity 0.28s ease, transform 0.28s ease;
  pointer-events: auto;
}

.home-page.hero-nav-hidden .splash-header {
  pointer-events: none;
}

.splash-topbar {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.splash-brand {
  color: #ffffff;
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.splash-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.splash-menu a,
.splash-menu-trigger {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.splash-menu a.active,
.splash-menu a:hover,
.splash-menu-trigger:hover,
.splash-menu-trigger.active {
  color: #ffffff;
}

.splash-menu-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.splash-menu-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(26, 20, 16, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  display: grid;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
  z-index: 45;
}

.splash-menu-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 12px;
}

.splash-menu-dropdown:hover .splash-menu-panel,
.splash-menu-dropdown:focus-within .splash-menu-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.splash-menu-dropdown:hover > .splash-menu-trigger,
.splash-menu-dropdown:focus-within > .splash-menu-trigger {
  color: #ffffff;
}

.splash-menu-dropdown:hover > .splash-menu-trigger .menu-trigger-icon,
.splash-menu-dropdown:focus-within > .splash-menu-trigger .menu-trigger-icon {
  transform: rotate(180deg);
}

.splash-menu-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: rgba(255, 248, 240, 0.88);
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.splash-menu-panel a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.splash-shell {
  position: relative;
  min-height: 100vh;
}

.splash-stage {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #17120e;
}

.splash-media {
  position: absolute;
  inset: 0;
}

.splash-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.splash-slide.is-active {
  opacity: 1;
}

.splash-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.splash-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 10, 8, 0.2) 0%, rgba(14, 10, 8, 0.26) 22%, rgba(14, 10, 8, 0.56) 72%, rgba(14, 10, 8, 0.82) 100%),
    linear-gradient(90deg, rgba(14, 10, 8, 0.68) 0%, rgba(14, 10, 8, 0.22) 46%, rgba(14, 10, 8, 0.12) 100%);
}

.splash-copy {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 280px 0 84px;
  color: #fff8f0;
}

.splash-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  width: 100%;
}

.splash-panel-copy {
  max-width: 620px;
  will-change: opacity, transform;
}

.splash-panel-copy.is-swapping {
  animation: splashPanelSwap 1.2s ease;
}

@keyframes splashPanelSwap {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  45% {
    opacity: 0;
    transform: translateY(16px);
  }

  55% {
    opacity: 0;
    transform: translateY(-16px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.splash-copy .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.splash-copy h1 {
  margin: 18px 0 16px;
  max-width: 9ch;
  font-family: var(--font-sans);
  font-size: clamp(42px, 8vw, 88px);
  line-height: 0.92;
  letter-spacing: 0;
  font-weight: 700;
  text-transform: uppercase;
}

.splash-copy p {
  margin: 0;
  max-width: 48ch;
  color: rgba(255, 248, 240, 0.84);
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.2px;
  font-weight: 400;
}

.splash-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.splash-cta,
.splash-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.splash-cta {
  background: #fff8f0;
  color: #1b1511;
}

.splash-ghost {
  border: 1px solid rgba(255, 248, 240, 0.24);
  color: #fff8f0;
  background: rgba(255, 255, 255, 0.08);
}

.splash-scroll {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 2;
  transform: translateX(-50%);
  color: rgba(255, 248, 240, 0.84);
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.splash-progress {
  width: 1px;
  height: 56px;
  margin: 10px auto 0;
  background: linear-gradient(180deg, rgba(255, 248, 240, 0.82), rgba(255, 248, 240, 0));
}

.featured-wrap {
  position: relative;
  z-index: 3;
  margin-top: -18vh;
  padding: 72px 0 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.7), transparent 28%),
    linear-gradient(180deg, rgba(247, 243, 236, 0.96) 0%, #ece4d8 42%, #f3ede5 100%);
  border-radius: 34px 34px 0 0;
}

.featured-wrap .shell {
  position: relative;
}

.featured-intro {
  display: grid;
  gap: 24px;
  margin-bottom: 22px;
}

.featured-intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

@media (max-width: 980px) {
  .featured-intro {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .splash-topbar {
    min-height: 72px;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 18px;
    flex-direction: column;
  }

  .splash-copy {
    padding-top: 132px;
  }

  .splash-shell {
    height: 114vh;
  }

  .featured-wrap {
    margin-top: -10vh;
    padding-top: 44px;
  }
}

@media (max-width: 560px) {
  .splash-shell {
    height: 110vh;
  }

  .splash-menu {
    gap: 12px;
  }

  .splash-copy h1 {
    max-width: none;
  }

  .splash-scroll {
    bottom: 18px;
  }

  .featured-wrap {
    border-radius: 24px 24px 0 0;
  }
}


/* about.css */
.about-page {
  padding: 30px 0 72px;
}

.about-hero {
  margin-bottom: 28px;
}

.about-hero-media {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 12, 9, 0.16) 0%, rgba(18, 12, 9, 0.28) 26%, rgba(18, 12, 9, 0.74) 100%),
    linear-gradient(90deg, rgba(18, 12, 9, 0.72) 0%, rgba(18, 12, 9, 0.34) 44%, rgba(18, 12, 9, 0.12) 100%);
}

.about-hero-copy {
  position: absolute;
  left: 50%;
  bottom: clamp(24px, 4vw, 44px);
  transform: translateX(-50%);
  z-index: 1;
  max-width: 640px;
  width: min(calc(100% - 48px), 640px);
  color: #fff8f0;
  text-align: center;
}

.about-hero-copy h1 {
  margin: 18px 0 14px;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 0.95;
  letter-spacing: 0.06em;
  font-weight: 700;
  text-transform: uppercase;
}

.about-hero-copy p {
  margin: 0;
  color: rgba(255, 248, 240, 0.88);
  max-width: 46ch;
  margin-left: auto;
  margin-right: auto;
}

.about-layout {
  display: flex;
  justify-content: center;
}

.about-main {
  width: min(100%, 920px);
}

.about-content {
  padding: 42px;
}

.about-content h2 {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 29px;
  letter-spacing: 0.2px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
}

.about-content p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.2px;
  text-align: center;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.about-callout {
  margin: 28px 0;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(32, 24, 18, 0.08);
}

.about-callout span,
.side-label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(138, 93, 59, 0.12);
  color: var(--accent);
  font-size: 12px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.about-callout p {
  margin: 14px 0 0;
}

@media (max-width: 640px) {
  .about-page {
    padding-top: 20px;
  }

  .about-hero-media {
    min-height: 360px;
    border-radius: 24px;
  }

  .about-content,
  .about-side {
    padding: 18px;
  }
}


/* pricing.css */
.pricing-page {
  padding: 85px 0 72px;
}

.pricing-hero {
  margin-bottom: 28px;
}

.pricing-hero-copy {
  max-width: 620px;
}

.pricing-hero-copy-simple {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.pricing-hero-copy h1 {
  margin: 0;
  font-size: clamp(34px, 6vw, 56px);
  line-height: 0.95;
  letter-spacing: -1px;
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-hero-copy p {
    margin: 0;
    max-width: 60ch;
    font-size: 18px;
    padding: 10px 0;
    color: var(--muted);
}

.pricing-section + .pricing-section {
  margin-top: 26px;
}

.pricing-card {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(32, 24, 18, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 36px rgba(39, 26, 17, 0.08);
}

.pricing-intro {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.pricing-intro h2,
.pricing-why h2,
.pricing-cta-block h2 {
  margin: 0;
  font-size: 28px;
  line-height: 34px;
  letter-spacing: -0.8px;
  font-weight: 700;
}

.pricing-intro p,
.pricing-why p,
.pricing-cta-block p {
  margin: 0;
  color: var(--muted);
}

.pricing-table-wrap {
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.pricing-table thead th {
  padding: 0 24px 24px;
  text-align: center;
  font-size: 12px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text);
}

.pricing-table thead th:first-child {
  padding-left: 0;
  text-align: left;
}

.pricing-plan-head {
  position: relative;
  display: grid;
  gap: 10px;
  justify-items: left;
  padding-top: 18px;
}

.pricing-plan-badge {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(138, 93, 59, 0.14);
  color: var(--accent);
  font-size: 10px;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.pricing-plan-name {
  font-size: 14px;
  line-height: 22px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-transform: none;
}

.pricing-plan-price {
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  line-height: 1;
}

.pricing-plan-currency {
  font-size: 15px;
  line-height: 18px;
  letter-spacing: 1px;
  font-weight: 500;
  text-transform: uppercase;
}

.pricing-plan-period {
  font-size: 11px;
  line-height: 18px;
  letter-spacing: 1px;
  font-weight: 500;
  text-transform: uppercase;
}

.pricing-plan-amount {
  font-size: 36px;
  line-height: 34px;
  font-weight: 700;
  letter-spacing: -1px;
}

.pricing-plan-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--text);
  border: 1px solid var(--text);
  color: #fff;
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.pricing-table thead th:nth-child(3),
.pricing-table tbody td:nth-child(3) {
  background: rgba(138, 93, 59, 0.07);
  box-shadow: inset 1px 0 0 rgba(138, 93, 59, 0.18), inset -1px 0 0 rgba(138, 93, 59, 0.18);
}

.pricing-table thead th.pricing-tier-popular {
  box-shadow:
    inset 1px 0 0 rgba(138, 93, 59, 0.18),
    inset -1px 0 0 rgba(138, 93, 59, 0.18),
    inset 0 1px 0 rgba(138, 93, 59, 0.18);
}

.pricing-table tbody th,
.pricing-table tbody td {
  padding: 20px 24px;
  border-top: 1px solid rgba(32, 24, 18, 0.08);
  vertical-align: top;
}

.pricing-table tbody th {
  width: 26%;
  padding-left: 0;
  color: var(--text);
  font-size: 12px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.pricing-feature-label {
  display: inline;
}

.pricing-help {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-left: 8px;
  border: 0;
  border-radius: 50%;
  background: rgba(32, 24, 18, 0.08);
  color: var(--text);
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  cursor: help;
}

.pricing-help-tip {
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  width: 220px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(32, 24, 18, 0.96);
  color: #fff;
  font-size: 11px;
  line-height: 16px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%) translateX(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
  z-index: 4;
}

.pricing-help:hover .pricing-help-tip,
.pricing-help:focus-visible .pricing-help-tip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.pricing-table tbody td {
  color: var(--muted);
}

.pricing-table tbody td strong {
  color: var(--text);
  font-weight: 700;
}

.pricing-cta-row td {
  text-align: center;
  vertical-align: middle;
}

.account-trigger,
.account-submit,
.browse-hero-cta,
.filter-toggle,
.filter-apply,
.splash-cta,
.splash-ghost,
.pricing-plan-cta,
.pricing-cta-button,
.pricing-cta-secondary,
.cta {
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.account-trigger:hover,
.account-trigger:focus-visible,
.account-submit:hover,
.account-submit:focus-visible,
.browse-hero-cta:hover,
.browse-hero-cta:focus-visible,
.filter-toggle:hover,
.filter-toggle:focus-visible,
.filter-apply:hover,
.filter-apply:focus-visible,
.splash-cta:hover,
.splash-cta:focus-visible,
.splash-ghost:hover,
.splash-ghost:focus-visible,
.pricing-plan-cta:hover,
.pricing-plan-cta:focus-visible,
.pricing-cta-button:hover,
.pricing-cta-button:focus-visible,
.pricing-cta-secondary:hover,
.pricing-cta-secondary:focus-visible,
.cta:hover,
.cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(32, 24, 18, 0.12);
}

.pricing-table tbody tr:last-child td:nth-child(3) {
  box-shadow:
    inset 1px 0 0 rgba(138, 93, 59, 0.18),
    inset -1px 0 0 rgba(138, 93, 59, 0.18),
    inset 0 -1px 0 rgba(138, 93, 59, 0.18);
}

.pricing-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.pricing-point {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(32, 24, 18, 0.06);
}

.pricing-point h3 {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 22px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.pricing-point p {
  margin: 0;
  color: var(--muted);
}

.pricing-cta-block {
  display: grid;
  gap: 16px;
  text-align: center;
}

.pricing-cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.pricing-cta-button,
.pricing-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.pricing-cta-button {
  background: var(--text);
  color: #fff;
}

.pricing-cta-secondary {
  border: 1px solid rgba(32, 24, 18, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
}

@media (max-width: 980px) {
  .pricing-why-grid {
    grid-template-columns: 1fr;
  }

  .pricing-help-tip {
    left: 0;
    top: calc(100% + 10px);
    transform: translateY(0);
  }

  .pricing-help:hover .pricing-help-tip,
  .pricing-help:focus-visible .pricing-help-tip {
    transform: translateY(0);
  }
}

@media (max-width: 820px) {
  .pricing-page {
    padding-top: 20px;
  }

  .pricing-card {
    padding: 22px;
  }
}


/* signup.css */
body.signup-template {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.78), transparent 44%),
    linear-gradient(180deg, #f6f2eb 0%, #efe7dc 32%, #f4efe8 100%);
}

.signup-layout {
  width: 100%;
  min-height: 100vh;
}

.signup-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 0;
}

.signup-pagebar {
  position: absolute;
  top: 28px;
  left: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transform: translateX(-50%);
}

.signup-shell {
  display: grid;
  grid-template-columns: minmax(380px, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: stretch;
  height: min(750px, calc(100vh - 72px));
  max-height: 750px;
}

.signup-panel {
  display: grid;
  align-content: start;
  gap: 26px;
  padding: 40px;
  border: 1px solid rgba(32, 24, 18, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 24px 60px rgba(43, 29, 19, 0.08);
  height: 100%;
}

.signup-home-link {
  width: fit-content;
  color: var(--text);
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-decoration: none;
  text-transform: uppercase;
}

.signup-return-link {
  color: var(--text);
  font-size: 12px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-decoration: none;
  text-transform: uppercase;
}

.signup-copy {
  display: grid;
  gap: 14px;
}

.signup-copy h1 {
  margin: 0;
  font-size: clamp(40px, 4.8vw, 40px);
  line-height: 0.94;
  letter-spacing: -2.5px;
  font-weight: 700;
}

.signup-subtitle {
  margin: 0;
  max-width: 34ch;
  color: var(--muted);
  font-size: 15px;
  line-height: 24px;
}

.signup-form {
  display: grid;
  gap: 16px;
}

.signup-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.signup-field {
  display: grid;
  gap: 5px;
}

.signup-field-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.signup-field span {
  color: var(--text);
  font-size: 12px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.signup-field input,
.signup-field select {
  width: 100%;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid #999;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  font: inherit;
  outline: none;
}

.signup-field input::placeholder {
  color: rgba(32, 24, 18, 0.38);
}

.signup-field input:focus {
  border-color: rgba(138, 93, 59, 0.32);
  box-shadow: 0 0 0 4px rgba(138, 93, 59, 0.08);
}

.signup-password-checker {
  display: grid;
  gap: 9px;
  margin-top: -2px;
  padding: 12px 16px 14px;
  border: 1px solid rgba(32, 24, 18, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.56);
}

.signup-password-strength {
  width: 100%;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(32, 24, 18, 0.12);
}

.signup-password-strength-bar {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: #bb6b2f;
  transition: width 0.24s ease, background-color 0.24s ease;
}

.signup-password-rule {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 14px;
}

.signup-password-icon {
  position: relative;
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  transition: transform 0.24s ease;
}

.signup-password-icon::before {
  content: "\00D7";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(32, 24, 18, 0.48);
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
}

.signup-password-rule.is-valid {
  color: #2e6a4d;
}

.signup-password-rule.is-valid .signup-password-icon::before {
  content: "\2713";
  color: #2e6a4d;
}

.signup-password-rule.is-valid .signup-password-icon {
  transform: scale(1.05);
}

.signup-password-match {
  min-height: 18px;
  color: var(--muted);
  font-size: 11px;
  line-height: 18px;
  text-align: right;
  text-transform: none;
  letter-spacing: 0;
}

.signup-password-match.is-valid {
  color: #2e6a4d;
}

.signup-password-match.is-invalid {
  color: #9a4b38;
}

.signup-submit {
  width: 100%;
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  font: inherit;
  font-size: 12px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
}

.signup-agreement {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 18px;
}

.signup-agreement input {
  margin-top: 2px;
  accent-color: var(--text);
}

.signup-agreement span {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.signup-agreement.is-invalid {
  color: #9a4b38;
}

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

.signup-social {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(32, 24, 18, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--text);
  text-decoration: none;
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.signup-social-icon {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--text);
  color: #fff;
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
}

.signup-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 20px;
}

.signup-meta p {
  margin: 0;
}

.signup-meta a {
  color: var(--text);
  text-decoration: none;
}

.signup-visual-panel {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-radius: 30px;
  background: #1b1613;
  box-shadow: 0 28px 60px rgba(43, 29, 19, 0.12);
  height: 100%;
}

.signup-visual-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.signup-visual-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(19, 15, 12, 0.14) 0%, rgba(19, 15, 12, 0.4) 72%, rgba(19, 15, 12, 0.7) 100%);
}

.signup-visual-copy {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 36px;
  z-index: 2;
  display: grid;
  gap: 14px;
  max-width: 430px;
  color: #fff;
}

.signup-visual-label,
.signup-visual-card-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 11px;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.signup-visual-copy h2 {
  margin: 0;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 0.98;
  letter-spacing: -1.2px;
  font-weight: 700;
}

.signup-visual-copy p {
  margin: 0;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.82);
}

.signup-visual-card {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  box-shadow: 0 18px 36px rgba(24, 19, 13, 0.16);
}

.signup-visual-card strong {
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
}

@media (max-width: 1080px) {
  .signup-hero {
    min-height: auto;
    padding: 34px 0 64px;
  }

  .signup-pagebar {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin-bottom: 24px;
  }

  .signup-shell {
    grid-template-columns: 1fr;
    height: auto;
    max-height: none;
  }

  .signup-visual-panel {
    min-height: 540px;
    order: -1;
    height: auto;
  }
}

@media (max-width: 720px) {
  .signup-hero {
    padding: 24px 0 48px;
  }

  .signup-pagebar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 18px;
  }

  .signup-shell {
    gap: 18px;
  }

  .signup-panel {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .signup-copy h1 {
    font-size: 40px;
  }

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

  .signup-socials {
    grid-template-columns: 1fr;
  }

  .signup-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .signup-visual-panel {
    min-height: 420px;
    border-radius: 24px;
  }

  .signup-visual-copy {
    left: 22px;
    right: 22px;
    bottom: 24px;
  }

  .signup-visual-card-top,
  .signup-visual-card-bottom {
    top: 18px;
  }

  .signup-visual-card-top {
    left: 18px;
    right: 96px;
    max-width: none;
  }

  .signup-visual-card-bottom {
    display: none;
  }
}


/* profile.css (scoped, loaded last) */
body.profile-template{
  --font-sans: "Poppins", sans-serif;
  --bg: #f3eee6;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --text: #1f1712;
  --muted: #76695f;
  --line: rgba(31, 23, 18, 0.1);
  --accent: #8f6547;
  --accent-soft: #ede0d2;
  --carbon: #25201c;
  --carbon-300: #3a332d;
  --shadow: 0 28px 54px rgba(41, 29, 19, 0.1);
  --radius: 24px;
  --max: 1380px;
}

body.profile-template *{
  box-sizing: border-box;
}

body.profile-template{
  margin: 0;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.2px;
  font-weight: 400;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.78), transparent 88%),
    linear-gradient(180deg, #f8f4ee 0%, #efe7dc 0%, #f6f1e9 0%);
}

body.profile-template img{
  display: block;
  max-width: 100%;
}

body.profile-template .shell{
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

body.profile-template .site-header{
  position: sticky;
  top: 0;
  z-index: 10;
}

body.profile-template .site-header-main{
  background: var(--carbon);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.profile-template .site-header-sub{
  background: var(--carbon-300);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.profile-template .topbar{
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

body.profile-template .subbar{
  min-height: 38px;
  display: flex;
  align-items: center;
}

body.profile-template .brand{
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f8f3ea;
}

body.profile-template .menu{
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

body.profile-template .profile-page{
  padding: 28px 0 120px;
}

body.profile-template .layout{
  display: grid;
  grid-template-columns: minmax(0, 1.98fr) minmax(300px, 1fr);
  gap: 24px;
  align-items: start;
}

body.profile-template .main-column, body.profile-template .side-column{
  min-width: 0;
}

body.profile-template .panel{
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

body.profile-template .hero-gallery{
  margin-bottom: 24px;
  background: none;
}

body.profile-template .gallery-grid{
  display: grid;
  gap: 16px;
}

body.profile-template .featured-image{
  overflow: hidden;
  border-radius: 22px;
  min-height: 320px;
  background: #d7cab7;
}

body.profile-template .featured-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.profile-template .thumb{
  overflow: hidden;
  border: 1px solid rgba(31, 23, 18, 0.08);
  border-radius: 18px;
  background: #ddd1c1;
  cursor: pointer;
  padding: 0;
}

body.profile-template .thumb img{
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
}

body.profile-template .thumb.is-active{
  outline: 2px solid rgba(143, 101, 71, 0.34);
  outline-offset: 2px;
}

body.profile-template .content-panel{
  padding: 50px;
}

body.profile-template .vip-tag{
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--carbon);
  color: var(--accent);
  font-size: 10px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

body.profile-template .role-tag{
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 10px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

body.profile-template .title-row{
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin: 18px 0 10px;
}

body.profile-template .title-row h1{
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 50px;
  letter-spacing: -1px;
  font-weight: 700;
  text-transform: uppercase;
}

body.profile-template .subhead{
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.2px;
  font-weight: 400;
}

body.profile-template .stats{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 28px;
}

body.profile-template .stat{
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(31, 23, 18, 0.06);
}

body.profile-template .stat .label{
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

body.profile-template .stat .value{
  display: block;
  font-size: 14px;
  line-height: 22px;
  font-weight: 700;
}

body.profile-template .copy-grid{
  display: grid;
  gap: 24px;
}

body.profile-template .copy-grid h2, body.profile-template .side-card h2{
  margin: 0 0 12px;
  font-family: var(--font-sans);
  font-size: 20px;
  line-height: 29px;
  letter-spacing: 0.2px;
  font-weight: 700;
  text-transform: uppercase;
}

body.profile-template .copy-grid p{
  margin: 0 0 14px;
  color: var(--text);
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.2px;
}

body.profile-template .profile-tags-block{
  margin-top: 28px;
}

body.profile-template .profile-interview{
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #888;
}

body.profile-template .profile-rates{
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #888;
}

body.profile-template .rates-grid{
  display: grid;
  gap: 14px;
}

body.profile-template .rate-card{
  padding: 18px 40px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(31, 23, 18, 0.08);
}

body.profile-template .rate-label{
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(143, 101, 71, 0.12);
  color: var(--accent);
  font-size: 10px;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

body.profile-template .rate-row{
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(31, 23, 18, 0.08);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

body.profile-template .rate-name{
  color: var(--text);
  font-size: 14px;
  line-height: 22px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

body.profile-template .rate-price{
  display: inline-flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 4px;
  margin-left: auto;
  text-align: right;
  white-space: nowrap;
}

body.profile-template .rate-currency{
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
}

body.profile-template .rate-amount{
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

body.profile-template .rate-note{
  margin-top: 8px;
  font-style: italic;
}

body.profile-template .rate-title{
  display: none;
}

body.profile-template .rate-desc{
  display: none;
}

body.profile-template .rate-card p{
  margin: 0;
}

body.profile-template .profile-interview h2{
  margin-bottom: 18px;
}

body.profile-template .interview-item{
  padding: 18px 0;
  border-top: 1px solid rgba(31, 23, 18, 0.08);
}

body.profile-template .interview-item:first-of-type{
  padding-top: 0;
  border-top: 0;
}

body.profile-template .interview-item h3{
  margin: 0 0 8px;
  color: var(--text);
  font-size: 12px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

body.profile-template .interview-item p{
  margin: 0;
}

body.profile-template .profile-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.profile-template .tag-pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 5px 12px;
  border-radius: 6px;
  background: #f6f3ef;
  color: var(--text);
  font-size: 13px;
  line-height: 18px;
  font-weight: 500;
  letter-spacing: -0.5px;
}

body.profile-template .bullet-list{
  margin: 0;
  padding: 0;
  list-style: none;
}

body.profile-template .bullet-list li{
  padding: 10px 0;
  border-bottom: 1px solid rgba(31, 23, 18, 0.08);
  color: var(--muted);
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.2px;
}

body.profile-template .bullet-list li:last-child{
  border-bottom: 0;
}

body.profile-template .side-stack{
  display: grid;
  gap: 20px;
  position: sticky;
  top: 102px;
}

body.profile-template .side-card{
  padding: 40px;
}

body.profile-template .summary-card .tag{
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(143, 101, 71, 0.12);
  color: var(--accent);
  font-size: 12px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

body.profile-template .summary-card h2{
  margin-top: 16px;
}

body.profile-template .summary-card p{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.2px;
}

body.profile-template .availability-card .subhead{
  margin-bottom: 18px;
}

body.profile-template .availability-list{
  display: grid;
  gap: 14px;
}

body.profile-template .availability-item{
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(31, 23, 18, 0.08);
}

body.profile-template .availability-date{
  min-width: fit-content;
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(143, 101, 71, 0.14);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  flex: 0 0 auto;
}

body.profile-template .availability-stamp{
  display: flex;
  min-width: 34px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

body.profile-template .availability-date .month{
  font-size: 11px;
  line-height: 14px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent);
}

body.profile-template .availability-stamp strong{
  font-size: 18px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--text);
}

body.profile-template .availability-separator{
  font-size: 12px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(31, 23, 18, 0.48);
}

body.profile-template .availability-copy{
  min-width: 0;
}

body.profile-template .availability-copy h3{
  margin: 0 0 4px;
  color: var(--text);
  font-size: 14px;
  line-height: 22px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

body.profile-template .availability-copy p{
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

body.profile-template .detail-list{
  display: grid;
  gap: 12px;
  margin: 0;
}

body.profile-template .detail-row{
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(31, 23, 18, 0.08);
}

body.profile-template .detail-row:last-child{
  padding-bottom: 0;
  border-bottom: 0;
}

body.profile-template .detail-row dt{
  color: var(--muted);
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

body.profile-template .detail-row dd{
  margin: 0;
  text-align: right;
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
}

body.profile-template .cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 10px;
  min-height: 50px;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  font-size: 12px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

body.profile-template .secondary-cta{
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(31, 23, 18, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font-size: 12px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

body.profile-template .profile-actionbar{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 35;
  padding: 12px 16px 16px;
  background: rgba(255, 255, 255, 0.94);
  border-top: 1px solid rgba(31, 23, 18, 0.08);
  box-shadow: 0 -12px 28px rgba(31, 23, 18, 0.08);
  transform: translateY(calc(100% + 16px));
  opacity: 0;
  pointer-events: none;
  transition: transform 0.28s ease, opacity 0.28s ease;
  backdrop-filter: blur(14px);
}

body.profile-template .profile-actionbar.is-visible{
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

body.profile-template .profile-actionbar-inner{
  width: min(calc(100% - 16px), 960px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

body.profile-template .profile-actionbar-meta{
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

body.profile-template .profile-actionbar-avatar{
  width: 52px;
  height: 52px;
  min-width: 52px;
  overflow: hidden;
  border-radius: 50%;
  background: rgba(31, 23, 18, 0.08);
}

body.profile-template .profile-actionbar-avatar img{
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

body.profile-template .profile-actionbar-copy{
  min-width: 0;
}

body.profile-template .profile-actionbar-copy strong{
  display: block;
  margin-bottom: 2px;
  color: var(--text);
  font-size: 16px;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

body.profile-template .profile-actionbar-stats{
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  color: var(--muted);
  font-size: 11px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

body.profile-template .profile-actionbar-stats span{
  display: inline-flex;
  align-items: center;
}

body.profile-template .profile-actionbar-stats span:not(:last-child)::after{
  content: "";
  width: 4px;
  height: 4px;
  margin-left: 10px;
  border-radius: 999px;
  background: rgba(31, 23, 18, 0.24);
}

body.profile-template .profile-actionbar-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--text);
  color: #ffffff;
  font-size: 12px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  flex: 0 0 auto;
}

body.profile-template .site-footer{
  border-top: 1px solid var(--line);
  padding: 24px 0 40px;
  color: var(--muted);
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.2px;
}

@media (max-width: 1120px) {
  body.profile-template .layout, body.profile-template .copy-grid{
    grid-template-columns: 1fr;
  }

  body.profile-template .side-stack{
    position: static;
  }
}

@media (min-width: 768px) {
  body.profile-template .gallery-grid{
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    height: 500px;
  }

  body.profile-template .featured-image{
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
    min-height: 0;
    height: 100%;
  }

  body.profile-template .thumb{
    height: 100%;
  }
}

@media (min-width: 1200px) {
  body.profile-template .gallery-grid{
    height: 600px;
  }
}

@media (max-width: 760px) {
  body.profile-template .topbar, body.profile-template .title-row{
    flex-direction: column;
    align-items: flex-start;
  }

  body.profile-template .menu{
    justify-content: flex-start;
  }

  body.profile-template .subbar{
    min-height: 34px;
  }

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

  body.profile-template .profile-actionbar-inner{
    align-items: stretch;
    flex-direction: column;
  }

  body.profile-template .profile-actionbar-meta{
    width: 100%;
  }

  body.profile-template .profile-actionbar-cta{
    width: 100%;
  }
}

@media (max-width: 520px) {
  body.profile-template .shell{
    width: min(calc(100% - 20px), var(--max));
  }

  body.profile-template .profile-page{
    padding-top: 18px;
    padding-bottom: 128px;
  }

  body.profile-template .hero-gallery, body.profile-template .content-panel, body.profile-template .side-card{
    padding: 16px;
  }

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

  body.profile-template .profile-actionbar{
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
  }
}


