:root {
  --cream: #fbf4ea;
  --paper: #fffaf3;
  --paper-soft: #f7ecdc;
  --sand: #ead9c5;
  --line: #decab1;
  --gold: #b8874c;
  --gold-dark: #8f6534;
  --cocoa: #3a2116;
  --taupe: #7d6657;
  --muted: #806b5c;
  --white: #fff;
  --shadow: 0 18px 45px rgba(73, 48, 30, 0.13);
  --soft-shadow: 0 10px 28px rgba(73, 48, 30, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--cocoa);
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 255, 255, 0.9), transparent 34rem),
    linear-gradient(135deg, #fffaf3 0%, #fbf4ea 50%, #f4e5d3 100%);
  font-family: "Lato", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

img,
video {
  max-width: 100%;
}

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

a:hover {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1040;
  background: rgba(255, 250, 243, 0.92);
  border-bottom: 1px solid rgba(222, 202, 177, 0.82);
  backdrop-filter: blur(16px);
}

.navbar {
  min-height: 72px;
  padding: 0;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-logo {
  width: 52px;
  height: auto;
  display: block;
  filter: invert(48%) sepia(35%) saturate(811%) hue-rotate(353deg) brightness(91%) contrast(88%);
}

.brand-name {
  display: grid;
  color: var(--cocoa);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.18rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand-name small {
  margin-top: 0.2rem;
  color: var(--gold-dark);
  font-size: 0.46rem;
  font-weight: 700;
  letter-spacing: 0.18rem;
}

.navbar-nav {
  gap: clamp(0.7rem, 1.4vw, 1.35rem);
}

.nav-link {
  position: relative;
  color: var(--cocoa);
  padding: 0.35rem 0 !important;
  font-family: "Lato", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.navbar .nav-link.active,
.navbar .nav-link.show {
  color: var(--gold-dark);
}

.nav-link::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

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

.navbar-toggler {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--cocoa);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.18rem rgba(184, 135, 76, 0.2);
}

.navbar-toggler-icon {
  width: 1.35rem;
  height: 1.35rem;
  margin: 0;
  background-size: 1.35rem 1.35rem;
  background-position: center;
}

.btn-tim {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 42px;
  padding: 0.75rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(143, 101, 52, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-tim:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(143, 101, 52, 0.26);
}

.btn-tim-light {
  color: var(--gold-dark);
  background: #f3dfc4;
  box-shadow: none;
}

.btn-tim-light:hover {
  color: var(--gold-dark);
  background: #ead1af;
}

.btn-icon {
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--cocoa);
  background: rgba(255, 255, 255, 0.64);
  display: inline-grid;
  place-items: center;
}

.btn-admin {
  color: var(--gold-dark);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: none;
}

.btn-admin:hover {
  color: var(--gold-dark);
  background: #f3dfc4;
}

.hero-section {
  padding: clamp(1rem, 2vw, 1.5rem) 0 0;
}

.hero-panel {
  position: relative;
  min-height: min(72vh, 680px);
  overflow: hidden;
  border: 1px solid rgba(222, 202, 177, 0.92);
  border-radius: 8px;
  background: var(--cocoa);
  box-shadow: var(--shadow);
}

.hero-panel video,
.hero-panel > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(38, 22, 14, 0.76) 0%, rgba(38, 22, 14, 0.48) 43%, rgba(38, 22, 14, 0.12) 100%),
    linear-gradient(0deg, rgba(28, 16, 10, 0.3), transparent 40%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding: clamp(4rem, 10vw, 9rem) clamp(1.4rem, 5vw, 4.2rem);
  color: #fff;
}

.hero-copy h1 {
  margin: 0 0 1rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.45rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1.02;
}

.hero-copy p {
  max-width: 430px;
  margin-bottom: 1.5rem;
  font-size: clamp(1rem, 1.4vw, 1.22rem);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.15rem 1.2rem;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  background: rgba(255, 250, 243, 0.88);
  box-shadow: var(--soft-shadow);
}

.trust-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.84rem;
}

.trust-item i {
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 1.45rem;
}

.trust-item strong {
  display: block;
  color: var(--cocoa);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
}

.section-block {
  padding: clamp(3rem, 6vw, 5.5rem) 0;
}

.section-title {
  max-width: 720px;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-title .eyebrow,
.eyebrow {
  margin-bottom: 0.45rem;
  color: var(--gold-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22rem;
  text-transform: uppercase;
}

.section-title h2,
.page-title h1 {
  margin: 0;
  color: var(--cocoa);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3.8vw, 3.8rem);
  font-weight: 400;
  line-height: 1.06;
}

.section-title p,
.page-title p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

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

.universe-card,
.treatment-card,
.profile-card,
.form-card,
.info-card,
.reserve-card {
  border: 1px solid rgba(222, 202, 177, 0.9);
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.82);
  box-shadow: var(--soft-shadow);
}

.universe-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  display: flex;
  align-items: end;
  padding: 1.35rem;
  color: #fff;
}

