:root {
  --ink: #252321;
  --muted: #6f6a64;
  --paper: #faf8f4;
  --soft: #eee9e1;
  --line: rgba(37, 35, 33, 0.15);
  --accent: #b28a4b;
  --dark: #1f1f1f;
  --olive: #8a8175;
  --gold: #b28a4b;
  --white: #ffffff;
  --heading-font: "Manrope", "Avenir Next", Arial, sans-serif;
  --body-font: "Manrope", "Avenir Next", Arial, sans-serif;
  --corner-radius: 6px;
  --button-radius: 6px;
  --shadow: 0 18px 44px rgba(37, 35, 33, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body-font);
  font-size: 0.98rem;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.topbar {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(31, 31, 31, 0.96);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: var(--heading-font);
  font-size: clamp(1.05rem, 2vw, 1.34rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.1;
  text-decoration: none;
  text-transform: none;
}

.brand::before {
  content: "";
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  background: url("assets/bright-logo-mark.png") center / contain no-repeat;
  filter: brightness(0) invert(1);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 28px);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

nav a {
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  text-decoration: none;
}

nav a:hover {
  border-color: var(--accent);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: clamp(660px, 82vh, 880px);
  display: grid;
  grid-template-columns: minmax(0, 680px);
  gap: clamp(34px, 5vw, 78px);
  align-items: center;
  padding: clamp(142px, 14vw, 174px) clamp(22px, 6vw, 82px) clamp(62px, 8vw, 100px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--dark);
  overflow: hidden;
}

.hero-no-image {
  grid-template-columns: minmax(0, 850px);
  justify-content: center;
  min-height: clamp(560px, 70vh, 760px);
  text-align: center;
}

.hero-no-image .hero-copy {
  max-width: 850px;
  margin-inline: auto;
}

.hero-no-image h1,
.hero-no-image .hero-copy > p:not(.kicker):not(.service-area) {
  margin-left: auto;
  margin-right: auto;
}

.hero-no-image .actions,
.hero-no-image .service-area {
  justify-content: center;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: rgba(17, 15, 13, 0.28);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 560px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.32);
}

.hero-copy::before {
  display: none;
  content: none;
}

.kicker,
.price {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  color: var(--ink);
  font-family: var(--heading-font);
  letter-spacing: 0;
  line-height: 1.12;
}

h1 {
  max-width: 560px;
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 4vw, 3.75rem);
  font-weight: 600;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.85rem, 2.8vw, 2.65rem);
  font-weight: 600;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 600;
}

.hero-copy > p:not(.kicker):not(.service-area) {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
}

.hero h1 {
  color: var(--white);
}

.hero .kicker {
  color: #d7bd8c;
  letter-spacing: 0;
}

.hero-highlights {
  display: none;
}

.service-area {
  margin: 18px 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 400;
}

.hero-visual {
  position: absolute;
  z-index: 0;
  inset: 0;
  margin: 0;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  border: 0;
  object-fit: cover;
  object-position: 64% center;
  box-shadow: none;
}

.hero .primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.hero .secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.48);
}

.actions,
.reserve-panel,
footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button,
button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--button-radius);
  padding: 13px 24px;
  font: inherit;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
button:hover {
  transform: translateY(-1px);
}

.primary,
button {
  background: var(--dark);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(25, 24, 23, 0.16);
}

.secondary,
.outline {
  min-height: auto;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 0 0 3px;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.secondary:hover,
.outline:hover {
  border-color: var(--accent);
  transform: none;
}

section {
  position: relative;
  padding: clamp(68px, 8vw, 108px) clamp(22px, 6vw, 82px);
}

.intro,
.reserve,
.faq,
.inquire,
.text-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.intro,
.process,
.inquire {
  background: var(--white);
}

.text-section,
.services,
.faq {
  background: var(--soft);
}

.copy-panel {
  border-left: 1px solid var(--line);
  padding-left: clamp(20px, 3vw, 32px);
}

.copy-panel p {
  color: var(--muted);
}

.copy-panel p:last-child {
  margin-bottom: 0;
}

.panel-note {
  display: inline-flex;
  margin-top: 16px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: none;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head::after {
  content: "";
  display: block;
  width: 54px;
  height: 1px;
  margin-top: 16px;
  background: var(--line);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(36px, 5vw, 64px) clamp(30px, 5vw, 70px);
}

.card {
  display: block;
  border: 0;
  border-top: 1px solid var(--line);
  padding-top: clamp(16px, 2vw, 22px);
  background: transparent;
}

.card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  object-position: center;
  filter: none;
}

.card div {
  padding: clamp(18px, 2.5vw, 24px) 0 clamp(8px, 1vw, 12px);
}

.card p {
  color: var(--muted);
}

.card-detail {
  display: grid;
  gap: 4px;
  margin-top: 12px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.card-detail strong {
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.card-detail span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.card .price {
  color: var(--gold);
  font-size: 0.86rem;
}

.card-button {
  min-height: 42px;
  margin-top: 18px;
  border: 1px solid var(--ink);
  border-radius: 3px;
  padding: 10px 16px;
  background: transparent;
  color: var(--ink);
  font-size: 0.84rem;
  box-shadow: none;
}

.card-button:hover {
  background: var(--ink);
  color: var(--white);
}

.portfolio {
  background: var(--paper);
}

.portfolio-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.65fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
  margin-bottom: 34px;
}

.portfolio-heading > p {
  max-width: 560px;
  margin-bottom: 20px;
  color: var(--muted);
}

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

.portfolio-grid figure {
  margin: 0;
}

.portfolio-grid figure:first-child {
  grid-column: span 2;
}

.portfolio-grid figure:nth-child(5) {
  grid-column: span 2;
}

.portfolio-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.portfolio-grid figure:first-child img,
.portfolio-grid figure:nth-child(5) img {
  aspect-ratio: 2 / 1;
}

.portfolio-grid figcaption {
  padding: 14px 2px 0;
}

.portfolio-grid figcaption p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hotel-partner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(36px, 6vw, 90px);
  background: var(--dark);
  color: var(--white);
}

.hotel-partner h2,
.hotel-partner h3 {
  color: var(--white);
}

.partner-intro > p:not(.kicker),
.partner-points p {
  color: rgba(255, 255, 255, 0.74);
}

.partner-button {
  margin-top: 12px;
  border-radius: 3px;
  background: var(--gold);
  color: var(--dark);
}

.partner-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.partner-points article {
  min-height: 180px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding: 26px;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--ink);
  font-weight: 500;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.catalog-note {
  margin-top: 28px;
}

.catalog {
  background: var(--paper);
}

.catalog-stack {
  display: grid;
  gap: clamp(34px, 5vw, 64px);
}

.catalog-category {
  padding: 0;
}

.catalog-category + .catalog-category {
  padding-top: clamp(34px, 5vw, 64px);
  border-top: 1px solid var(--line);
}

.reserve {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.reserve h2,
.reserve p {
  color: var(--ink);
}

.reserve .kicker {
  color: var(--gold);
}

.reserve-panel {
  align-content: start;
  border-left: 1px solid var(--line);
  padding: 0 0 0 clamp(20px, 3vw, 32px);
  background: transparent;
}

.reserve-panel p {
  width: 100%;
  margin: 4px 0 0;
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.steps article {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.steps span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-family: var(--body-font);
  font-size: 1.35rem;
  font-weight: 700;
}

.steps p {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

summary {
  color: var(--ink);
  font-weight: 500;
  cursor: pointer;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.inquire a {
  color: var(--ink);
  font-weight: 500;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  border: 0;
  border-top: 1px solid var(--line);
  padding: clamp(20px, 3vw, 32px) 0 0;
  background: var(--paper);
}

.form-wide {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 500;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  min-height: 52px;
  padding: 13px 14px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

input:hover,
textarea:hover,
select:hover,
.field-control:hover {
  border-color: rgba(37, 35, 33, 0.42);
}

input:focus,
textarea:focus,
select:focus,
.field-control:focus-visible {
  outline: 3px solid rgba(178, 138, 75, 0.18);
  border-color: var(--accent);
  box-shadow: none;
}

input::placeholder,
textarea::placeholder {
  color: rgba(37, 35, 33, 0.42);
}

option {
  background: var(--white);
  color: var(--ink);
}

.native-select {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  min-height: 0 !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0 !important;
  opacity: 0;
  pointer-events: none;
}

.select-shell,
.date-picker {
  position: relative;
  display: block;
  width: 100%;
}

.field-control {
  width: 100%;
  min-height: 52px;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  background: var(--white);
  color: var(--ink);
  box-shadow: none;
  font: inherit;
  font-weight: 400;
  line-height: 1.35;
  text-align: left;
  transform: none;
}

.field-control:hover,
.field-control:focus-visible {
  background: var(--white);
  color: var(--ink);
  transform: none;
}

.field-control.is-placeholder {
  color: rgba(37, 35, 33, 0.46);
}

.select-chevron {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-top: -4px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.select-trigger[aria-expanded="true"] .select-chevron {
  margin-top: 4px;
  transform: rotate(225deg);
}

.select-menu,
.date-popover {
  position: absolute;
  z-index: 35;
  top: calc(100% + 8px);
  left: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 48px rgba(37, 35, 33, 0.16);
}

.select-menu[hidden],
.date-popover[hidden] {
  display: none;
}

.select-menu {
  right: 0;
  max-height: 300px;
  overflow-y: auto;
  padding: 6px;
  overscroll-behavior: contain;
}

.select-option {
  width: 100%;
  min-height: 42px;
  justify-content: flex-start;
  border: 0;
  border-radius: 5px;
  padding: 10px 12px;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
  font: inherit;
  font-weight: 400;
  line-height: 1.35;
  text-align: left;
  transform: none;
}

.select-option:hover,
.select-option:focus-visible {
  outline: 0;
  background: var(--soft);
  color: var(--ink);
  transform: none;
}

.select-option.is-selected {
  background: rgba(178, 138, 75, 0.16);
  font-weight: 600;
}

.select-placeholder-option {
  color: var(--muted);
}

.calendar-symbol {
  position: relative;
  flex: 0 0 auto;
  width: 17px;
  height: 16px;
  border: 1.5px solid currentColor;
  border-radius: 3px;
}

.calendar-symbol::before {
  content: "";
  position: absolute;
  top: 3px;
  right: 0;
  left: 0;
  border-top: 1.5px solid currentColor;
}

.calendar-symbol::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 3px;
  width: 7px;
  height: 4px;
  border-right: 1.5px solid currentColor;
  border-left: 1.5px solid currentColor;
}

.date-popover {
  width: min(340px, calc(100vw - 44px));
  padding: 16px;
}

.calendar-toolbar {
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  align-items: center;
  gap: 8px;
}

.calendar-toolbar strong {
  text-align: center;
}

.calendar-nav {
  width: 36px;
  min-height: 36px;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  padding: 0 0 3px;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
  font-size: 1.65rem;
  line-height: 1;
  transform: none;
}

.calendar-nav:hover,
.calendar-nav:focus-visible {
  outline: 0;
  background: var(--soft);
  color: var(--ink);
  transform: none;
}

.calendar-nav:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

.calendar-weekdays,
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
}

.calendar-weekdays {
  margin: 14px 0 6px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 600;
  text-align: center;
  text-transform: none;
}

.calendar-day,
.calendar-spacer {
  width: 100%;
  min-height: 38px;
}

.calendar-day {
  justify-content: center;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
  font: inherit;
  font-size: 0.86rem;
  transform: none;
}

.calendar-day:hover:not(:disabled),
.calendar-day:focus-visible {
  outline: 0;
  background: var(--soft);
  color: var(--ink);
  transform: none;
}

.calendar-day.is-today:not(.is-selected) {
  border: 1px solid var(--accent);
}

.calendar-day.is-selected,
.calendar-day.is-selected:hover {
  background: var(--ink);
  color: var(--white);
}

.calendar-day:disabled {
  color: rgba(37, 35, 33, 0.24);
  cursor: not-allowed;
}

.calendar-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.calendar-clear {
  width: auto;
  min-height: 32px;
  border: 0;
  border-radius: 0;
  padding: 5px 0 3px;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  transform: none;
}

.calendar-clear:hover,
.calendar-clear:focus-visible {
  outline: 0;
  border-bottom: 1px solid var(--accent);
  background: transparent;
  color: var(--ink);
  transform: none;
}

.check {
  grid-template-columns: 20px 1fr;
  align-items: start;
  color: var(--muted);
  font-weight: 600;
}

.check input {
  width: auto;
  margin-top: 5px;
}

footer {
  justify-content: center;
  padding: 30px 22px;
  border-top: 1px solid var(--line);
  background: var(--dark);
  color: rgba(255, 255, 255, 0.9);
}

footer a {
  font-weight: 500;
}

.help {
  position: fixed;
  z-index: 25;
  right: 22px;
  bottom: 20px;
  width: auto;
  min-height: 46px;
  padding: 11px 18px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.help[hidden] {
  display: none !important;
}

.popup[hidden] {
  display: none;
}

.popup {
  position: fixed;
  z-index: 40;
  inset: 0;
}

.popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 31, 31, 0.5);
}

.popup-card {
  position: absolute;
  right: clamp(16px, 4vw, 46px);
  bottom: 88px;
  width: min(410px, calc(100vw - 32px));
  border: 1px solid var(--line);
  border-radius: var(--corner-radius);
  padding: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.popup-card h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  min-height: 36px;
  width: 36px;
  padding: 0;
  border-radius: 50%;
}

@media (max-width: 1150px) {
  .card {
    grid-template-columns: 1fr;
  }

  .card div {
    padding-left: 0;
  }

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

@media (max-width: 900px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px 18px;
    font-size: 0.82rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 760px;
    padding-top: 166px;
  }

  .hero-visual {
    order: initial;
  }

  .hero-visual img {
    height: 100%;
    object-position: 70% center;
  }

  .copy-panel,
  .reserve-panel {
    border-left: 0;
    padding-left: 0;
  }

  .intro,
  .reserve,
  .faq,
  .inquire,
  .text-section,
  .card-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .portfolio-heading,
  .portfolio-grid,
  .hotel-partner,
  .partner-points,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .portfolio-grid figure:first-child,
  .portfolio-grid figure:nth-child(5) {
    grid-column: auto;
  }

  .portfolio-grid figure:first-child img,
  .portfolio-grid figure:nth-child(5) img {
    aspect-ratio: 4 / 3;
  }

  .partner-points article {
    min-height: auto;
  }

  .form-wide {
    grid-column: auto;
  }

  .date-popover {
    position: fixed;
    top: auto;
    right: 16px;
    bottom: 16px;
    left: 16px;
    width: auto;
    max-height: calc(100vh - 32px);
    overflow-y: auto;
  }

  .select-menu {
    max-height: min(300px, 45vh);
  }

  h1 {
    font-size: clamp(2.25rem, 10vw, 2.9rem);
  }

  h2 {
    font-size: clamp(1.8rem, 8vw, 2.3rem);
  }

  .hero-copy > p:not(.kicker):not(.service-area) {
    font-size: 1.02rem;
  }

  .actions .button,
  .reserve-panel .button,
  .inquiry-form button {
    width: 100%;
  }

  .help,
  .close {
    width: auto;
  }
}