.universe-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.universe-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 30%, rgba(42, 23, 13, 0.82) 100%);
}

.universe-card:hover img {
  transform: scale(1.04);
}

.universe-card .content {
  position: relative;
  z-index: 1;
}

.universe-card h3,
.treatment-card h3,
.profile-card h2,
.form-card h1,
.info-card h2,
.reserve-card h1 {
  margin: 0 0 0.45rem;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  line-height: 1.12;
}

.universe-card h3 {
  font-size: clamp(1.65rem, 2.6vw, 2.35rem);
}

.universe-card p {
  margin-bottom: 0.9rem;
}

.discover-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #fff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.baseline-cta {
  margin-top: 1.25rem;
  padding: 1.4rem 1.8rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.78);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.15rem, 2vw, 1.8rem);
}

.page-hero {
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(1rem, 3vw, 2rem);
}

.page-title {
  max-width: 760px;
}

.page-title h1 {
  font-size: clamp(2.4rem, 5vw, 5rem);
}

.page-hero-card {
  overflow: hidden;
  width: min(100%, 520px);
  height: 330px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--soft-shadow);
}

.page-hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-visual {
  display: flex;
  justify-content: flex-end;
}

.treatment-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.treatment-card img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.treatment-card .body {
  padding: 1rem;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.treatment-card h3 {
  color: var(--cocoa);
  font-size: 1.45rem;
}

.treatment-card p {
  color: var(--muted);
  font-size: 0.94rem;
}

.meta-row {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: auto;
  padding-top: 1rem;
  color: var(--cocoa);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
}

.profile-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.4rem, 3vw, 2rem);
}

.profile-card::after {
  position: absolute;
  right: -38px;
  bottom: -56px;
  width: 190px;
  height: 190px;
  content: "";
  border: 1px solid rgba(184, 135, 76, 0.22);
  border-radius: 50%;
}

.profile-card img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: 8px;
}

.profile-card h1 {
  margin-bottom: 1rem;
  font-family: "Playfair Display", Georgia, serif;
}

.signature {
  color: var(--gold-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.8rem;
  font-style: italic;
}

.icon-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.3rem 0;
  padding: 0;
  list-style: none;
}

.icon-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--muted);
}

.icon-list i {
  color: var(--gold);
}

.reserve-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 1.25rem;
}

.form-card,
.info-card,
.reserve-card {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
  margin: 1.5rem 0;
}

.step {
  display: grid;
  justify-items: center;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.75rem;
  text-align: center;
}

.step span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--gold);
  font-weight: 700;
}

.form-label {
  color: var(--cocoa);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.form-control,
.form-select {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--cocoa);
  background-color: rgba(255, 255, 255, 0.65);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.18rem rgba(184, 135, 76, 0.18);
}

.summary-box {
  height: 100%;
  min-height: 260px;
  padding: 1.25rem;
  border-radius: 8px;
  background: var(--paper-soft);
}

.contact-detail {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(222, 202, 177, 0.62);
  color: var(--muted);
}

.contact-detail i {
  color: var(--gold);
  font-size: 1.2rem;
}

.map-iframe {
  width: 100%;
  height: 300px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-backdrop {
  background:
    linear-gradient(rgba(251, 244, 234, 0.44), rgba(251, 244, 234, 0.6)),
    url("../img/contact-bg.jpg") center 42% / cover fixed no-repeat;
}

.contact-backdrop .form-card,
.contact-backdrop .info-card {
  background: rgba(255, 250, 243, 0.62);
  backdrop-filter: blur(1.5px);
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 1.25rem;
  align-items: start;
}

.admin-panel,
.booking-panel {
  border: 1px solid rgba(222, 202, 177, 0.9);
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.84);
  box-shadow: var(--soft-shadow);
}

.admin-panel {
  padding: clamp(1.1rem, 3vw, 1.8rem);
}

.admin-panel h2,
.booking-panel h2 {
  margin: 0 0 1rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  font-weight: 400;
}

.weekday-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.day-card {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.55);
}

.day-card.is-off {
  opacity: 0.72;
  background: rgba(247, 236, 220, 0.72);
}

.day-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.day-card-title {
  color: var(--cocoa);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}

.availability-switch {
  position: relative;
  width: 48px;
  height: 26px;
  flex: 0 0 auto;
}

.availability-switch input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.availability-switch span {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #d8c7b4;
  cursor: pointer;
  transition: background 0.2s ease;
}

.availability-switch span::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  content: "";
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(58, 33, 22, 0.2);
  transition: transform 0.2s ease;
}

.availability-switch input:checked + span {
  background: var(--gold);
}

.availability-switch input:checked + span::after {
  transform: translateX(22px);
}

.time-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.exception-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.exception-item,
.slot-choice,
.calendar-day {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.exception-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem;
}

.exception-item strong {
  display: block;
  color: var(--cocoa);
}

.exception-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

.icon-button {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--gold-dark);
  background: rgba(255, 250, 243, 0.8);
}

.admin-summary {
  display: grid;
  gap: 0.9rem;
}

.summary-pill {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.55);
}

.summary-pill i {
  color: var(--gold);
  font-size: 1.35rem;
}

.booking-panel {
  padding: clamp(1rem, 3vw, 1.4rem);
}

.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.calendar-title {
  color: var(--cocoa);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.45rem;
}

.calendar-weekday {
  color: var(--muted);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.calendar-day {
  min-height: 44px;
  padding: 0.35rem;
  color: var(--cocoa);
  font-weight: 700;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.calendar-day:not(:disabled):hover {
  border-color: var(--gold);
  transform: translateY(-1px);
}

.calendar-day.is-muted {
  color: #b9a797;
}

.calendar-day.is-selected {
  color: #fff;
  border-color: var(--gold-dark);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.calendar-day:disabled {
  color: #c9b9aa;
  background: rgba(234, 217, 197, 0.45);
  cursor: not-allowed;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 1rem;
}

.slot-choice {
  min-height: 42px;
  color: var(--cocoa);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
}

.slot-choice.is-selected {
  color: #fff;
  border-color: var(--gold-dark);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.booking-empty {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.45);
}

.quote-band {
  margin: 0 0 2rem;
  padding: 1.2rem;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  text-align: center;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  font-style: italic;
}

.quote-band-limited {
  max-width: 1120px;
}

.social-band {
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
  background: rgba(255, 250, 243, 0.7);
}

.social-link {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-dark);
  background: var(--paper);
  font-size: 1.3rem;
}

.tim-footer {
  padding: 0.75rem 1rem;
  color: #f8efe3;
  background: var(--cocoa);
  text-align: center;
  font-size: 0.9rem;
}

.tim-footer a {
  color: #f1c58c;
}

@media (max-width: 1199.98px) {
  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-hero-visual {
    display: none;
  }

  .page-hero-copy-col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 991.98px) {
  .navbar {
    min-height: 68px;
  }

  .navbar-collapse {
    margin: 0.75rem 0 1rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
  }

  .nav-link {
    white-space: normal;
  }

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

  .hero-copy {
    padding-top: 6rem;
  }

  .universe-grid,
  .treatment-grid,
  .reserve-layout,
  .contact-layout {
    grid-template-columns: 1fr 1fr;
  }

  .reserve-layout,
  .contact-layout,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .brand-name {
    font-size: 0.78rem;
    letter-spacing: 0.12rem;
  }

  .brand-name small {
    font-size: 0.4rem;
    letter-spacing: 0.12rem;
  }
}

@media (max-width: 767.98px) {
  body {
    font-size: 15px;
  }

  .brand-logo {
    width: 48px;
  }

  .hero-section {
    padding-top: 0.8rem;
  }

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

  .hero-copy {
    padding: 5rem 1.2rem 4.8rem;
  }

  .trust-strip,
  .universe-grid,
  .treatment-grid {
    grid-template-columns: 1fr;
  }

  html,
  body {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  html::-webkit-scrollbar,
  body::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }

  .contact-backdrop {
    background:
      linear-gradient(rgba(251, 244, 234, 0.54), rgba(251, 244, 234, 0.74)),
      url("../img/contact-bg.jpg") center top / cover scroll no-repeat;
  }

  .baseline-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .baseline-cta .btn-tim {
    width: 100%;
  }

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

  .weekday-grid,
  .slot-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .container {
    padding-inline: 1rem;
  }

  .brand-lockup {
    gap: 0.45rem;
  }

  .brand-logo {
    width: 42px;
  }

  .brand-name {
    font-size: 0.68rem;
    letter-spacing: 0.09rem;
  }

  .brand-name small {
    font-size: 0.34rem;
    letter-spacing: 0.09rem;
  }

  .hero-panel,
  .universe-card,
  .treatment-card,
  .profile-card,
  .form-card,
  .info-card,
  .reserve-card,
  .baseline-cta,
  .quote-band {
    border-radius: 8px;
  }

  .hero-copy h1 {
    font-size: 2.35rem;
  }

  .trust-item {
    font-size: 0.8rem;
  }

  .btn-tim {
    width: 100%;
  }
}
