:root {
  --paper: #ffffff;
  --ink: #383730;
  --muted: #77746b;
  --line: rgba(56, 55, 48, 0.18);
  --placeholder: #e5e5e5;
  --placeholder-hover: #dddddd;
  --serif: "SUIT", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", sans-serif;
  --korean-serif: "SUIT", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", sans-serif;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --page-gutter: clamp(32px, 4vw, 80px);
  --grid-gap: clamp(20px, 2vw, 36px);
}

/* Shared gallery carousel + lightbox · v64 */
.media-carousel-shell {
  position: relative;
  width: 100%;
  min-width: 0;
}

.media-carousel-track {
  display: grid !important;
  grid-template-columns: none !important;
  grid-auto-flow: column !important;
  grid-auto-columns: calc((100% - 32px) / 3) !important;
  gap: 16px !important;
  width: 100%;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  background: #fff !important;
}

.media-carousel-track::-webkit-scrollbar {
  display: none;
}

.media-carousel-track[data-media-count="1"] {
  grid-auto-columns: 100% !important;
}

.media-carousel-track[data-media-count="2"] {
  grid-auto-columns: calc((100% - 16px) / 2) !important;
}

.media-carousel-track > figure,
.media-carousel-track > img {
  position: relative;
  grid-column: auto !important;
  grid-row: auto !important;
  width: 100% !important;
  min-width: 0;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  aspect-ratio: 4 / 3 !important;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  border: 0 !important;
  border-radius: 14px !important;
  background: #f2f2f2 !important;
  box-shadow: none !important;
  cursor: zoom-in;
  isolation: isolate;
}

.media-carousel-track > figure::after,
.media-carousel-track > img::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
}

.media-carousel-track > figure > img,
.media-carousel-track.room-final-gallery > .room-media,
.media-carousel-track.room-space-gallery > .room-media {
  display: block;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: inherit !important;
  object-fit: cover !important;
  transition: transform 280ms ease, filter 280ms ease;
}

.media-carousel-track > figure:hover > img,
.media-carousel-track > img:hover {
  transform: scale(1.018);
}

.media-carousel-track > figure:focus-visible,
.media-carousel-track > img:focus-visible {
  outline: 3px solid #111;
  outline-offset: -3px;
}

.media-carousel-track > figure > figcaption {
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  padding: 34px 18px 16px !important;
  border: 0 !important;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 700;
  line-height: 1.45;
  pointer-events: none;
}

.media-carousel-arrow {
  position: absolute;
  top: calc(50% - 30px);
  z-index: 6;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid #111;
  border-radius: 50%;
  background: #fff;
  color: #111;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  transform: translateY(-50%);
  transition: background-color 180ms ease, color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.media-carousel-arrow.is-prev {
  left: 16px;
}

.media-carousel-arrow.is-next {
  right: 16px;
}

.media-carousel-arrow svg,
.media-lightbox-arrow svg,
.media-lightbox-close svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.media-carousel-arrow:hover:not(:disabled),
.media-carousel-arrow:focus-visible {
  background: #111;
  color: #fff;
  transform: translateY(-50%) scale(1.04);
}

.media-carousel-arrow:disabled,
.media-carousel-shell.is-static .media-carousel-arrow,
.media-carousel-shell.is-empty .media-carousel-arrow {
  opacity: 0;
  pointer-events: none;
}

.media-carousel-footer {
  display: grid;
  grid-template-columns: auto minmax(72px, 180px) 1fr;
  align-items: center;
  gap: 16px;
  min-height: 54px;
  padding-top: 14px;
  color: #111;
}

.media-carousel-shell.is-empty .media-carousel-footer {
  display: none;
}

.media-carousel-counter {
  min-width: 58px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
}

.media-carousel-progress {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  overflow: hidden;
  background: #d8d8d8;
}

.media-carousel-progress > span {
  position: absolute;
  inset: 0 auto 0 0;
  display: block;
  width: 0;
  background: #111;
  transition: width 220ms ease;
}

.media-carousel-hint {
  justify-self: end;
  color: #5d5d5d;
  font-size: 13px;
  font-weight: 600;
}

body.media-lightbox-open {
  overflow: hidden;
}

.media-lightbox {
  position: fixed;
  inset: 0;
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  color: #111;
}

.media-lightbox::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(3px);
}

.media-lightbox-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(1680px, 100vw);
  height: 100vh;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 0 80px rgba(0, 0, 0, 0.28);
}

.media-lightbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  padding: 18px 32px;
  border-bottom: 1px solid #111;
}

.media-lightbox-header > div {
  display: flex;
  align-items: baseline;
  gap: 22px;
  min-width: 0;
}

.media-lightbox-header p {
  margin: 0;
  overflow: hidden;
  font-size: clamp(18px, 1.6vw, 26px);
  font-weight: 800;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.media-lightbox-header span {
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
}

.media-lightbox-close {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid #111;
  border-radius: 50%;
  background: #fff;
  color: #111;
  transition: background-color 180ms ease, color 180ms ease;
}

.media-lightbox-close:hover,
.media-lightbox-close:focus-visible {
  background: #111;
  color: #fff;
}

.media-lightbox-stage {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  min-height: 0;
  padding: 24px 22px 12px;
  background: #f5f5f3;
}

.media-lightbox-stage > figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  justify-items: center;
  min-width: 0;
  min-height: 0;
  height: 100%;
  margin: 0;
}

.media-lightbox-stage img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - 190px);
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.12);
}

.media-lightbox-stage figcaption {
  max-width: 820px;
  padding: 13px 18px 0;
  color: #525252;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
  text-align: center;
}

.media-lightbox-arrow {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: 0 auto;
  padding: 0;
  border: 1px solid #111;
  border-radius: 50%;
  background: #fff;
  color: #111;
  transition: background-color 180ms ease, color 180ms ease, opacity 180ms ease;
}

.media-lightbox-arrow:hover:not(:disabled),
.media-lightbox-arrow:focus-visible {
  background: #111;
  color: #fff;
}

.media-lightbox-arrow:disabled {
  opacity: 0.25;
}

.media-lightbox-help {
  min-height: 38px;
  margin: 0;
  padding: 5px 32px 14px;
  background: #f5f5f3;
  color: #6a6a6a;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

@supports (height: 100dvh) {
  .media-lightbox,
  .media-lightbox-panel {
    height: 100dvh;
  }

  .media-lightbox-stage img {
    max-height: calc(100dvh - 190px);
  }
}

@media (max-width: 1024px) {
  .media-carousel-track,
  .media-carousel-track[data-media-count="2"] {
    grid-auto-columns: calc((100% - 14px) / 2) !important;
    gap: 14px !important;
  }

  .media-carousel-track[data-media-count="1"] {
    grid-auto-columns: 100% !important;
  }
}

@media (max-width: 720px) {
  .media-carousel-track,
  .media-carousel-track[data-media-count="2"] {
    grid-auto-columns: 87% !important;
    gap: 10px !important;
    scroll-padding-inline: 0;
  }

  .media-carousel-track[data-media-count="1"] {
    grid-auto-columns: 100% !important;
  }

  .media-carousel-track > figure,
  .media-carousel-track > img {
    border-radius: 10px !important;
  }

  .media-carousel-arrow {
    top: calc(50% - 26px);
    width: 42px;
    height: 42px;
  }

  .media-carousel-arrow.is-prev {
    left: 10px;
  }

  .media-carousel-arrow.is-next {
    right: 10px;
  }

  .media-carousel-footer {
    grid-template-columns: auto minmax(64px, 1fr);
    min-height: 48px;
    gap: 12px;
    padding-top: 12px;
  }

  .media-carousel-hint {
    display: none;
  }

  .media-lightbox-header {
    min-height: 68px;
    padding: 12px 16px;
  }

  .media-lightbox-header > div {
    display: grid;
    gap: 3px;
  }

  .media-lightbox-header p {
    max-width: calc(100vw - 96px);
    font-size: 17px;
  }

  .media-lightbox-close {
    width: 42px;
    height: 42px;
  }

  .media-lightbox-stage {
    grid-template-columns: 1fr;
    padding: 12px 0 8px;
  }

  .media-lightbox-stage > figure {
    grid-column: 1;
    grid-row: 1;
    padding: 0 10px;
  }

  .media-lightbox-stage img {
    max-height: calc(100vh - 170px);
    border-radius: 4px;
  }

  .media-lightbox-stage figcaption {
    padding: 11px 10px 0;
    font-size: 13px;
  }

  .media-lightbox-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 44px;
    height: 44px;
    margin: 0;
    transform: translateY(-50%);
  }

  .media-lightbox-arrow.is-prev {
    left: 14px;
  }

  .media-lightbox-arrow.is-next {
    right: 14px;
  }

  .media-lightbox-help {
    min-height: 28px;
    padding: 2px 14px 10px;
    font-size: 11px;
  }
}

/* Included-service icon system primitives */
.room-pricing-section .pricing-inclusions {
  --inclusion-rule: rgba(17, 19, 24, 0.18);
  display: block;
  margin-top: 36px;
  padding: 32px 0 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  background: #fff;
}

.pricing-inclusions-heading {
  padding-bottom: 25px;
}

.pricing-inclusions-heading p,
.pricing-inclusions-heading h3 {
  margin: 0;
}

.pricing-inclusions-heading p {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.room-pricing-section .pricing-inclusions-heading h3 {
  color: var(--ink);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: var(--weight-bold);
  letter-spacing: -0.045em;
  line-height: 1.3;
}

.room-pricing-section .pricing-inclusion-grid {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0 clamp(18px, 2.2vw, 30px);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
  list-style: none;
}

.room-pricing-section .pricing-inclusion-grid li {
  display: flex;
  min-width: 0;
  min-height: 142px;
  padding: 20px 0 24px;
  border-top: 1px solid var(--inclusion-rule);
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.room-pricing-section .pricing-inclusion-grid li::before {
  content: none;
}

.pricing-inclusion-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f3f4f6;
  color: var(--ink);
}

.pricing-inclusion-icon svg {
  display: block;
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-inclusion-grid li > span:last-child {
  max-width: 12rem;
  font-weight: var(--weight-semibold);
  letter-spacing: -0.025em;
  word-break: keep-all;
}

.service-icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

@media (min-width: 721px) and (max-width: 1024px) {
  .room-pricing-section .pricing-inclusion-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .room-pricing-section .pricing-inclusions {
    margin-top: 28px;
    padding: 26px 0 0;
    border-radius: 0;
  }

  .pricing-inclusions-heading {
    padding-bottom: 21px;
  }

  .room-pricing-section .pricing-inclusions-heading h3 {
    font-size: 22px;
  }

  .room-pricing-section .pricing-inclusion-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 18px;
    font-size: 14px;
  }

  .room-pricing-section .pricing-inclusion-grid li {
    min-height: 126px;
    padding: 17px 0 20px;
    gap: 13px;
  }

  .pricing-inclusion-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .pricing-inclusion-icon svg {
    width: 23px;
    height: 23px;
  }
}

@media (max-width: 340px) {
  .room-pricing-section .pricing-inclusion-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .room-pricing-section .pricing-inclusion-grid li {
    min-height: 0;
    padding-block: 16px;
    flex-direction: row;
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .media-carousel-track {
    scroll-behavior: auto !important;
  }

  .media-carousel-progress > span,
  .media-carousel-track > figure > img,
  .media-carousel-track > img,
  .media-carousel-arrow,
  .media-lightbox-arrow,
  .media-lightbox-close {
    transition: none !important;
  }
}

/* v68 · Air Premia-inspired settlement mega menu and new service pages */
.primary-nav-group {
  position: static;
  display: flex;
  height: var(--header-height);
  align-items: center;
}

.primary-nav-group > button[data-route="settlement"] {
  padding-right: 6px;
  border-radius: var(--control-radius) 0 0 var(--control-radius);
}

.primary-nav .nav-submenu-toggle {
  display: inline-flex;
  width: 30px;
  min-width: 30px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border-radius: 0 var(--control-radius) var(--control-radius) 0;
}

.nav-submenu-toggle svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  transition: transform 160ms ease;
}

.primary-nav-group:hover > button[data-route="settlement"],
.primary-nav-group:focus-within > button[data-route="settlement"],
.primary-nav-group.is-open > button[data-route="settlement"] {
  background: var(--surface-soft);
}

.primary-nav-group.is-open .nav-submenu-toggle svg {
  transform: rotate(180deg);
}

.header-submenu {
  position: absolute;
  z-index: 50;
  top: 100%;
  right: 0;
  left: 0;
  display: grid;
  padding: 28px var(--shell-gutter) 30px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: #fff;
  box-shadow: 0 20px 34px rgba(17, 19, 24, 0.09);
}

.header-submenu[hidden] {
  display: none !important;
}

.primary-nav .header-submenu button {
  display: grid;
  width: 100%;
  height: auto;
  min-height: 92px;
  padding: 18px clamp(18px, 2.5vw, 38px);
  align-content: center;
  justify-items: start;
  gap: 7px;
  border-radius: 0;
  background: #fff;
  text-align: left;
}

.primary-nav .header-submenu button + button {
  border-left: 1px solid var(--line);
}

.primary-nav .header-submenu button:hover,
.primary-nav .header-submenu button:focus-visible,
.primary-nav .header-submenu button[aria-current="page"] {
  background: var(--surface-soft);
}

.header-submenu button span {
  color: var(--muted);
  font-size: 10px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}

.header-submenu button strong {
  color: var(--ink);
  font-size: 17px;
  font-weight: var(--weight-bold);
  letter-spacing: -0.035em;
  line-height: 1.35;
}

.primary-nav button[data-section-current],
.mobile-drawer button[data-section-current] {
  background: rgba(17, 19, 24, 0.07);
  color: var(--about-accent);
}

.care-interior-media img {
  object-position: center 52%;
}

.care-logistics-media img,
.logistics-feature-media > img {
  object-position: center center;
}

.interior-feature-media > img {
  object-position: center 58%;
}

@media (min-width: 721px) and (max-width: 1240px) {
  .primary-nav-group > button[data-route="settlement"] {
    padding-right: 2px;
  }

  .primary-nav .nav-submenu-toggle {
    width: 20px;
    min-width: 20px;
  }

  .nav-submenu-toggle svg {
    width: 14px;
    height: 14px;
  }

  .header-submenu {
    padding-inline: 24px;
  }
}

@media (max-width: 720px) {
  .drawer-nav-group {
    width: 100%;
    border-bottom: 1px solid var(--line-soft);
  }

  .mobile-drawer nav > .drawer-nav-group > button {
    width: 100%;
    border-bottom: 0;
  }

  .mobile-drawer .drawer-subnav {
    display: grid;
    padding: 0 0 14px;
    gap: 3px;
  }

  .mobile-drawer .drawer-subnav button {
    min-height: 42px;
    padding: 9px 16px 9px 26px;
    border: 0;
    border-left: 2px solid var(--line);
    background: transparent;
    color: var(--muted);
    font-size: 15px;
    font-weight: var(--weight-semibold);
    letter-spacing: -0.02em;
    line-height: 1.45;
    text-align: left;
  }

  .mobile-drawer .drawer-subnav button:hover,
  .mobile-drawer .drawer-subnav button:focus-visible,
  .mobile-drawer .drawer-subnav button[aria-current="page"] {
    border-left-color: var(--ink);
    background: var(--surface-soft);
    color: var(--ink);
  }
}

/* v55 · compact golf booking detail */
.golf-compact-guide {
  padding: clamp(64px, 7vw, 96px) 0 32px;
}

.golf-compact-heading {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  align-items: end;
  gap: clamp(42px, 6vw, 92px);
}

.golf-compact-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(29px, 3vw, 42px);
  font-weight: var(--weight-bold);
  letter-spacing: -0.05em;
  line-height: 1.24;
  word-break: keep-all;
}

.golf-compact-heading p,
.golf-compact-note {
  margin: 0;
  color: #4f5968;
  font-size: 15px;
  line-height: 1.72;
  word-break: keep-all;
}

.golf-compact-guide ol {
  display: grid;
  margin: 38px 0 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  list-style: none;
}

.golf-compact-guide li {
  display: flex;
  min-width: 0;
  padding: 24px 26px;
  align-items: center;
  gap: 18px;
}

.golf-compact-guide li + li {
  border-left: 1px solid var(--ink);
}

.golf-compact-guide li span {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 11px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
}

.golf-compact-guide li strong {
  color: var(--ink);
  font-size: 17px;
  font-weight: var(--weight-bold);
  letter-spacing: -0.03em;
  line-height: 1.4;
  word-break: keep-all;
}

.golf-compact-note {
  margin-top: 16px;
  text-align: right;
}

@media (max-width: 720px) {
  .golf-compact-guide {
    padding: 48px 0 18px;
  }

  .golf-compact-heading {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .golf-compact-heading h2 {
    font-size: 28px;
  }

  .golf-compact-heading p,
  .golf-compact-note {
    font-size: 14px;
  }

  .golf-compact-guide ol {
    margin-top: 28px;
    grid-template-columns: minmax(0, 1fr);
  }

  .golf-compact-guide li {
    padding: 20px 4px;
  }

  .golf-compact-guide li + li {
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .golf-compact-note {
    text-align: left;
  }
}

/* STAY OAN House reference: city-based guesthouse details */
.view-guesthouse {
  --room-line: rgba(56, 55, 48, 0.2);
  --room-soft: #f1f1ef;
  --room-soft-alt: #e7e7e4;
  padding: 48px 55px 150px !important;
}

.guesthouse-index {
  width: 100%;
  max-width: none;
  margin: 0;
}

.room-detail {
  width: 100%;
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
}

.guesthouse-index[hidden],
.room-detail[hidden] {
  display: none;
}

.guesthouse-location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: none;
  gap: 24px;
  align-items: stretch;
}

.location-tile {
  display: flex;
  width: 100%;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  text-align: left;
}

.room-media {
  display: block;
  width: 100%;
  background: var(--room-soft);
  transition: background-color 180ms ease;
}

img.room-media {
  object-fit: cover;
  object-position: center;
}

.location-tile:nth-child(2) .room-media,
.room-hero-carousel .room-media:nth-child(even),
.room-space-gallery .room-media:nth-child(even),
.room-final-gallery .room-media:nth-child(3n + 2) {
  background: var(--room-soft-alt);
}

.location-tile:nth-child(3) .room-media,
.room-hero-carousel .room-media:nth-child(3n),
.room-space-gallery .room-media:nth-child(3n),
.room-final-gallery .room-media:nth-child(3n) {
  background: #dededb;
}

.location-tile > .room-media {
  height: auto;
  min-height: 0;
  flex: 0 0 auto;
  aspect-ratio: 4 / 3;
  transition: filter 180ms ease;
}

.location-tile-copy {
  display: grid;
  flex: 0 0 auto;
  padding-top: 15px;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 24px;
  row-gap: 4px;
  align-items: start;
}

.location-tile-copy strong {
  grid-column: 1;
  font-size: 20px;
  font-weight: var(--weight-bold);
  letter-spacing: -0.04em;
  line-height: 1.35;
}

.location-tile-copy small {
  grid-column: 1;
  color: var(--muted);
  font-size: 11px;
  font-weight: var(--weight-regular);
  line-height: 1.55;
}

.location-link {
  display: inline-flex;
  width: auto;
  margin: 2px 0 0;
  grid-column: 2;
  grid-row: 1 / span 2;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.04em;
  line-height: 1.4;
  white-space: nowrap;
}

.location-link svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.25;
  transition: transform 180ms ease;
}

.location-tile:hover .room-media,
.location-tile:focus-visible .room-media {
  background: #d5d5d2;
}

.location-tile:hover img.room-media,
.location-tile:focus-visible img.room-media {
  filter: brightness(0.94);
}

.location-tile:hover .location-link svg,
.location-tile:focus-visible .location-link svg {
  transform: translate(2px, -2px);
}

.location-tile:focus-visible,
.room-back:focus-visible,
.room-city-tabs button:focus-visible,
.room-actions button:focus-visible,
.room-carousel-arrow:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 4px;
}

.room-detail-toolbar {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--room-line);
  border-bottom: 1px solid var(--room-line);
}

.room-back {
  font-size: 11px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.room-back span {
  margin-right: 8px;
}

.room-city-tabs {
  display: flex;
  align-items: center;
  gap: 22px;
}

.room-city-tabs button {
  position: relative;
  height: 57px;
  color: var(--muted);
  font-size: 11px;
  font-weight: var(--weight-medium);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.room-city-tabs button::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--ink);
  content: "";
  transition: transform 180ms ease;
}

.room-city-tabs button:hover,
.room-city-tabs button.is-active {
  color: var(--ink);
}

.room-city-tabs button.is-active::after {
  transform: scaleX(1);
}

.room-carousel-shell {
  position: relative;
  margin-top: 48px;
}

.room-hero-carousel {
  display: grid;
  padding: 0;
  grid-auto-columns: calc((100% - 36px) / 2.3);
  grid-auto-flow: column;
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.room-hero-carousel::-webkit-scrollbar,
.room-space-gallery::-webkit-scrollbar {
  display: none;
}

.room-hero-carousel .room-media {
  aspect-ratio: 1;
  scroll-snap-align: start;
}

.room-carousel-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: 40px;
  height: 40px;
  transform: translateY(-50%);
  place-items: center;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-size: 15px;
}

.room-carousel-arrow.is-prev {
  left: 12px;
}

.room-carousel-arrow.is-next {
  right: 12px;
}

.room-carousel-progress {
  display: flex;
  margin-top: 18px;
  justify-content: center;
  gap: 8px;
}

.room-carousel-progress span {
  width: 28px;
  height: 1px;
  background: var(--room-line);
}

.room-carousel-progress span:first-child {
  background: var(--ink);
}

.room-intro {
  width: min(720px, 64%);
  margin-top: 58px;
  margin-bottom: 84px;
}

.room-kicker {
  color: var(--muted);
  font-size: 11px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.12em;
}

.room-intro h1 {
  margin-top: 20px;
  font-size: clamp(28px, 2.4vw, 38px);
  font-weight: var(--weight-bold);
  letter-spacing: -0.05em;
  line-height: 1.28;
  text-wrap: balance;
  word-break: keep-all;
}

.room-subtitle {
  margin-top: 22px;
  font-size: 15px;
  font-weight: var(--weight-semibold);
}

.room-description {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: var(--weight-regular);
  line-height: 1.9;
  word-break: keep-all;
}

.room-actions {
  display: flex;
  margin-top: 32px;
  gap: 10px;
}

.room-actions button {
  min-width: 132px;
  height: 42px;
  padding: 0 20px;
  border: 1px solid var(--room-line);
  font-size: 11px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.06em;
}

.room-actions button:first-child {
  background: var(--ink);
  color: #fff;
}

.room-feature-media .room-media {
  aspect-ratio: 16 / 9;
}

.room-space-section {
  margin-top: 112px;
  padding-top: 42px;
  border-top: 1px solid var(--room-line);
}

.room-space-section > header {
  max-width: 680px;
  margin: 0 auto 46px;
  text-align: center;
}

.room-space-section > header > p:first-child,
.room-gallery-section > header > p {
  color: var(--muted);
  font-size: 10px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.room-space-section h2,
.room-gallery-section h2 {
  margin-top: 10px;
  font-size: 24px;
  font-style: italic;
  font-weight: var(--weight-bold);
  letter-spacing: -0.03em;
}

.room-space-section > header > p:last-child {
  margin-top: 17px;
  color: var(--muted);
  font-size: 13px;
  font-weight: var(--weight-regular);
  line-height: 1.8;
  word-break: keep-all;
}

.room-space-gallery {
  display: grid;
  grid-auto-columns: calc((100% - 28px) / 3.05);
  grid-auto-flow: column;
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.room-space-gallery.is-two {
  grid-auto-columns: calc((100% - 14px) / 2);
}

.room-space-gallery.is-single {
  grid-auto-columns: min(100%, 520px);
}

.room-space-gallery .room-media {
  aspect-ratio: 3 / 4;
  scroll-snap-align: start;
}

.room-specs {
  display: grid;
  margin-top: 120px;
  padding-top: 48px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(40px, 5vw, 84px);
  border-top: 1px solid var(--room-line);
}

.room-spec-group {
  padding: 22px 0 26px;
  border-bottom: 1px solid var(--room-line);
}

.room-spec-group h2 {
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
}

.room-spec-group ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: var(--weight-regular);
  line-height: 1.7;
  list-style: none;
}

.room-spec-group li::before {
  margin-right: 7px;
  content: "▫";
}

.room-spec-group li span {
  margin-right: 8px;
}

.room-spec-group li strong {
  color: var(--ink);
  font-weight: var(--weight-semibold);
}

.room-gallery-section {
  margin-top: 124px;
}

.room-gallery-section > header {
  margin-bottom: 44px;
  text-align: center;
}

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

.room-final-gallery .room-media {
  aspect-ratio: 1;
}

@media (max-width: 980px) {
  .view-guesthouse {
    padding-right: 28px !important;
    padding-left: 28px !important;
  }

  .guesthouse-location-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    gap: 20px;
  }

  .room-intro {
    width: min(760px, 80%);
  }
}

@media (max-width: 720px) {
  .view-guesthouse {
    padding: 24px 20px 84px !important;
  }

  .guesthouse-location-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 40px;
  }

  .location-tile:first-child,
  .location-tile:nth-child(2),
  .location-tile:nth-child(3) {
    grid-column: 1;
    grid-row: auto;
  }

  .location-tile > .room-media {
    min-height: auto;
    flex: none;
    aspect-ratio: 16 / 11;
  }

  .location-tile-copy {
    padding-top: 14px;
    column-gap: 16px;
  }

  .location-tile-copy strong {
    font-size: 18px;
  }

  .location-link {
    font-size: 10px;
  }

  .room-detail-toolbar {
    min-height: 86px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 13px;
  }

  .room-city-tabs {
    width: 100%;
    gap: 20px;
    overflow-x: auto;
  }

  .room-city-tabs button {
    height: 28px;
    flex: 0 0 auto;
  }

  .room-carousel-shell {
    margin-top: 28px;
  }

  .room-hero-carousel {
    grid-auto-columns: 43%;
    gap: 8px;
  }

  .room-carousel-arrow {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .room-carousel-arrow.is-prev {
    left: 7px;
  }

  .room-carousel-arrow.is-next {
    right: 7px;
  }

  .room-carousel-progress {
    margin-top: 14px;
  }

  .room-intro {
    width: 100%;
    margin-top: 42px;
    margin-bottom: 58px;
  }

  .room-intro h1 {
    margin-top: 15px;
    font-size: 27px;
    line-height: 1.35;
  }

  .room-subtitle {
    margin-top: 18px;
    font-size: 14px;
  }

  .room-description {
    font-size: 13px;
    line-height: 1.85;
  }

  .room-actions {
    gap: 8px;
  }

  .room-actions button {
    min-width: 0;
    padding: 0 14px;
    flex: 1 1 0;
  }

  .room-space-section {
    margin-top: 78px;
    padding-top: 30px;
  }

  .room-space-section > header {
    margin-bottom: 30px;
    padding: 0 9px;
  }

  .room-space-section h2,
  .room-gallery-section h2 {
    font-size: 22px;
  }

  .room-space-section > header > p:last-child {
    font-size: 12px;
    line-height: 1.75;
  }

  .room-space-gallery,
  .room-space-gallery.is-two {
    grid-auto-columns: calc((100% - 8px) / 2.05);
    gap: 8px;
  }

  .room-specs {
    margin-top: 84px;
    padding-top: 24px;
    grid-template-columns: 1fr;
  }

  .room-spec-group {
    padding: 22px 0;
  }

  .room-gallery-section {
    margin-top: 84px;
  }

  .room-gallery-section > header {
    margin-bottom: 30px;
  }

  .room-final-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--paper);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 14px;
  font-weight: var(--weight-regular);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.drawer-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  cursor: pointer;
}

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

h1,
h2,
p,
figure,
dl,
dd,
ul,
address {
  margin: 0;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 8px;
  left: 8px;
  padding: 8px 12px;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.app-shell {
  width: 100%;
  min-height: 100vh;
  margin: 88px 0 0;
  padding: 0 var(--page-gutter);
}

.site-head {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--grid-gap);
  min-height: 62px;
}

.wordmark {
  grid-column: 1 / span 2;
  align-self: center;
  justify-self: start;
  font-family: var(--korean-serif);
  font-size: 52px;
  font-weight: var(--weight-semibold);
  letter-spacing: -0.075em;
  line-height: 1;
}

.top-rule {
  display: flex;
  grid-column: 3 / -1;
  height: 62px;
  align-items: center;
  justify-content: flex-end;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.city-links {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-style: italic;
  font-weight: var(--weight-medium);
}

.city-links i {
  width: 1px;
  height: 12px;
  background: var(--line);
}

.city-links button:hover,
.city-links button:focus-visible {
  color: var(--muted);
}

.mobile-menu-button,
.mobile-inquiry,
.mobile-scroll-nav,
.mobile-drawer {
  display: none;
}

.body-grid {
  display: grid;
  margin-top: 108px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--grid-gap);
}

.side-nav {
  display: flex;
  grid-column: 1 / span 2;
  padding-top: 0;
  align-items: flex-start;
  flex-direction: column;
}

.side-nav button {
  width: 100%;
  height: 39px;
  text-align: left;
  font-size: 14px;
  font-weight: var(--weight-regular);
  letter-spacing: -0.012em;
  line-height: 39px;
  transition: color 180ms ease, transform 180ms ease;
}

.side-nav button:hover,
.side-nav button:focus-visible,
.side-nav button[aria-current="page"] {
  color: #11110f;
  transform: translateX(3px);
}

.side-nav button[aria-current="page"] {
  font-weight: var(--weight-semibold);
}

.content {
  grid-column: 3 / -1;
  min-width: 0;
}

.view[hidden] {
  display: none;
}

.view.is-entering {
  animation: view-in 320ms ease both;
}

@keyframes view-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

.feature-card {
  display: block;
  min-width: 0;
  color: inherit;
  text-align: center;
}

button.feature-card {
  width: 100%;
}

.image-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 485 / 368;
  background: var(--placeholder);
  transition: background-color 180ms ease;
}

.caption {
  display: block;
  padding-top: 24px;
  font-family: var(--korean-serif);
}

.caption strong,
.caption small {
  display: block;
}

.caption strong {
  font-size: 16px;
  font-weight: var(--weight-semibold);
  letter-spacing: -0.025em;
  line-height: 1.4;
}

.caption small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: var(--weight-regular);
  line-height: 1.65;
}

button.feature-card:hover .image-placeholder,
button.feature-card:focus-visible .image-placeholder {
  background: var(--placeholder-hover);
}

.editorial-row,
.view-inquiry {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.editorial-media .image-placeholder {
  aspect-ratio: 485 / 368;
}

.editorial-copy,
.inquiry-intro {
  min-height: 368px;
  padding: 35px 38px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.view-label,
.view-heading > p {
  margin-bottom: 24px;
  font-size: 11px;
  font-style: normal;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.editorial-copy h1,
.view-heading h1,
.inquiry-intro h1 {
  font-family: var(--korean-serif);
  font-size: 34px;
  font-weight: var(--weight-bold);
  letter-spacing: -0.045em;
  line-height: 1.35;
  text-wrap: balance;
  word-break: keep-all;
}

.editorial-copy > p:not(.view-label),
.inquiry-intro > p:not(.view-label):not(.inquiry-area) {
  margin-top: 28px;
  color: var(--muted);
  font-family: var(--korean-serif);
  font-size: 14px;
  font-weight: var(--weight-regular);
  line-height: 1.8;
}

.editorial-copy > p strong {
  color: var(--ink);
  font-weight: var(--weight-semibold);
}

.editorial-copy dl {
  margin-top: 40px;
  border-top: 1px solid var(--line);
}

.editorial-copy dl div {
  display: grid;
  padding: 10px 0;
  grid-template-columns: 70px 1fr;
  border-bottom: 1px solid var(--line);
  font-family: var(--korean-serif);
  font-size: 12px;
  line-height: 1.65;
}

.editorial-copy dt {
  color: var(--muted);
  font-weight: var(--weight-semibold);
}

.editorial-copy dd {
  font-weight: var(--weight-medium);
}

.profile-grid {
  display: grid;
  margin-top: 62px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

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

.profile-grid article > p,
.solution-steps article > p {
  color: var(--muted);
  font-size: 12px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
}

.profile-grid h2,
.detail-intro h2,
.location-details h2,
.solution-steps h2 {
  margin-top: 13px;
  font-size: 17px;
  font-weight: var(--weight-bold);
  letter-spacing: -0.025em;
  line-height: 1.5;
  text-wrap: balance;
  word-break: keep-all;
}

.profile-grid ul,
.benefit-list {
  padding: 0;
  list-style: none;
}

.profile-grid ul {
  display: grid;
  margin-top: 18px;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: var(--weight-regular);
  line-height: 1.65;
}

.profile-grid li::before,
.benefit-list li::before {
  margin-right: 8px;
  content: "—";
}

.view-heading {
  display: flex;
  min-height: 76px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.view-heading > p {
  margin: 0;
}

.view-heading h1 {
  font-size: 30px;
}

.horizontal-gallery {
  display: grid;
  padding-bottom: 12px;
  grid-auto-columns: calc((100% - 30px) / 2);
  grid-auto-flow: column;
  gap: 30px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-color: var(--line) transparent;
  scrollbar-width: thin;
}

.horizontal-gallery .feature-card {
  min-width: 0;
}

.stay-benefits,
.service-detail {
  display: grid;
  margin-top: 62px;
  padding: 30px 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.detail-label {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-intro h2 {
  margin-top: 0;
  font-size: 22px;
}

.detail-intro > p:last-child {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: var(--weight-regular);
  line-height: 1.75;
}

.benefit-list {
  display: grid;
  align-content: start;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: var(--weight-regular);
  line-height: 1.65;
}

.service-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 485 / 368;
  object-fit: cover;
  object-position: center 72%;
}

.fleet-section {
  margin-top: 112px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.fleet-heading {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: end;
}

.fleet-heading > div > p {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fleet-heading h2 {
  font-size: 28px;
  font-weight: var(--weight-bold);
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.fleet-heading > p {
  max-width: 430px;
  color: var(--muted);
  font-size: 13px;
  font-weight: var(--weight-regular);
  line-height: 1.75;
}

.fleet-grid {
  display: grid;
  margin-top: 42px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 76px 30px;
}

.fleet-card {
  position: relative;
  display: block;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.fleet-card:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 5px;
}

.fleet-card .fleet-cover,
.fleet-card .fleet-strip img {
  transition: filter 180ms ease;
}

.fleet-card:hover .fleet-cover,
.fleet-card:focus-visible .fleet-cover {
  filter: brightness(0.94);
}

.fleet-cover,
.fleet-strip img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  background: var(--placeholder);
}

.fleet-cover {
  object-position: center 72%;
}

.fleet-copy {
  display: grid;
  padding-top: 17px;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 3px;
  align-items: start;
}

.fleet-copy p {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 10px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fleet-copy h3 {
  margin: 0;
  font-size: 20px;
  font-weight: var(--weight-bold);
  letter-spacing: -0.025em;
  line-height: 1.4;
}

.fleet-copy small {
  padding-top: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: var(--weight-regular);
  line-height: 1.5;
}

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

.fleet-card-action {
  display: flex;
  margin-top: 18px;
  padding-top: 12px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  font-size: 11px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.06em;
}

.fleet-card-action svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.fleet-card:hover .fleet-card-action svg,
.fleet-card:focus-visible .fleet-card-action svg {
  transform: translateX(3px);
}

.vehicle-overview[hidden],
.vehicle-detail-page[hidden] {
  display: none;
}

.vehicle-detail-toolbar {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.vehicle-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: inherit;
  font-size: 12px;
  font-weight: var(--weight-semibold);
  text-decoration: none;
}

.vehicle-detail-back svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.vehicle-detail-back:hover svg,
.vehicle-detail-back:focus-visible svg {
  transform: translateX(-3px);
}

.vehicle-detail-back:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 5px;
}

.vehicle-detail-toolbar > p {
  color: var(--muted);
  font-size: 11px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.1em;
}

.vehicle-detail-hero {
  display: grid;
  margin-top: 48px;
  grid-template-columns: minmax(0, 7fr) minmax(320px, 5fr);
  gap: 30px;
  align-items: start;
}

.vehicle-detail-media {
  margin: 0;
  overflow: hidden;
  background: var(--placeholder);
}

.vehicle-detail-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 72%;
}

.vehicle-detail-copy {
  padding-top: 14px;
}

.vehicle-detail-brand {
  color: var(--muted);
  font-size: 10px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vehicle-detail-copy h1 {
  margin-top: 14px;
  font-size: clamp(34px, 3vw, 46px);
  font-weight: var(--weight-bold);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.vehicle-detail-copy h1:focus {
  outline: none;
}

.vehicle-detail-subtitle {
  margin-top: 13px;
  font-size: 15px;
  font-weight: var(--weight-semibold);
  line-height: 1.55;
}

.vehicle-detail-description {
  margin-top: 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: var(--weight-regular);
  line-height: 1.8;
}

.vehicle-spec-list {
  display: grid;
  margin-top: 30px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.vehicle-spec-list > div {
  padding: 13px 0 14px;
  border-bottom: 1px solid var(--line);
}

.vehicle-spec-list > div:nth-child(odd) {
  padding-right: 16px;
}

.vehicle-spec-list > div:nth-child(even) {
  padding-left: 16px;
  border-left: 1px solid var(--line);
}

.vehicle-spec-list dt {
  color: var(--muted);
  font-size: 10px;
  font-weight: var(--weight-regular);
  letter-spacing: 0.04em;
}

.vehicle-spec-list dd {
  margin-top: 6px;
  font-size: 13px;
  font-weight: var(--weight-semibold);
  line-height: 1.5;
}

.vehicle-detail-inquiry {
  width: 100%;
  margin-top: 26px;
  padding: 15px 18px;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: 12px;
  font-weight: var(--weight-semibold);
  transition: background-color 180ms ease, color 180ms ease;
}

.vehicle-detail-inquiry:hover,
.vehicle-detail-inquiry:focus-visible {
  background: var(--ink);
  color: #fff;
}

.vehicle-detail-notes {
  display: grid;
  margin-top: 92px;
  padding: 30px 0 32px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.vehicle-detail-notes h2 {
  font-size: 16px;
  font-weight: var(--weight-bold);
  letter-spacing: -0.02em;
}

.vehicle-detail-notes ul,
.vehicle-detail-notes aside p {
  margin-top: 17px;
  color: var(--muted);
  font-size: 12px;
  font-weight: var(--weight-regular);
  line-height: 1.8;
}

.vehicle-detail-notes li {
  position: relative;
  padding-left: 15px;
}

.vehicle-detail-notes li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "—";
}

.vehicle-detail-gallery-section {
  margin-top: 100px;
}

.vehicle-detail-gallery-section > header {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: end;
}

.vehicle-detail-gallery-section h2 {
  font-size: 28px;
  font-weight: var(--weight-bold);
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.vehicle-detail-gallery-section header > p {
  color: var(--muted);
  font-size: 12px;
  font-weight: var(--weight-regular);
  line-height: 1.7;
}

.vehicle-detail-gallery {
  display: grid;
  margin-top: 34px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 12px;
}

.vehicle-detail-gallery figure {
  margin: 0;
  min-width: 0;
}

.vehicle-detail-gallery img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--placeholder);
}

.vehicle-detail-gallery figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 10px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vehicle-detail-footer {
  margin-top: 72px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.location-details {
  display: grid;
  margin-top: 42px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.location-details article {
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.location-details h2 {
  margin-top: 0;
  font-size: 15px;
}

.location-details p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: var(--weight-regular);
  line-height: 1.75;
}

.solution-steps {
  display: grid;
  margin-top: 62px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

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

.solution-steps h2 {
  margin-top: 10px;
  font-size: 19px;
}

.solution-steps span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: var(--weight-regular);
  line-height: 1.6;
}

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

.inquiry-area {
  margin-top: 24px;
  font-size: 13px;
  font-style: italic;
}

.contact-list {
  display: grid;
  margin-top: 24px;
  gap: 4px;
  font-size: 13px;
  font-style: normal;
  font-weight: var(--weight-medium);
}

.contact-list a {
  width: fit-content;
  color: inherit;
  text-decoration: none;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  color: var(--muted);
}

.inquiry-form {
  display: grid;
  min-height: 368px;
  padding: 0 0 4px;
  grid-template-columns: 1fr 1fr;
  align-content: start;
  gap: 19px 20px;
}

.inquiry-form label {
  display: grid;
  gap: 6px;
  font-family: var(--korean-serif);
  font-size: 12px;
  font-weight: var(--weight-semibold);
}

.inquiry-form label:nth-of-type(3),
.inquiry-form label:nth-of-type(4),
.form-note,
.inquiry-form > button,
.form-status {
  grid-column: 1 / -1;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: transparent;
  font-family: var(--korean-serif);
  font-size: 14px;
  font-weight: var(--weight-regular);
}

.inquiry-form textarea {
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-family: var(--korean-serif);
  font-size: 11px;
  font-weight: var(--weight-regular);
}

.inquiry-form > button {
  height: 44px;
  border: 1px solid var(--line);
  font-family: var(--korean-serif);
  font-size: 13px;
  font-weight: var(--weight-semibold);
}

.inquiry-form > button:hover,
.inquiry-form > button:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.form-status {
  padding: 10px 0;
  text-align: center;
  font-family: var(--korean-serif);
  font-size: 12px;
}

.form-status[hidden] {
  display: none;
}

:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 3px;
}

@media (max-width: 1100px) and (min-width: 801px) {
  :root {
    --page-gutter: 40px;
    --grid-gap: 24px;
  }

  .app-shell {
    margin-top: 64px;
  }

  .wordmark,
  .side-nav {
    grid-column: 1 / span 3;
  }

  .top-rule,
  .content {
    grid-column: 4 / -1;
  }

  .body-grid {
    margin-top: 82px;
  }

  .editorial-row,
  .view-inquiry {
    grid-template-columns: 1fr;
  }

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

  .benefit-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  .app-shell {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .site-head {
    position: relative;
    display: flex;
    height: 56px;
    min-height: 56px;
    align-items: center;
    justify-content: center;
  }

  .wordmark {
    font-size: 39px;
  }

  .top-rule {
    position: absolute;
    inset: 0;
    height: 56px;
    border: 0;
    pointer-events: none;
  }

  .city-links {
    display: none;
  }

  .mobile-menu-button {
    position: absolute;
    z-index: 2;
    top: 18px;
    left: 20px;
    display: grid;
    width: 19px;
    height: 18px;
    align-content: space-between;
  }

  .mobile-menu-button span {
    width: 19px;
    height: 1px;
    background: var(--ink);
  }

  .mobile-inquiry {
    position: absolute;
    z-index: 2;
    top: 19px;
    right: 18px;
    display: block;
    font-family: var(--korean-serif);
    font-size: 11px;
    font-weight: var(--weight-semibold);
    pointer-events: auto;
  }

  .mobile-scroll-nav {
    display: flex;
    height: 47px;
    padding: 0 15px;
    align-items: stretch;
    gap: 26px;
    border-bottom: 1px solid transparent;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .mobile-scroll-nav::-webkit-scrollbar {
    display: none;
  }

  .mobile-scroll-nav button {
    position: relative;
    flex: 0 0 auto;
    padding: 0 1px 9px;
    font-size: 13px;
    font-weight: var(--weight-medium);
    white-space: nowrap;
  }

  .mobile-scroll-nav button[aria-current="page"] {
    font-weight: var(--weight-semibold);
  }

  .mobile-scroll-nav button[aria-current="page"]::after {
    position: absolute;
    right: 0;
    bottom: 7px;
    left: 0;
    height: 1px;
    background: #b2a579;
    content: "";
  }

  .body-grid {
    display: block;
    margin-top: 29px;
  }

  .side-nav {
    display: none;
  }

  .content {
    width: 100%;
    padding: 0 15px;
  }

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

  .image-placeholder {
    aspect-ratio: 360 / 273;
  }

  .service-image {
    aspect-ratio: 360 / 273;
  }

  .caption {
    padding-top: 14px;
  }

  .caption strong {
    font-size: 15px;
  }

  .caption small {
    font-size: 12px;
  }

  .editorial-row,
  .view-inquiry {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .editorial-media .image-placeholder {
    aspect-ratio: 360 / 273;
  }

  .profile-grid,
  .location-details,
  .solution-steps {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .profile-grid,
  .stay-benefits,
  .service-detail,
  .solution-steps {
    margin-top: 46px;
  }

  .stay-benefits,
  .service-detail {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .benefit-list {
    grid-template-columns: 1fr;
  }

  .fleet-section {
    margin-top: 68px;
    padding-top: 24px;
  }

  .fleet-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .fleet-heading h2 {
    font-size: 24px;
  }

  .fleet-heading > p {
    max-width: none;
  }

  .fleet-grid {
    margin-top: 32px;
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .fleet-copy {
    padding-top: 14px;
  }

  .fleet-copy h3 {
    font-size: 18px;
  }

  .fleet-strip {
    margin-top: 14px;
    gap: 6px;
  }

  .fleet-card-action {
    margin-top: 14px;
  }

  .vehicle-detail-toolbar {
    min-height: 50px;
  }

  .vehicle-detail-hero {
    margin-top: 24px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .vehicle-detail-copy {
    padding-top: 0;
  }

  .vehicle-detail-copy h1 {
    margin-top: 12px;
    font-size: 32px;
  }

  .vehicle-detail-subtitle {
    margin-top: 10px;
    font-size: 14px;
  }

  .vehicle-detail-description {
    margin-top: 17px;
  }

  .vehicle-spec-list {
    margin-top: 24px;
  }

  .vehicle-spec-list > div:nth-child(odd) {
    padding-right: 12px;
  }

  .vehicle-spec-list > div:nth-child(even) {
    padding-left: 12px;
  }

  .vehicle-detail-notes {
    margin-top: 64px;
    padding: 26px 0 28px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .vehicle-detail-gallery-section {
    margin-top: 64px;
  }

  .vehicle-detail-gallery-section > header {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .vehicle-detail-gallery-section h2 {
    font-size: 24px;
  }

  .vehicle-detail-gallery {
    margin-top: 26px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .vehicle-detail-footer {
    margin-top: 54px;
  }

  .editorial-copy,
  .inquiry-intro {
    min-height: auto;
    padding: 26px 22px;
  }

  .view-heading {
    display: block;
    min-height: auto;
    margin-bottom: 20px;
    padding-bottom: 14px;
  }

  .view-heading > p {
    margin-bottom: 8px;
  }

  .view-heading h1 {
    font-size: 24px;
  }

  .editorial-copy h1,
  .inquiry-intro h1 {
    font-size: 28px;
  }

  .horizontal-gallery {
    display: grid;
    grid-auto-columns: 100%;
    gap: 45px;
  }

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

  .inquiry-form label:nth-of-type(3),
  .inquiry-form label:nth-of-type(4),
  .form-note,
  .inquiry-form > button,
  .form-status {
    grid-column: auto;
  }

  .mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 100;
    padding: 0 24px 40px;
    background: var(--paper);
    overflow-y: auto;
  }

  .mobile-drawer[hidden] {
    display: none;
  }

  .mobile-drawer:not([hidden]) {
    display: block;
  }

  .drawer-top {
    position: relative;
    display: flex;
    height: 74px;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--line);
  }

  .drawer-wordmark {
    font-family: var(--korean-serif);
    font-size: 38px;
    font-weight: var(--weight-semibold);
    letter-spacing: -0.08em;
  }

  .drawer-close {
    position: absolute;
    top: 27px;
    left: 0;
    width: 20px;
    height: 20px;
  }

  .drawer-close span {
    position: absolute;
    top: 9px;
    left: 0;
    width: 20px;
    height: 1px;
    background: var(--ink);
  }

  .drawer-close span:first-child { transform: rotate(45deg); }
  .drawer-close span:last-child { transform: rotate(-45deg); }

  .mobile-drawer nav {
    padding-top: 34px;
  }

  .mobile-drawer nav button {
    display: block;
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    text-align: left;
    font-family: var(--korean-serif);
    font-size: 20px;
    font-weight: var(--weight-semibold);
  }
}

/* Centered WhatsApp contact action */
.view.view-inquiry:not([hidden]) {
  display: grid;
  min-height: calc(100svh - 104px);
  padding: 0 clamp(24px, 4.7vw, 80px);
  place-items: center;
}

.whatsapp-link {
  display: grid;
  width: min(100%, 324px);
  min-height: 72px;
  padding: 13px 18px;
  grid-template-columns: 32px minmax(0, 1fr) 32px;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(67, 67, 67, 0.5);
  border-radius: 2px;
  background: #fff;
  box-shadow: none;
  color: var(--about-ink);
  text-decoration: none;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.whatsapp-link::after {
  width: 32px;
  height: 32px;
  content: "";
}

.whatsapp-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
}

.whatsapp-mark svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.whatsapp-copy {
  display: grid;
  gap: 3px;
  justify-items: center;
  text-align: center;
}

.whatsapp-copy strong {
  font-size: 15px;
  font-weight: var(--weight-semibold);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.whatsapp-copy small {
  color: #777;
  font-size: 11px;
  font-weight: var(--weight-medium);
  letter-spacing: 0.045em;
  line-height: 1.35;
}

.whatsapp-link:hover,
.whatsapp-link:focus-visible {
  border-color: var(--about-ink);
  background: #fafafa;
}

.whatsapp-link:focus-visible {
  outline: 2px solid #343434;
  outline-offset: 4px;
}

@media (max-width: 720px) {
  .view.view-inquiry {
    min-height: calc(100svh - 68px);
    padding: 0 20px;
  }

  .whatsapp-link {
    width: min(100%, 300px);
    min-height: 66px;
    padding: 12px 14px;
    grid-template-columns: 28px minmax(0, 1fr) 28px;
    gap: 12px;
  }

  .whatsapp-mark {
    width: 28px;
    height: 28px;
  }

  .whatsapp-link::after {
    width: 28px;
    height: 28px;
  }

  .whatsapp-mark svg {
    width: 16px;
    height: 16px;
  }

  .whatsapp-copy strong {
    font-size: 14px;
  }

  .whatsapp-copy small {
    font-size: 10.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* HOWOL reference direction: header and company profile */
:root {
  --about-paper: #edece4;
  --about-ink: #434343;
  --about-accent: #111318;
  --about-placeholder: #d8d8d3;
}

.app-shell {
  margin: 0;
  padding: 0;
}

.site-head {
  position: relative;
  z-index: 20;
  display: grid;
  width: 100%;
  height: 104px;
  min-height: 104px;
  padding: 0 55px;
  grid-template-columns: 180px minmax(0, 1fr) 180px;
  gap: 0;
  align-items: center;
  background: transparent;
  color: var(--about-ink);
}

.wordmark {
  display: flex;
  width: max-content;
  height: 56px;
  margin-top: 0;
  grid-column: 1;
  align-self: center;
  align-items: center;
  justify-self: start;
  color: var(--about-accent);
  font-family: var(--korean-serif);
  font-size: 18px;
  font-weight: var(--weight-semibold);
  letter-spacing: -0.045em;
  line-height: 1;
  text-align: left;
  white-space: nowrap;
}

.wordmark span {
  display: inline;
}

.primary-nav {
  display: flex;
  height: 56px;
  margin-top: 0;
  grid-column: 2;
  align-items: stretch;
  justify-content: center;
  gap: clamp(22px, 2.9vw, 42px);
}

.primary-nav button {
  position: relative;
  display: flex;
  height: 56px;
  align-items: center;
  color: #555;
  font-size: 14px;
  font-weight: var(--weight-regular);
  letter-spacing: 0.08em;
  line-height: 1;
  white-space: nowrap;
}

.primary-nav button::after {
  position: absolute;
  right: 0;
  bottom: 11px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: center;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.primary-nav button:hover::after,
.primary-nav button:focus-visible::after,
.primary-nav button[aria-current="page"]::after {
  transform: scaleX(1);
}

.top-rule,
.city-links,
.mobile-inquiry,
.mobile-scroll-nav {
  display: none;
}

.body-grid {
  display: block;
  margin-top: 0;
}

.side-nav {
  display: none;
}

.content {
  width: 100%;
}

.view:not(.view-brand) {
  padding: 48px clamp(32px, 4.7vw, 80px) 0;
}

.view-brand {
  position: relative;
  min-height: 100vh;
  padding: 48px 0 190px;
  overflow: hidden;
  background: var(--about-paper);
  color: var(--about-ink);
}

.about-media {
  position: relative;
  z-index: 2;
  width: 600px;
  margin-right: auto;
  margin-left: auto;
}

.about-media .image-placeholder,
.about-hero-illustration {
  width: 100%;
  aspect-ratio: 3 / 2;
}

.about-media .image-placeholder {
  background: var(--about-placeholder);
}

.about-hero-illustration {
  display: block;
  height: auto;
  object-fit: cover;
  background: #fff;
}

.about-story {
  position: relative;
  z-index: 2;
  width: 600px;
  margin: 84px auto 0;
  text-align: center;
}

.about-story h1,
.about-story p {
  margin: 0;
  color: var(--about-ink);
  font-family: var(--korean-serif);
  font-size: 15px;
  font-weight: var(--weight-regular);
  line-height: 27px;
}

.about-name,
.about-meaning {
  min-height: 27px;
}

.about-korean {
  margin-top: 18px !important;
}

.about-english {
  margin-top: 20px !important;
}

.about-media-secondary {
  margin-top: 159px;
}

.about-location {
  position: relative;
  z-index: 2;
  width: 600px;
  margin: 49px auto 0;
  text-align: center;
}

.about-location p {
  color: var(--about-ink);
  font-size: 15px;
  font-weight: var(--weight-regular);
  line-height: 27px;
}

.about-location p:first-child {
  margin-bottom: 5px;
}

.about-location p:last-child {
  margin-top: 14px;
}

.india-motif {
  position: absolute;
  z-index: 1;
  width: auto;
  max-width: none;
  opacity: 0.28;
  pointer-events: none;
  user-select: none;
}

.motif-gate {
  top: 132px;
  left: 6.5%;
  width: 154px;
  transform: rotate(-2deg);
}

.motif-chai {
  top: 158px;
  right: 4.5%;
  width: 112px;
  transform: rotate(5deg);
}

.motif-rickshaw {
  top: 480px;
  left: 3.8%;
  width: 154px;
  transform: rotate(-6deg);
}

.motif-lotus {
  top: 608px;
  right: 4.2%;
  width: 140px;
  transform: rotate(4deg);
}

.motif-feather {
  top: 1056px;
  left: 7.5%;
  width: 102px;
  transform: rotate(-12deg);
}

.motif-paisley {
  top: 1260px;
  right: 5.5%;
  width: 116px;
  transform: rotate(8deg);
}

@media (max-width: 980px) {
  .site-head {
    grid-template-columns: 84px minmax(0, 1fr) 84px;
    padding: 0 28px;
  }

  .primary-nav {
    gap: 22px;
  }

  .primary-nav button {
    font-size: 12px;
  }

}

@media (max-width: 720px) {
  .site-head {
    display: flex;
    height: 68px;
    min-height: 68px;
    padding: 0 20px;
    align-items: center;
    justify-content: space-between;
  }

  .wordmark {
    width: max-content;
    height: 56px;
    margin-top: 0;
    font-size: 15px;
    letter-spacing: -0.04em;
  }

  .primary-nav {
    display: none;
  }

  .mobile-menu-button {
    position: relative;
    top: auto;
    left: auto;
    display: grid;
    width: 22px;
    height: 13px;
    margin-top: 0;
    align-content: space-between;
  }

  .mobile-menu-button span {
    width: 22px;
    height: 1px;
    background: var(--about-ink);
  }

  .body-grid {
    margin-top: 0;
  }

  .content {
    padding: 0;
  }

  .view:not(.view-brand) {
    padding: 28px 15px 0;
  }

  .view-brand {
    padding: 40px 0 92px;
  }

  .about-media,
  .about-story,
  .about-location {
    width: calc(100% - 30px);
  }

  .about-media .image-placeholder {
    aspect-ratio: 3 / 2;
  }

  .about-story {
    margin-top: 54px;
  }

  .about-story h1,
  .about-story p,
  .about-location p {
    font-size: 13px;
    line-height: 23px;
  }

  .about-korean,
  .about-english {
    padding: 0 6px;
    word-break: keep-all;
  }

  .about-media-secondary {
    margin-top: 76px;
  }

  .about-location {
    margin-top: 34px;
    padding: 0 8px;
  }

  .about-location p:nth-child(2) {
    word-break: break-word;
  }

  .india-motif {
    opacity: 0.22;
  }

  .motif-gate { top: 100px; left: -22px; width: 74px; }
  .motif-chai { top: 332px; right: -18px; width: 62px; }
  .motif-rickshaw { top: 464px; left: -25px; width: 78px; }
  .motif-lotus { top: 756px; right: -24px; width: 72px; }
  .motif-feather { top: 1044px; left: -10px; width: 54px; }
  .motif-paisley { top: 1260px; right: -22px; width: 64px; }

  .mobile-drawer {
    padding: 0 24px 40px;
    background: var(--about-paper);
  }

  .drawer-top {
    height: 68px;
    border-bottom: 1px solid rgba(67, 67, 67, 0.18);
  }

  .drawer-wordmark {
    color: var(--about-accent);
    font-size: 30px;
    font-weight: var(--weight-semibold);
    letter-spacing: -0.07em;
  }

  .drawer-close {
    top: 24px;
  }

  .mobile-drawer nav button {
    border-color: rgba(67, 67, 67, 0.18);
    color: var(--about-ink);
    font-size: 18px;
    font-weight: var(--weight-regular);
  }
}

/* Keep the contact action optically centered after the global page-spacing rules. */
.view.view-inquiry {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  padding: 0 clamp(24px, 4.7vw, 80px);
}

@media (max-width: 720px) {
  .view.view-inquiry {
    padding: 0 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-link {
    transition-duration: 0.01ms;
  }
}

/* Air Premia-inspired UI refinement: typography, spacing and surface details */
:root {
  --ui-font: "SUIT", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", system-ui, sans-serif;
  --serif: var(--ui-font);
  --korean-serif: var(--ui-font);
  --paper: #ffffff;
  --ink: #111318;
  --muted: #62666d;
  --line: rgba(17, 19, 24, 0.34);
  --line-soft: rgba(17, 19, 24, 0.22);
  --surface-soft: #f4f4f3;
  --about-paper: #ffffff;
  --about-ink: #111318;
  --about-accent: #111318;
  --header-height: 64px;
  --shell-gutter: 40px;
  --section-space: 96px;
  --card-radius: 20px;
  --control-radius: 12px;
}

html,
body {
  background: var(--paper);
}

body {
  color: var(--ink);
  font-family: var(--ui-font);
  font-size: 16px;
  font-weight: var(--weight-regular);
  letter-spacing: -0.01em;
  line-height: 1.6;
}

.site-head {
  width: 100%;
  max-width: none;
  height: var(--header-height);
  min-height: var(--header-height);
  margin-inline: auto;
  padding-inline: var(--shell-gutter);
  border-bottom: 1px solid var(--line);
  background: transparent;
  grid-template-columns: 180px minmax(0, 1fr) 180px;
}

.wordmark {
  width: 128px;
  height: var(--header-height);
  padding: 0;
}

.wordmark img,
.drawer-wordmark img {
  display: block;
  width: 100%;
  height: auto;
}

.primary-nav {
  height: var(--header-height);
  align-items: center;
  gap: clamp(4px, 1vw, 16px);
}

.primary-nav button {
  height: 46px;
  padding-inline: 14px;
  border-radius: var(--control-radius);
  color: var(--ink);
  font-size: 16px;
  font-family: var(--ui-font);
  font-weight: var(--weight-bold);
  letter-spacing: -0.025em;
  transition: background-color 160ms ease, color 160ms ease;
}

.primary-nav button::after {
  display: none;
}

.primary-nav button:hover,
.primary-nav button:focus-visible {
  background: var(--surface-soft);
}

.primary-nav button[aria-current="page"] {
  background: rgba(17, 19, 24, 0.07);
  color: var(--about-accent);
  font-weight: var(--weight-bold);
}

.view:not(.view-brand):not(.view-inquiry) {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding: 48px var(--shell-gutter) var(--section-space);
}

.view.view-guesthouse {
  --room-line: rgba(17, 19, 24, 0.32);
  max-width: 1440px;
  padding: 48px var(--shell-gutter) var(--section-space) !important;
}

.feature-grid,
.editorial-row,
.service-detail,
.fleet-heading,
.fleet-grid,
.vehicle-detail-hero,
.vehicle-detail-notes,
.vehicle-detail-gallery-section > header {
  gap: 16px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--card-radius);
  background: #fff;
  text-align: left;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover,
.feature-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(17, 19, 24, 0.42);
  box-shadow: 0 14px 30px rgba(23, 26, 34, 0.09);
}

.feature-card .image-placeholder,
.feature-card .service-image {
  border-radius: 0;
}

.image-placeholder {
  background: #e8eaed;
}

.caption {
  min-height: 100px;
  padding: 20px 24px 22px;
  font-family: var(--ui-font);
  text-align: left;
}

.caption strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: var(--weight-semibold);
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.caption small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: var(--weight-regular);
  letter-spacing: -0.01em;
  line-height: 1.55;
}

.service-detail {
  margin-top: var(--section-space);
  padding: 32px;
  border: 0;
  border-radius: var(--card-radius);
  background: var(--surface-soft);
}

.detail-label,
.fleet-heading > div > p,
.room-kicker,
.vehicle-detail-brand,
.vehicle-detail-toolbar > p,
.room-space-section > header > p:first-child,
.room-gallery-section > header > p,
.vehicle-detail-gallery figcaption {
  color: var(--muted);
  font-size: 13px;
  font-weight: var(--weight-semibold);
  font-style: normal;
  letter-spacing: 0.06em;
  line-height: 1.5;
}

.detail-intro h2,
.fleet-heading h2,
.room-space-section h2,
.room-gallery-section h2,
.vehicle-detail-gallery-section h2 {
  font-size: 24px;
  font-style: normal;
  font-weight: var(--weight-bold);
  letter-spacing: -0.035em;
  line-height: 1.35;
}

.detail-intro > p:last-child,
.fleet-heading > p,
.room-description,
.vehicle-detail-description,
.vehicle-detail-gallery-section header > p {
  color: var(--muted);
  font-size: 16px;
  font-weight: var(--weight-regular);
  letter-spacing: -0.01em;
  line-height: 1.65;
}

.benefit-list {
  gap: 10px 20px;
  color: #4f5968;
  font-size: 15px;
  line-height: 1.65;
}

.location-tile,
.fleet-card {
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--card-radius);
  background: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.location-tile:hover,
.location-tile:focus-visible,
.fleet-card:hover,
.fleet-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(17, 19, 24, 0.42);
  box-shadow: 0 14px 30px rgba(23, 26, 34, 0.09);
}

.guesthouse-location-grid {
  gap: 16px;
}

.location-tile-copy {
  min-height: 112px;
  padding: 20px 22px 22px;
  column-gap: 20px;
  row-gap: 6px;
}

.location-tile-copy strong {
  font-size: 20px;
  font-weight: var(--weight-bold);
  letter-spacing: -0.035em;
  line-height: 1.35;
}

.location-tile-copy small,
.location-link {
  font-size: 14px;
  line-height: 1.55;
}

.location-tile-copy small {
  color: var(--muted);
}

.location-link {
  color: #333d4b;
  font-weight: var(--weight-semibold);
  letter-spacing: -0.01em;
}

.room-detail-toolbar,
.vehicle-detail-toolbar {
  min-height: 64px;
  border-color: var(--line-soft);
}

.room-back,
.room-city-tabs button,
.vehicle-detail-back {
  color: #333d4b;
  font-size: 14px;
  font-weight: var(--weight-semibold);
  letter-spacing: -0.01em;
  text-transform: none;
}

.room-city-tabs button {
  height: 63px;
}

.room-city-tabs button::after {
  height: 2px;
  background: var(--about-accent);
}

.room-city-tabs button.is-active {
  color: var(--about-accent);
}

.room-hero-carousel,
.room-feature-media,
.room-space-gallery .room-media,
.room-final-gallery .room-media,
.vehicle-detail-media,
.vehicle-detail-gallery img,
.about-media .image-placeholder,
.about-hero-illustration {
  border-radius: var(--card-radius);
}

.room-carousel-shell {
  margin-top: 32px;
}

.room-carousel-arrow {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(17, 19, 24, 0.3);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 4px 14px rgba(23, 26, 34, 0.1);
  font-size: 18px;
}

.room-carousel-progress span {
  height: 2px;
  border-radius: 999px;
  background: var(--line-soft);
}

.room-carousel-progress span:first-child {
  background: var(--about-accent);
}

.room-intro {
  margin-top: 64px;
}

.room-intro h1,
.vehicle-detail-copy h1 {
  font-size: clamp(36px, 3.2vw, 48px);
  font-weight: var(--weight-bold);
  letter-spacing: -0.045em;
  line-height: 1.16;
}

.room-subtitle,
.vehicle-detail-subtitle {
  font-size: 18px;
  font-weight: var(--weight-semibold);
  line-height: 1.5;
}

.room-actions button,
.vehicle-detail-inquiry {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--control-radius);
  font-size: 14px;
  font-weight: var(--weight-semibold);
  letter-spacing: -0.01em;
}

.room-actions button:first-child,
.vehicle-detail-inquiry:hover,
.vehicle-detail-inquiry:focus-visible {
  border-color: var(--about-accent);
  background: var(--about-accent);
  color: #fff;
}

.room-space-section,
.room-specs,
.room-gallery-section,
.vehicle-detail-notes,
.vehicle-detail-gallery-section,
.fleet-section {
  margin-top: var(--section-space);
}

.room-specs,
.room-space-section,
.fleet-section,
.vehicle-detail-notes,
.vehicle-detail-footer {
  border-color: var(--line-soft);
}

.room-spec-group h2,
.vehicle-detail-notes h2 {
  font-size: 16px;
  font-weight: var(--weight-bold);
  letter-spacing: -0.015em;
}

.room-spec-group ul,
.vehicle-detail-notes ul,
.vehicle-detail-notes aside p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.fleet-grid {
  margin-top: 32px;
  row-gap: 32px;
}

.fleet-cover {
  border-radius: 0;
}

.fleet-copy {
  padding: 20px 22px 0;
  row-gap: 5px;
}

.fleet-copy p {
  font-size: 13px;
  letter-spacing: 0.06em;
}

.fleet-copy h3 {
  font-size: 22px;
  font-weight: var(--weight-bold);
  letter-spacing: -0.025em;
}

.fleet-copy small {
  font-size: 14px;
  line-height: 1.55;
}

.fleet-strip {
  margin: 18px 22px 0;
  gap: 8px;
}

.fleet-strip img {
  border-radius: 10px;
}

.fleet-card-action {
  min-height: 54px;
  margin: 18px 22px 0;
  padding: 0;
  border-color: var(--line-soft);
  font-size: 14px;
  font-weight: var(--weight-semibold);
  letter-spacing: -0.01em;
}

.vehicle-detail-media,
.vehicle-detail-gallery img {
  overflow: hidden;
}

.vehicle-detail-copy {
  padding: 10px 8px 0 16px;
}

.vehicle-detail-brand {
  margin-bottom: 14px;
}

.vehicle-detail-copy h1 {
  margin-top: 0;
}

.vehicle-spec-list {
  border-color: var(--line-soft);
}

.vehicle-spec-list > div {
  border-color: var(--line-soft);
}

.vehicle-spec-list dt {
  color: var(--muted);
  font-size: 13px;
}

.vehicle-spec-list dd {
  font-size: 15px;
}

.vehicle-detail-inquiry {
  height: 48px;
  border-color: var(--about-accent);
  color: var(--about-accent);
}

.vehicle-detail-gallery {
  gap: 16px;
}

.vehicle-detail-gallery figcaption {
  margin-top: 12px;
}

.solution-steps {
  margin-top: var(--section-space);
  gap: 16px;
}

.solution-steps article {
  min-height: 180px;
  padding: 26px;
  border: 0;
  border-radius: var(--card-radius);
  background: var(--surface-soft);
}

.solution-steps article > p {
  color: var(--about-accent);
  font-size: 14px;
  letter-spacing: 0.06em;
}

.solution-steps h2 {
  margin-top: 18px;
  font-size: 22px;
  font-weight: var(--weight-bold);
  letter-spacing: -0.03em;
}

.solution-steps span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.view-brand {
  background: var(--paper);
  color: var(--ink);
}

.about-story {
  margin-top: 72px;
}

.about-story h1 {
  color: var(--ink);
  font-size: 44px;
  font-weight: var(--weight-bold);
  letter-spacing: -0.05em;
  line-height: 1.2;
}

.about-story .about-name {
  margin-top: 10px;
  color: var(--about-accent);
  font-size: 14px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.about-story .about-meaning {
  margin-top: 12px;
  color: #333d4b;
  font-size: 18px;
  font-weight: var(--weight-semibold);
  line-height: 1.5;
}

.about-story .about-korean,
.about-story .about-english,
.about-location p {
  color: var(--muted);
  font-size: 15px;
  font-weight: var(--weight-regular);
  letter-spacing: -0.01em;
  line-height: 1.8;
}

.about-story .about-korean {
  margin-top: 28px !important;
  overflow-wrap: break-word;
  word-break: keep-all;
  text-wrap: pretty;
}

.about-story .about-korean span {
  display: block;
  margin-top: 14px;
  text-wrap: balance;
}

.about-story .about-korean span:first-child {
  margin-top: 0;
}

.about-divider {
  width: 44px;
  height: 1px;
  margin: 30px auto 0;
  border: 0;
  background: rgba(17, 19, 24, 0.28);
}

.about-story .about-english {
  margin-top: 26px !important;
}

.about-story .about-english p {
  color: var(--muted);
  font-size: inherit;
  font-weight: var(--weight-bold);
  letter-spacing: -0.01em;
  line-height: inherit;
}

.about-story .about-english p + p {
  margin-top: 14px;
}

.about-media-secondary {
  margin-top: 120px;
}

.about-location {
  margin-top: 44px;
}

.view.view-inquiry:not([hidden]) {
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
}

.whatsapp-link {
  min-height: 72px;
  border-color: rgba(17, 19, 24, 0.5);
  border-radius: var(--control-radius);
}

.whatsapp-copy strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: var(--weight-semibold);
}

.whatsapp-copy small {
  color: var(--muted);
  font-size: 13px;
  font-weight: var(--weight-medium);
  letter-spacing: 0;
}

:focus-visible {
  outline: 2px solid var(--about-accent);
  outline-offset: 3px;
}

@media (min-width: 721px) and (max-width: 800px) {
  .mobile-menu-button {
    display: none;
  }

  .content {
    padding-inline: 0;
  }
}

@media (min-width: 1441px) {
  .site-head {
    padding-inline: calc((100% - 1440px) / 2 + var(--shell-gutter));
  }
}

@media (max-width: 1100px) and (min-width: 721px) {
  .site-head {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr) 100px;
    padding-inline: 24px;
  }

  .wordmark {
    width: 92px;
  }

  .primary-nav {
    gap: 2px;
  }

  .primary-nav button {
    padding-inline: 9px;
    font-size: 13px;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 56px;
    --shell-gutter: 16px;
    --section-space: 56px;
  }

  .site-head {
    height: var(--header-height);
    min-height: var(--header-height);
    padding-inline: var(--shell-gutter);
  }

  .wordmark {
    width: 96px;
    height: var(--header-height);
  }

  .mobile-menu-button {
    display: grid;
    width: 42px;
    height: 42px;
    margin-right: -11px;
    align-content: center;
    justify-content: center;
    gap: 6px;
    border-radius: var(--control-radius);
  }

  .mobile-menu-button:hover,
  .mobile-menu-button:focus-visible {
    background: var(--surface-soft);
  }

  .mobile-menu-button span {
    width: 20px;
    height: 1px;
  }

  .view:not(.view-brand):not(.view-inquiry) {
    padding: 32px var(--shell-gutter) 64px;
  }

  .view.view-guesthouse {
    padding: 32px var(--shell-gutter) 64px !important;
  }

  .feature-grid,
  .guesthouse-location-grid {
    gap: 24px;
  }

  .feature-card:hover,
  .feature-card:focus-visible,
  .location-tile:hover,
  .location-tile:focus-visible,
  .fleet-card:hover,
  .fleet-card:focus-visible {
    transform: none;
    box-shadow: none;
  }

  .caption {
    min-height: 94px;
    padding: 18px 20px 20px;
  }

  .caption strong {
    font-size: 16px;
    line-height: 1.4;
  }

  .caption small {
    font-size: 14px;
    line-height: 1.55;
  }

  .service-detail {
    margin-top: var(--section-space);
    padding: 24px 20px;
    gap: 24px;
  }

  .detail-intro h2,
  .fleet-heading h2,
  .room-space-section h2,
  .room-gallery-section h2,
  .vehicle-detail-gallery-section h2 {
    font-size: 20px;
    line-height: 1.3;
  }

  .detail-intro > p:last-child,
  .fleet-heading > p,
  .room-description,
  .vehicle-detail-description,
  .vehicle-detail-gallery-section header > p {
    font-size: 14px;
    line-height: 1.65;
  }

  .benefit-list {
    font-size: 14px;
  }

  .location-tile-copy {
    min-height: 106px;
    padding: 18px 20px 20px;
  }

  .location-tile-copy strong {
    font-size: 18px;
  }

  .location-tile-copy small,
  .location-link {
    font-size: 13px;
  }

  .room-detail-toolbar {
    min-height: 92px;
  }

  .room-city-tabs button {
    height: 30px;
  }

  .room-carousel-arrow {
    width: 42px;
    height: 42px;
    border-radius: var(--control-radius);
  }

  .room-intro {
    margin-top: 48px;
  }

  .room-intro h1,
  .vehicle-detail-copy h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .room-subtitle,
  .vehicle-detail-subtitle {
    font-size: 16px;
  }

  .room-actions button,
  .vehicle-detail-inquiry {
    min-height: 46px;
  }

  .fleet-copy {
    padding: 18px 20px 0;
  }

  .fleet-copy h3 {
    font-size: 20px;
  }

  .fleet-strip,
  .fleet-card-action {
    margin-right: 20px;
    margin-left: 20px;
  }

  .vehicle-detail-copy {
    padding: 0;
  }

  .vehicle-detail-gallery {
    gap: 28px;
  }

  .solution-steps {
    gap: 16px;
  }

  .solution-steps article {
    min-height: 150px;
    padding: 24px 22px;
  }

  .about-media,
  .about-story,
  .about-location {
    width: calc(100% - 32px);
  }

  .about-story {
    margin-top: 52px;
  }

  .about-story h1 {
    font-size: 34px;
  }

  .about-story .about-name {
    font-size: 13px;
  }

  .about-story .about-meaning {
    font-size: 16px;
  }

  .about-story .about-korean,
  .about-story .about-english,
  .about-location p {
    font-size: 14px;
    line-height: 1.75;
  }

  .about-media-secondary {
    margin-top: 72px;
  }

  .drawer-top {
    height: var(--header-height);
    border-color: var(--line-soft);
  }

  .drawer-wordmark {
    display: flex;
    width: 96px;
    align-items: center;
    justify-content: center;
  }

  .drawer-close {
    top: 18px;
  }

  .mobile-drawer {
    padding: 0 20px 32px;
    background: #fff;
  }

  .mobile-drawer nav {
    padding-top: 24px;
  }

  .mobile-drawer nav button {
    padding: 18px 0;
    border-color: var(--line-soft);
    color: var(--ink);
    font-size: 18px;
    font-weight: var(--weight-bold);
    letter-spacing: -0.02em;
  }

  .view.view-inquiry:not([hidden]) {
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100svh - var(--header-height));
    padding-inline: 20px;
  }

  .whatsapp-link {
    min-height: 66px;
  }
}

/* Content title hierarchy */
.content h1,
.content h2,
.content h3,
.caption strong,
.location-tile-copy strong,
.fleet-copy h3 {
  font-weight: var(--weight-bold);
}

/* Editorial home: rotating guesthouse, mobility and dining imagery */
body[data-route="home"] .site-head {
  display: none;
}

body[data-route="home"] .app-shell,
body[data-route="home"] .body-grid,
body[data-route="home"] .content {
  min-height: 100vh;
  min-height: 100svh;
}

body[data-route="home"] .content {
  width: 100%;
}

body[data-route="home"] .view.view-home {
  width: 100%;
  max-width: none;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  padding: 0 !important;
}

body[data-route="home"] .view.view-home.is-entering {
  animation: none;
}

.home-landing {
  --home-navigation-height: 104px;
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: #fff;
  color: var(--ink);
}

.home-media-stage {
  position: absolute;
  z-index: 1;
  top: var(--home-navigation-height);
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  background: #f5f5f3;
}

.home-media-frame {
  position: absolute;
  overflow: hidden;
  background: #ececea;
  isolation: isolate;
}

.home-media-frame-left {
  inset: 0 50% 0 0;
  border-right: 2px solid #fff;
}

.home-media-frame-right {
  inset: 0 0 0 50%;
}

.home-media-layer {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.018);
  transition:
    opacity 1050ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 6400ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.home-media-layer.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.home-media-frame-left .home-media-layer {
  object-position: 50% 55%;
}

.home-media-frame-right .home-media-layer {
  object-position: 50% 54%;
}

.home-navigation {
  position: relative;
  z-index: 5;
  display: grid;
  height: var(--home-navigation-height);
  min-height: 0;
  padding: 18px clamp(24px, 3.6vw, 64px);
  grid-template-columns: clamp(174px, 15vw, 230px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 4.2vw, 76px);
  border-bottom: 1px solid #dcdcdc;
  background: #fff;
}

.home-logo {
  display: flex;
  width: min(100%, 194px);
  padding: 0;
  align-items: center;
  justify-content: center;
}

.home-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.home-route-menu {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 8px;
}

.home-route-menu button {
  min-height: 38px;
  padding: 8px 6px;
  border: 1px solid #d8d8d8;
  border-radius: 2px;
  background: #fff;
  color: var(--ink);
  font-family: var(--ui-font);
  font-size: clamp(10px, 0.84vw, 13px);
  font-weight: var(--weight-bold);
  letter-spacing: -0.015em;
  line-height: 1.2;
  text-align: center;
  transition: background-color 100ms ease, color 100ms ease;
}

.home-route-menu button:hover,
.home-route-menu button:focus-visible {
  background: var(--ink);
  color: #fff;
}

/* WhatsApp-only inquiry introduction */
.whatsapp-contact {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-align: center;
}

.inquiry-guide {
  max-width: 520px;
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: var(--weight-medium);
  letter-spacing: -0.02em;
  line-height: 1.75;
  text-wrap: balance;
  word-break: keep-all;
}

/* Keep the full vehicle silhouette visible in portrait fleet covers. */
.fleet-cover {
  object-fit: contain;
  object-position: center;
}

@media (max-width: 720px) {
  .home-landing {
    padding: 0;
    gap: 0;
  }

  .home-logo {
    width: min(236px, calc(100vw - 64px));
  }

  .home-route-menu {
    width: 100%;
    justify-self: stretch;
  }

  .home-route-menu button {
    min-height: 54px;
    padding: 13px 16px;
  }

  .whatsapp-contact {
    gap: 20px;
  }

  .inquiry-guide {
    max-width: 330px;
    font-size: 14px;
    line-height: 1.7;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-route-menu button {
    transition-duration: 0.01ms;
  }
}

/* v32 · black grid system, Air Premia-inspired room details and food galleries */
:root {
  --line: #111318;
  --line-soft: #111318;
}

.view.view-guesthouse {
  --room-line: #111318;
  --room-rule: #111318;
}

.view.view-guesthouse .room-detail {
  max-width: none;
}

.view.view-guesthouse .room-detail-toolbar {
  min-height: 72px;
  border-color: var(--room-rule);
}

.view.view-guesthouse .room-back {
  min-height: 44px;
  padding: 0 14px;
  border-radius: var(--control-radius);
  font-size: 13px;
  letter-spacing: -0.01em;
  text-transform: none;
}

.view.view-guesthouse .room-back:hover,
.view.view-guesthouse .room-back:focus-visible {
  background: var(--surface-soft);
}

.view.view-guesthouse .room-city-tabs {
  gap: 8px;
}

.view.view-guesthouse .room-city-tabs button {
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--room-rule);
  border-radius: var(--control-radius);
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: var(--weight-semibold);
  letter-spacing: -0.01em;
  text-transform: none;
}

.view.view-guesthouse .room-city-tabs button::after {
  display: none;
}

.view.view-guesthouse .room-city-tabs button:hover,
.view.view-guesthouse .room-city-tabs button:focus-visible {
  background: var(--surface-soft);
}

.view.view-guesthouse .room-city-tabs button.is-active {
  background: var(--ink);
  color: #fff;
}

.view.view-guesthouse .room-carousel-shell {
  margin-top: 32px;
}

.view.view-guesthouse .room-hero-carousel {
  grid-auto-columns: calc((100% - 16px) / 1.55);
  gap: 16px;
}

.view.view-guesthouse .room-hero-carousel .room-media {
  aspect-ratio: 16 / 10;
  border-radius: var(--card-radius);
}

.view.view-guesthouse .room-carousel-arrow {
  width: 48px;
  height: 48px;
  border: 1px solid var(--room-rule);
  border-radius: var(--control-radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: none;
  font-size: 18px;
  transition: background-color 160ms ease, color 160ms ease, opacity 160ms ease;
}

.view.view-guesthouse .room-carousel-arrow:hover:not(:disabled),
.view.view-guesthouse .room-carousel-arrow:focus-visible:not(:disabled) {
  background: var(--ink);
  color: #fff;
}

.view.view-guesthouse .room-carousel-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.view.view-guesthouse .room-carousel-progress {
  margin-top: 18px;
  gap: 6px;
}

.view.view-guesthouse .room-carousel-progress span {
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: rgba(17, 19, 24, 0.18);
  transition: background-color 160ms ease;
}

.view.view-guesthouse .room-carousel-progress span.is-active {
  background: var(--ink);
}

.view.view-guesthouse .room-intro {
  display: grid;
  width: 100%;
  margin: 72px 0 104px;
  grid-template-columns: minmax(280px, 0.9fr) minmax(380px, 1fr);
  grid-template-rows: auto auto auto;
  column-gap: clamp(48px, 7vw, 112px);
  row-gap: 14px;
}

.view.view-guesthouse .room-kicker {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  margin: 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
}

.view.view-guesthouse .room-intro h1 {
  grid-column: 1;
  grid-row: 2 / span 2;
  align-self: start;
  max-width: 560px;
  margin: 4px 0 0;
  font-size: clamp(36px, 3.2vw, 48px);
  line-height: 1.16;
}

.view.view-guesthouse .room-intro h1:focus {
  outline: none;
}

.view.view-guesthouse .room-subtitle {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  font-size: 16px;
  font-weight: var(--weight-bold);
}

.view.view-guesthouse .room-description {
  grid-column: 2;
  grid-row: 2;
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.view.view-guesthouse .room-actions {
  grid-column: 2;
  grid-row: 3;
  margin-top: 12px;
  gap: 10px;
}

.view.view-guesthouse .room-actions button {
  min-width: 132px;
  min-height: 46px;
  border-color: var(--room-rule);
  border-radius: var(--control-radius);
}

.view.view-guesthouse .room-actions button:first-child {
  border-color: var(--ink);
  background: var(--ink);
}

.view.view-guesthouse .room-feature-media .room-media {
  aspect-ratio: 16 / 9;
  border-radius: var(--card-radius);
}

.view.view-guesthouse .room-space-section {
  margin-top: 104px;
  padding-top: 40px;
  border-color: var(--room-rule);
}

.view.view-guesthouse .room-space-section > header {
  display: grid;
  max-width: none;
  margin: 0 0 32px;
  grid-template-columns: 56px minmax(190px, 300px) minmax(0, 1fr);
  align-items: start;
  gap: 24px;
  text-align: left;
}

.view.view-guesthouse .room-space-section > header > p:first-child,
.view.view-guesthouse .room-space-section h2,
.view.view-guesthouse .room-space-section > header > p:last-child {
  margin: 0;
}

.view.view-guesthouse .room-space-section > header > p:first-child {
  color: var(--ink);
  font-size: 12px;
  font-weight: var(--weight-bold);
}

.view.view-guesthouse .room-space-section h2 {
  font-size: 24px;
  font-style: normal;
  line-height: 1.35;
}

.view.view-guesthouse .room-space-section > header > p:last-child {
  max-width: 600px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.view.view-guesthouse .room-space-gallery {
  grid-auto-columns: calc((100% - 32px) / 3);
  gap: 16px;
  outline-offset: 4px;
}

.view.view-guesthouse .room-space-gallery.is-two {
  grid-auto-columns: calc((100% - 16px) / 2);
}

.view.view-guesthouse .room-space-gallery .room-media {
  aspect-ratio: 4 / 3;
  border-radius: var(--card-radius);
}

.view.view-guesthouse .room-specs {
  margin-top: 104px;
  padding-top: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--room-rule);
  border-left: 1px solid var(--room-rule);
}

.view.view-guesthouse .room-spec-group {
  min-width: 0;
  padding: 28px;
  border-right: 1px solid var(--room-rule);
  border-bottom: 1px solid var(--room-rule);
}

.view.view-guesthouse .room-spec-group h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 14px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.04em;
}

.view.view-guesthouse .room-spec-group ul {
  font-size: 14px;
  line-height: 1.7;
}

.view.view-guesthouse .room-gallery-section {
  margin-top: 104px;
  padding-top: 40px;
  border-top: 1px solid var(--room-rule);
}

.view.view-guesthouse .room-gallery-section > header {
  margin-bottom: 32px;
  text-align: left;
}

.view.view-guesthouse .room-gallery-section h2 {
  margin-top: 6px;
  font-size: 24px;
  font-style: normal;
}

.view.view-guesthouse .room-final-gallery {
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 0;
  background: transparent;
}

.view.view-guesthouse .room-final-gallery .room-media {
  aspect-ratio: 4 / 3;
  border-radius: 0;
  box-shadow: none;
}

.food-cover-catering {
  object-position: center;
}

.food-gallery-section {
  margin-top: var(--section-space);
  padding-top: 40px;
  border-top: 1px solid #111318;
}

.food-gallery-heading {
  display: grid;
  margin-bottom: 32px;
  grid-template-columns: minmax(220px, 0.8fr) minmax(280px, 1fr);
  gap: 32px;
  align-items: end;
}

.food-gallery-heading p,
.food-gallery-heading h2 {
  margin: 0;
}

.food-gallery-heading > div > p {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.food-gallery-heading h2 {
  font-size: 24px;
  font-weight: var(--weight-bold);
  letter-spacing: -0.035em;
  line-height: 1.35;
}

.food-gallery-heading > p {
  max-width: 560px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.food-photo-grid {
  display: grid;
  gap: 16px;
}

.food-photo-grid.is-korean {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (min-width: 981px) {
  .food-photo-grid.is-korean {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .food-photo-grid.is-korean figure {
    grid-column: span 2;
  }

}

.food-photo-grid.is-catering {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.food-photo-grid figure {
  overflow: hidden;
  margin: 0;
  border-radius: var(--card-radius);
  background: var(--surface-soft);
}

.food-photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 180ms ease;
}

.food-photo-grid.is-korean img {
  aspect-ratio: 4 / 3;
}

.food-photo-grid.is-catering img {
  aspect-ratio: 4 / 3;
}

.food-photo-grid figure:hover img {
  filter: brightness(0.96);
}

@media (min-width: 721px) and (max-width: 1100px) {
  .view.view-guesthouse {
    padding-inline: 24px !important;
  }

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

@media (max-width: 980px) {
  .view.view-guesthouse .room-intro {
    display: block;
    width: 100%;
    margin: 56px 0 80px;
  }

  .view.view-guesthouse .room-intro h1 {
    max-width: 720px;
    margin-top: 14px;
  }

  .view.view-guesthouse .room-subtitle {
    margin-top: 28px;
  }

  .view.view-guesthouse .room-description {
    max-width: 720px;
    margin-top: 12px;
  }

  .view.view-guesthouse .room-actions {
    margin-top: 28px;
  }

  .view.view-guesthouse .room-space-section > header {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 10px 16px;
  }

  .view.view-guesthouse .room-space-section > header > p:first-child {
    grid-column: 1;
    grid-row: 1;
  }

  .view.view-guesthouse .room-space-section h2 {
    grid-column: 2;
    grid-row: 1;
  }

  .view.view-guesthouse .room-space-section > header > p:last-child {
    grid-column: 2;
    grid-row: 2;
  }

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

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

@media (max-width: 720px) {
  .view.view-guesthouse .room-detail-toolbar {
    min-height: auto;
    padding: 14px 0 16px;
    gap: 12px;
  }

  .view.view-guesthouse .room-city-tabs {
    gap: 8px;
  }

  .view.view-guesthouse .room-city-tabs button {
    height: 44px;
    padding: 0 13px;
  }

  .view.view-guesthouse .room-carousel-shell {
    margin-top: 24px;
  }

  .view.view-guesthouse .room-hero-carousel {
    grid-auto-columns: 86%;
    gap: 10px;
  }

  .view.view-guesthouse .room-hero-carousel .room-media {
    aspect-ratio: 4 / 3;
    border-radius: 14px;
  }

  .view.view-guesthouse .room-carousel-arrow {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .view.view-guesthouse .room-carousel-arrow.is-prev {
    left: 8px;
  }

  .view.view-guesthouse .room-carousel-arrow.is-next {
    right: 8px;
  }

  .view.view-guesthouse .room-carousel-progress span {
    width: 24px;
  }

  .view.view-guesthouse .room-intro {
    margin: 48px 0 72px;
  }

  .view.view-guesthouse .room-intro h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .view.view-guesthouse .room-subtitle {
    margin-top: 24px;
    font-size: 16px;
  }

  .view.view-guesthouse .room-description {
    font-size: 14px;
  }

  .view.view-guesthouse .room-actions {
    gap: 8px;
  }

  .view.view-guesthouse .room-actions button {
    min-width: 0;
  }

  .view.view-guesthouse .room-feature-media .room-media {
    border-radius: 14px;
  }

  .view.view-guesthouse .room-space-section {
    margin-top: 72px;
    padding-top: 28px;
  }

  .view.view-guesthouse .room-space-section > header {
    margin-bottom: 24px;
  }

  .view.view-guesthouse .room-space-gallery,
  .view.view-guesthouse .room-space-gallery.is-two {
    grid-auto-columns: 86%;
    gap: 10px;
  }

  .view.view-guesthouse .room-space-gallery .room-media {
    border-radius: 14px;
  }

  .view.view-guesthouse .room-specs {
    margin-top: 72px;
    grid-template-columns: 1fr;
  }

  .view.view-guesthouse .room-spec-group {
    padding: 24px 20px;
  }

  .view.view-guesthouse .room-gallery-section {
    margin-top: 72px;
    padding-top: 28px;
  }

  .view.view-guesthouse .room-final-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .food-gallery-section {
    margin-top: 72px;
    padding-top: 28px;
  }

  .food-gallery-heading {
    margin-bottom: 24px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .food-gallery-heading > p {
    font-size: 14px;
  }

  .food-photo-grid {
    gap: 8px;
  }

  .food-photo-grid figure {
    border-radius: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .view.view-guesthouse .room-carousel-arrow,
  .view.view-guesthouse .room-carousel-progress span,
  .food-photo-grid img {
    transition-duration: 0.01ms;
  }
}

/* v41 · post-it customer reviews board */
.view.view-reviews {
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  overflow: clip;
  background: #fff;
}

.reviews-hero {
  padding: clamp(58px, 7vw, 96px) 0 clamp(34px, 4vw, 54px);
}

.reviews-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(46px, 4.8vw, 68px);
  font-weight: var(--weight-bold);
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.reviews-hero h1:focus {
  outline: none;
}

.reviews-hero p {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: var(--weight-medium);
  letter-spacing: -0.025em;
  line-height: 1.65;
  text-wrap: balance;
  word-break: keep-all;
}

.reviews-board {
  padding: 28px 0 clamp(82px, 9vw, 128px);
}

.review-list {
  display: grid;
  margin: 0;
  padding: 26px 10px 22px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(52px, 5vw, 76px) 24px;
  align-items: start;
  list-style: none;
}

.review-note-item {
  --note-angle: -1deg;
  --note-paper: #fff2b8;
  min-width: 0;
  grid-column: span 4;
  transform: rotate(var(--note-angle));
  transform-origin: 50% 24%;
  transition: transform 180ms ease;
}

.review-note-item:nth-child(2),
.review-note-item:nth-child(5) {
  margin-top: -18px;
}

.review-note-item:nth-child(4),
.review-note-item:nth-child(6) {
  margin-top: 12px;
}

.review-note-item.note-yellow {
  --note-angle: -1.25deg;
  --note-paper: #fff2b8;
}

.review-note-item.note-ivory {
  --note-angle: 0.7deg;
  --note-paper: #f4f0e8;
}

.review-note-item.note-sage {
  --note-angle: 1deg;
  --note-paper: #e7ecdc;
}

.review-note-item.note-gray {
  --note-angle: 0.55deg;
  --note-paper: #efefed;
}

.review-note-item.note-peach {
  --note-angle: -0.65deg;
  --note-paper: #f8d8c2;
}

.review-note {
  position: relative;
  display: flex;
  min-height: 410px;
  padding: 18px 18px 24px;
  flex-direction: column;
  border: 1px solid rgba(17, 19, 24, 0.12);
  background-color: var(--note-paper);
  background-image: radial-gradient(rgba(17, 19, 24, 0.035) 0.55px, transparent 0.65px);
  background-size: 4px 4px;
  box-shadow: 0 15px 28px rgba(17, 19, 24, 0.16), 0 3px 8px rgba(17, 19, 24, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.review-note-item:hover {
  z-index: 2;
  transform: translateY(-7px) rotate(0deg);
}

.review-note-item:hover .review-note {
  box-shadow: 0 21px 34px rgba(17, 19, 24, 0.18), 0 5px 10px rgba(17, 19, 24, 0.08);
}

.review-tape {
  position: absolute;
  z-index: 2;
  top: -17px;
  left: 50%;
  width: 112px;
  height: 32px;
  transform: translateX(-50%) rotate(-1.2deg);
  border: 1px solid rgba(17, 19, 24, 0.06);
  background: rgba(239, 235, 215, 0.78);
  box-shadow: 0 2px 5px rgba(17, 19, 24, 0.06);
  content: "";
  pointer-events: none;
}

.review-note-item:nth-child(even) .review-tape {
  transform: translateX(-50%) rotate(1deg);
}

.review-sample {
  align-self: flex-start;
  margin: 0 0 15px;
  padding: 5px 8px 4px;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: 10px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.review-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 16 / 9;
  background: #d9d9d5;
}

.review-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.96;
  transition: opacity 180ms ease;
}

.review-note-item:hover .review-photo img {
  opacity: 1;
}

.review-copy {
  display: flex;
  min-height: 92px;
  margin: 0;
  padding: 22px 4px 28px;
  flex: 1;
  align-items: flex-start;
  border-bottom: 1px solid rgba(17, 19, 24, 0.42);
}

.review-copy p {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: var(--weight-semibold);
  letter-spacing: -0.025em;
  line-height: 1.65;
  word-break: keep-all;
}

.review-meta {
  display: flex;
  padding: 14px 4px 0;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.4;
}

.review-meta [data-review-author] {
  font-weight: var(--weight-bold);
}

.review-meta [data-review-date] {
  font-weight: var(--weight-medium);
  letter-spacing: 0.02em;
}

.note-text-only .review-note {
  min-height: 270px;
}

.note-text-only .review-copy {
  min-height: 150px;
  padding-top: 30px;
}

.note-text-only .review-copy p {
  font-size: 19px;
  line-height: 1.7;
}

@media (min-width: 721px) and (max-width: 1100px) {
  .primary-nav button {
    padding-inline: 7px;
  }

  .review-list {
    padding-inline: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 58px 26px;
  }

  .review-note-item {
    grid-column: auto;
  }

  .review-note-item:nth-child(2),
  .review-note-item:nth-child(4),
  .review-note-item:nth-child(5),
  .review-note-item:nth-child(6) {
    margin-top: 0;
  }

  .review-note-item:nth-child(even) {
    margin-top: 24px;
  }
}

@media (min-width: 721px) and (max-width: 860px) {
  .site-head {
    grid-template-columns: 84px minmax(0, 1fr) 84px;
    padding-inline: 18px;
  }

  .wordmark {
    width: 80px;
  }

  .primary-nav {
    gap: 0;
  }

  .primary-nav button {
    padding-inline: 5px;
    font-size: 11px;
  }
}

@media (max-width: 720px) {
  .home-landing {
    --home-navigation-height: 242px;
  }

  .home-navigation {
    min-height: var(--home-navigation-height);
    padding: 19px 16px 16px;
    grid-template-columns: minmax(0, 1fr);
    align-content: start;
    gap: 16px;
  }

  .home-logo {
    width: min(176px, 48vw);
    justify-self: center;
  }

  .home-route-menu {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  .home-route-menu button {
    min-height: 39px;
    padding: 7px 5px;
    font-size: 11px;
  }

  .home-media-frame-left {
    inset: 0 0 48% 0;
    border-right: 0;
    border-bottom: 2px solid #fff;
  }

  .home-media-frame-right {
    inset: 52% 0 0 0;
  }

  .reviews-hero {
    padding: 48px 0 38px;
  }

  .reviews-hero h1 {
    font-size: 36px;
  }

  .reviews-hero p {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.7;
  }

  .reviews-board {
    padding: 24px 0 72px;
  }

  .review-list {
    padding: 22px 6px 16px;
    grid-template-columns: minmax(0, 1fr);
    gap: 54px;
  }

  .review-note-item,
  .review-note-item.note-yellow,
  .review-note-item.note-ivory,
  .review-note-item.note-sage,
  .review-note-item.note-gray,
  .review-note-item.note-peach {
    --note-angle: -0.22deg;
    margin-top: 0;
    grid-column: auto;
  }

  .review-note-item:nth-child(even) {
    --note-angle: 0.22deg;
  }

  .review-note {
    min-height: 0;
    padding: 14px 14px 20px;
    box-shadow: 0 12px 22px rgba(17, 19, 24, 0.15), 0 3px 6px rgba(17, 19, 24, 0.08);
  }

  .review-tape {
    top: -13px;
    width: 86px;
    height: 25px;
  }

  .review-sample {
    align-self: flex-end;
    margin-bottom: 14px;
  }

  .review-photo {
    aspect-ratio: 4 / 3;
  }

  .review-copy {
    min-height: 104px;
    padding: 22px 4px 26px;
  }

  .review-copy p,
  .note-text-only .review-copy p {
    font-size: 16px;
    line-height: 1.7;
  }

  .note-text-only .review-note {
    min-height: 285px;
  }

  .note-text-only .review-copy {
    min-height: 170px;
    padding-top: 30px;
  }

  .review-meta {
    padding-top: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .review-note-item,
  .review-note,
  .review-photo img {
    transition-duration: 0.01ms;
  }
}

/* v43 · calm, grid-free Air Premia-inspired contact page */
.view.view-inquiry:not([hidden]) {
  display: flex;
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  padding: clamp(56px, 8vh, 96px) clamp(24px, 6vw, 80px);
  align-items: center;
  justify-content: center;
  background: #fff;
}

.contact-panel {
  width: min(100%, 720px);
  margin-inline: auto;
}

.contact-intro,
.contact-title-block,
.contact-message {
  display: flex;
  min-height: 0;
  padding: 0;
  border: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-title-block > p {
  margin: 0;
  color: #6d7788;
  font-size: 12px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.contact-title-block h1 {
  margin: 10px 0 0;
  color: #171a22;
  font-size: clamp(40px, 3.8vw, 52px);
  font-weight: var(--weight-bold);
  letter-spacing: -0.045em;
  line-height: 1.18;
}

.contact-title-block h1:focus {
  outline: none;
}

.contact-message {
  margin-top: 22px;
}

.contact-message p {
  max-width: 640px;
  margin: 0;
  color: #333d4b;
  font-size: 17px;
  font-weight: var(--weight-regular);
  letter-spacing: -0.02em;
  line-height: 1.75;
  text-wrap: balance;
  word-break: keep-all;
}

.contact-message p + p {
  margin-top: 8px;
  color: #6d7788;
  font-size: 14px;
}

.contact-message strong {
  color: #171a22;
  font-weight: var(--weight-bold);
}

.contact-methods {
  display: flex;
  width: 100%;
  margin-top: 38px;
  padding: 0;
  border: 0;
  flex-direction: column;
  gap: 12px;
}

.contact-method {
  position: relative;
  display: flex;
  width: 100%;
  min-width: 0;
  min-height: 88px;
  padding: 18px 20px;
  align-items: center;
  gap: 16px;
  border: 1px solid transparent;
  border-radius: 16px;
  background: #f4f6f8;
  box-shadow: none;
  color: #171a22;
  text-decoration: none;
}

.contact-method-index {
  display: none;
}

.contact-method-main {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  align-items: center;
  align-self: center;
  gap: 14px;
}

.contact-method-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
}

.contact-method-icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.kakao-mark {
  background: #fee500;
  color: #171a22;
}

.phone-mark {
  background: #171a22;
  color: #fff;
}

.email-mark {
  background: #e6eaf0;
  color: #171a22;
}

.email-mark svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.contact-method-email .contact-method-copy small {
  overflow-wrap: anywhere;
  text-overflow: clip;
  white-space: normal;
}

.contact-method-copy {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.contact-method-copy strong {
  overflow: hidden;
  color: inherit;
  font-size: 18px;
  font-weight: var(--weight-bold);
  letter-spacing: -0.025em;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-method-copy small {
  overflow: hidden;
  color: #6d7788;
  font-size: 15px;
  font-weight: var(--weight-medium);
  letter-spacing: 0;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-method-arrow {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  align-self: center;
  fill: none;
  stroke: #333d4b;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.contact-method-note {
  flex: 0 0 auto;
  align-self: center;
  color: #6d7788;
  font-size: 11px;
  font-weight: var(--weight-semibold);
  letter-spacing: -0.01em;
  line-height: 1.4;
  text-align: right;
  white-space: nowrap;
}

.contact-method-kakao {
  min-height: 118px;
}

.contact-method-kakao .contact-method-main {
  align-items: flex-start;
}

.contact-method-kakao .contact-method-icon {
  margin-top: 2px;
}

.contact-method-kakao .contact-method-copy {
  width: 100%;
  gap: 5px;
}

.contact-copy-button {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  padding: 0;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  color: #171a22;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.contact-copy-value {
  font-size: 16px;
  font-weight: var(--weight-bold);
  line-height: 1.4;
}

.contact-copy-label {
  padding-bottom: 1px;
  border-bottom: 1px solid currentColor;
  color: #5f6875;
  font-size: 13px;
  font-weight: var(--weight-bold);
  line-height: 1.4;
}

.contact-copy-button:hover .contact-copy-label {
  color: #171a22;
}

.contact-copy-button:focus-visible {
  outline: 2px solid #171a22;
  outline-offset: 3px;
}

.contact-method-description {
  display: block;
  max-width: 510px;
  margin-top: 1px;
  overflow: visible;
  color: #5f6875;
  font-size: 14px;
  font-weight: var(--weight-regular);
  letter-spacing: -0.015em;
  line-height: 1.6;
  text-overflow: clip;
  white-space: normal;
  word-break: keep-all;
}

.contact-method-description strong {
  display: inline;
  overflow: visible;
  color: #333d4b;
  font-size: inherit;
  font-weight: var(--weight-bold);
  letter-spacing: inherit;
  line-height: inherit;
  white-space: normal;
}

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

.contact-method-link {
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease,
    box-shadow 160ms ease;
}

.contact-method-link:hover,
.contact-method-link:focus-visible {
  border-color: #e2e8eb;
  background: #fff;
  box-shadow: 0 10px 26px rgba(17, 26, 34, 0.08);
  color: #171a22;
  transform: translateY(-2px);
}

.contact-method-link:focus-visible {
  outline: 2px solid #171a22;
  outline-offset: 3px;
}

@media (max-width: 720px) {
  .view.view-inquiry:not([hidden]) {
    padding: 44px 20px 56px;
    align-items: flex-start;
  }

  .contact-title-block h1 {
    margin-top: 8px;
    font-size: 34px;
  }

  .contact-message {
    margin-top: 18px;
  }

  .contact-message p {
    max-width: 340px;
    font-size: 16px;
    line-height: 1.7;
  }

  .contact-message p + p {
    font-size: 13px;
  }

  .contact-methods {
    margin-top: 28px;
    gap: 10px;
  }

  .contact-method {
    min-height: 84px;
    padding: 16px;
    gap: 12px;
    border-radius: 14px;
  }

  .contact-method-main {
    gap: 12px;
  }

  .contact-method-icon {
    width: 40px;
    height: 40px;
  }

  .contact-method-icon svg {
    width: 19px;
    height: 19px;
  }

  .contact-method-copy strong {
    font-size: 17px;
  }

  .contact-method-copy small {
    font-size: 14px;
  }

  .contact-method-kakao {
    min-height: 122px;
  }

  .contact-copy-value {
    font-size: 15px;
  }

  .contact-method-description {
    font-size: 14px;
    line-height: 1.55;
  }
}

@media (max-width: 360px) {
  .contact-method-note {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-method-link {
    transition-duration: 0.01ms;
  }

  .contact-method-link:hover,
  .contact-method-link:focus-visible {
    transform: none;
  }
}

/* v42 · review collection dialog */
.reviews-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.reviews-heading {
  min-width: 0;
}

.reviews-submit-trigger,
.review-form-submit,
.review-form-cancel {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid var(--ink);
  border-radius: 10px;
  font-family: var(--ui-font);
  font-size: 14px;
  font-weight: var(--weight-bold);
  line-height: 1;
  transition: background-color 160ms ease, color 160ms ease;
}

.reviews-submit-trigger {
  min-width: 180px;
  padding: 0 20px;
  background: var(--ink);
  color: #fff;
}

.reviews-submit-trigger svg,
.review-form-submit svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.reviews-submit-trigger:hover,
.reviews-submit-trigger:focus-visible {
  background: #fff;
  color: var(--ink);
}

body.review-dialog-open {
  overflow: hidden;
}

.review-submit-dialog {
  width: min(720px, calc(100% - 40px));
  max-width: none;
  max-height: calc(100svh - 40px);
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 1px solid var(--ink);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(17, 19, 24, 0.24);
}

.review-submit-dialog::backdrop {
  background: rgba(17, 19, 24, 0.52);
  backdrop-filter: blur(3px);
}

.review-submit-form {
  padding: 32px;
}

.review-form-header {
  display: flex;
  padding-bottom: 24px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--ink);
}

.review-form-header p {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.review-form-header h2 {
  margin: 0;
  font-size: 34px;
  font-weight: var(--weight-bold);
  letter-spacing: -0.045em;
  line-height: 1.18;
}

.review-dialog-close {
  position: relative;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
}

.review-dialog-close span {
  position: absolute;
  top: 21px;
  left: 11px;
  width: 20px;
  height: 1px;
  background: currentColor;
}

.review-dialog-close span:first-child {
  transform: rotate(45deg);
}

.review-dialog-close span:last-child {
  transform: rotate(-45deg);
}

.review-dialog-close:hover,
.review-dialog-close:focus-visible {
  background: var(--ink);
  color: #fff;
}

.review-form-description {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.review-form-grid {
  display: grid;
  margin-top: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 16px;
}

.review-field {
  display: grid;
  min-width: 0;
  gap: 9px;
}

.review-field-wide {
  grid-column: 1 / -1;
}

.review-field > span {
  color: var(--ink);
  font-size: 13px;
  font-weight: var(--weight-bold);
  line-height: 1.4;
}

.review-field em {
  margin-left: 5px;
  color: var(--muted);
  font-size: 10px;
  font-style: normal;
  font-weight: var(--weight-semibold);
}

.review-field input,
.review-field select,
.review-field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(17, 19, 24, 0.62);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-family: var(--ui-font);
  font-size: 16px;
  font-weight: var(--weight-regular);
  outline: none;
}

.review-field input,
.review-field select {
  height: 52px;
  padding: 0 14px;
}

.review-field textarea {
  min-height: 168px;
  padding: 14px;
  resize: vertical;
  line-height: 1.65;
}

.review-field input:focus,
.review-field select:focus,
.review-field textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 2px rgba(17, 19, 24, 0.14);
}

.review-field input::placeholder,
.review-field textarea::placeholder {
  color: #8a8d92;
}

.review-character-count {
  justify-self: end;
  color: var(--muted);
  font-size: 11px;
  line-height: 1;
}

.review-photo-guide {
  display: flex;
  margin-top: 22px;
  padding: 16px;
  align-items: flex-start;
  gap: 13px;
  border: 1px dashed rgba(17, 19, 24, 0.56);
  border-radius: 8px;
  background: #f7f7f5;
}

.review-photo-guide svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.review-photo-guide strong,
.review-photo-guide p {
  display: block;
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

.review-photo-guide p {
  margin-top: 2px;
  color: var(--muted);
  font-weight: var(--weight-regular);
}

.review-consent {
  display: grid;
  margin-top: 22px;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.65;
}

.review-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--ink);
}

.review-consent-optional {
  margin-top: 12px;
}

.review-consent-optional strong {
  display: inline-block;
  margin-left: 4px;
  padding: 2px 5px;
  border: 1px solid rgba(17, 19, 24, 0.45);
  border-radius: 3px;
  font-size: 9px;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.review-privacy-note {
  margin: 10px 0 0 28px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.review-form-actions {
  display: grid;
  margin-top: 28px;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 10px;
}

.review-form-cancel {
  background: #fff;
  color: var(--ink);
}

.review-form-submit {
  padding: 0 20px;
  background: var(--ink);
  color: #fff;
}

.review-form-submit:disabled {
  cursor: wait;
  opacity: 0.58;
}

.review-form-cancel:hover,
.review-form-cancel:focus-visible,
.review-form-submit:hover,
.review-form-submit:focus-visible {
  background: #fff;
  color: var(--ink);
}

.review-form-cancel:hover,
.review-form-cancel:focus-visible {
  background: var(--ink);
  color: #fff;
}

.review-form-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: var(--weight-semibold);
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 720px) {
  .reviews-hero {
    align-items: stretch;
    flex-direction: column;
    gap: 26px;
  }

  .reviews-submit-trigger {
    width: 100%;
    min-height: 52px;
  }

  .review-submit-dialog {
    width: calc(100% - 24px);
    max-height: calc(100svh - 24px);
    border-radius: 12px;
  }

  .review-submit-form {
    padding: 20px;
  }

  .review-form-header {
    padding-bottom: 19px;
  }

  .review-form-header h2 {
    font-size: 28px;
  }

  .review-form-description {
    margin-top: 18px;
    font-size: 14px;
  }

  .review-form-grid {
    margin-top: 22px;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .review-field-wide {
    grid-column: auto;
  }

  .review-form-actions {
    grid-template-columns: 1fr;
  }

  .review-form-cancel {
    order: 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-submit-trigger,
  .review-form-submit,
  .review-form-cancel {
    transition-duration: 0.01ms;
  }
}

/* v45 · premium care services and India travel guide */
.care-hero {
  max-width: 980px;
  padding: clamp(52px, 7vw, 96px) 0 clamp(64px, 8vw, 112px);
}

.care-eyebrow,
.travel-heading > p,
.care-service-meta {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.11em;
  line-height: 1.45;
  text-transform: uppercase;
}

.care-hero h1,
.travel-heading h1 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: clamp(42px, 5.2vw, 72px);
  font-weight: var(--weight-bold);
  letter-spacing: -0.058em;
  line-height: 1.08;
  text-wrap: balance;
  word-break: keep-all;
}

.care-hero h1:focus,
.travel-heading h1:focus {
  outline: none;
}

.care-lead {
  max-width: 760px;
  margin: 26px 0 0;
  color: #333d4b;
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: var(--weight-semibold);
  letter-spacing: -0.035em;
  line-height: 1.55;
  word-break: keep-all;
}

.care-service-list {
  display: grid;
  gap: 24px;
}

.care-service,
.care-travel-teaser {
  display: grid;
  overflow: hidden;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  border-radius: 20px;
  background: #f4f6f8;
}

.care-service {
  min-height: 600px;
}

.care-service-reverse .care-service-media {
  grid-column: 2;
  grid-row: 1;
}

.care-service-reverse .care-service-copy {
  grid-column: 1;
  grid-row: 1;
}

.care-service-media,
.care-service-media .image-placeholder {
  width: 100%;
  min-height: 100%;
}

.care-service-media {
  display: flex;
  overflow: hidden;
  background: #e1e4e8;
}

.care-service-media .image-placeholder {
  display: block;
  aspect-ratio: auto;
  background: #dfe2e5;
}

.care-service-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.care-golf-media img {
  height: 120%;
  min-height: 120%;
  align-self: flex-start;
  object-position: 66% center;
}

.care-service-copy,
.care-travel-teaser > div {
  display: flex;
  min-width: 0;
  padding: clamp(38px, 5vw, 72px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.care-service-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.care-service-meta span {
  color: var(--ink);
}

.care-service-copy h2,
.care-travel-teaser h2 {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--ink);
  font-size: clamp(27px, 2.5vw, 38px);
  font-weight: var(--weight-bold);
  letter-spacing: -0.05em;
  line-height: 1.28;
  text-wrap: balance;
  word-break: keep-all;
}

.care-service-copy > p:not(.care-service-meta),
.care-travel-teaser > div > p:not(.care-service-meta) {
  max-width: 640px;
  margin: 22px 0 0;
  color: #4f5968;
  font-size: 16px;
  font-weight: var(--weight-regular);
  letter-spacing: -0.018em;
  line-height: 1.78;
  word-break: keep-all;
}

.care-service-copy > p:not(.care-service-meta) + p,
.care-travel-teaser > div > p:not(.care-service-meta) + p {
  margin-top: 12px;
}

.care-inquiry,
.care-travel-link,
.care-location-link {
  display: inline-flex;
  min-height: 48px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-family: var(--ui-font);
  font-size: 14px;
  font-weight: var(--weight-bold);
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: background-color 150ms ease, color 150ms ease;
}

.care-service-copy > .care-inquiry,
.care-travel-link {
  margin-top: 30px;
}

.care-service-actions {
  display: flex;
  margin-top: 30px;
  flex-wrap: wrap;
  gap: 10px;
}

.care-service-actions .care-inquiry,
.care-location-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.care-location-link {
  gap: 8px;
  text-decoration: none;
}

.care-location-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.care-inquiry:hover,
.care-inquiry:focus-visible,
.care-travel-link:hover,
.care-travel-link:focus-visible,
.care-location-link:hover,
.care-location-link:focus-visible {
  background: var(--ink);
  color: #fff;
}

.care-travel-teaser {
  margin-top: 24px;
  background: #fff;
  box-shadow: inset 0 0 0 1px #e2e8eb;
}

.care-travel-teaser figure {
  overflow: hidden;
  margin: 0;
  min-height: 520px;
}

.care-travel-teaser img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.travel-hero {
  display: grid;
  padding: clamp(52px, 7vw, 94px) 0 clamp(58px, 7vw, 92px);
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  gap: clamp(26px, 3vw, 38px);
  border-bottom: 1px solid var(--ink);
  text-align: center;
}

.travel-heading {
  max-width: 960px;
}

.travel-heading h1 {
  max-width: none;
  font-size: clamp(42px, 4.9vw, 68px);
}

.travel-intro {
  display: grid;
  max-width: 780px;
  justify-items: center;
  gap: 14px;
}

.travel-intro p {
  margin: 0;
  color: #4f5968;
  font-size: 17px;
  line-height: 1.75;
  word-break: keep-all;
}

.travel-grid {
  display: grid;
  margin: 0;
  padding: clamp(56px, 7vw, 96px) 0 clamp(72px, 9vw, 128px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(64px, 7vw, 104px) 24px;
  list-style: none;
}

.travel-card,
.travel-card article {
  min-width: 0;
}

.travel-card figure {
  overflow: hidden;
  margin: 0;
  aspect-ratio: 8 / 5;
  border-radius: 20px;
  background: #e6e8eb;
}

.travel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 180ms ease;
}

.travel-card:hover img {
  opacity: 0.92;
}

.travel-card-copy {
  padding: 22px 4px 0;
}

.travel-card-copy > p:first-child {
  display: flex;
  margin: 0;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.09em;
  line-height: 1.45;
  text-transform: uppercase;
}

.travel-card-copy > p:first-child span {
  color: var(--ink);
}

.travel-card-copy h2 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: clamp(23px, 2vw, 30px);
  font-weight: var(--weight-bold);
  letter-spacing: -0.045em;
  line-height: 1.3;
}

.travel-card-copy > p:last-child {
  max-width: 620px;
  margin: 14px 0 0;
  color: #4f5968;
  font-size: 15px;
  line-height: 1.75;
  word-break: keep-all;
}

.travel-credits {
  margin-bottom: 20px;
  padding: 0;
  border-top: 1px solid #cbd2dc;
  border-bottom: 1px solid #cbd2dc;
}

.travel-credits summary {
  padding: 20px 2px;
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: var(--weight-bold);
  list-style-position: inside;
}

.travel-credits > p {
  margin: 0;
  padding: 0 2px 14px;
  color: var(--muted);
  font-size: 12px;
}

.travel-credits ul {
  display: grid;
  margin: 0;
  padding: 0 2px 22px 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 34px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.travel-credits a {
  color: var(--ink);
  text-underline-offset: 2px;
}

@media (min-width: 721px) and (max-width: 1240px) {
  .site-head {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr) 100px;
    padding-inline: 24px;
  }

  .wordmark {
    width: 92px;
  }

  .primary-nav {
    gap: 1px;
  }

  .primary-nav button {
    padding-inline: 6px;
    font-size: 12px;
  }

  .care-service {
    min-height: 540px;
  }

  .care-service-copy,
  .care-travel-teaser > div {
    padding: 38px;
  }
}

@media (min-width: 721px) and (max-width: 860px) {
  .site-head {
    grid-template-columns: 84px minmax(0, 1fr) 84px;
    padding-inline: 18px;
  }

  .wordmark {
    width: 80px;
  }

  .primary-nav button {
    padding-inline: 4px;
    font-size: 11px;
  }

  .care-service,
  .care-travel-teaser {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .care-service-reverse {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }

  .travel-hero {
    gap: 40px;
  }
}

@media (max-width: 720px) {
  .care-hero {
    padding: 42px 0 58px;
  }

  .care-hero h1,
  .travel-heading h1 {
    margin-top: 14px;
    font-size: 36px;
    line-height: 1.15;
  }

  .care-lead {
    margin-top: 20px;
    font-size: 17px;
    line-height: 1.6;
  }

  .care-service,
  .care-service-reverse,
  .care-travel-teaser {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
  }

  .care-service-reverse .care-service-media,
  .care-service-reverse .care-service-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .care-service-media,
  .care-service-media .image-placeholder {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .care-service-copy,
  .care-travel-teaser > div {
    padding: 28px 22px 34px;
  }

  .care-service-copy h2,
  .care-travel-teaser h2 {
    margin-top: 17px;
    font-size: 25px;
    line-height: 1.34;
  }

  .care-service-copy > p:not(.care-service-meta),
  .care-travel-teaser > div > p:not(.care-service-meta) {
    margin-top: 17px;
    font-size: 15px;
    line-height: 1.72;
  }

  .care-inquiry,
  .care-travel-link,
  .care-location-link {
    width: 100%;
    min-height: 50px;
  }

  .care-service-copy > .care-inquiry,
  .care-travel-link,
  .care-service-actions {
    margin-top: 24px;
  }

  .care-travel-teaser figure {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .travel-hero {
    padding: 42px 0 52px;
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  .travel-intro {
    gap: 11px;
  }

  .travel-intro p {
    font-size: 15px;
    line-height: 1.72;
  }

  .travel-grid {
    padding: 42px 0 70px;
    grid-template-columns: minmax(0, 1fr);
    gap: 50px;
  }

  .travel-card figure {
    border-radius: 16px;
  }

  .travel-card-copy {
    padding: 18px 2px 0;
  }

  .travel-card-copy h2 {
    font-size: 24px;
  }

  .travel-card-copy > p:last-child {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.72;
  }

  .travel-credits ul {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) and (max-height: 700px) {
  body[data-route="home"] .home-landing {
    --home-navigation-height: 200px;
  }

  body[data-route="home"] .home-logo {
    width: min(148px, calc(100vw - 120px));
  }

  body[data-route="home"] .home-route-menu {
    gap: 5px;
  }

  body[data-route="home"] .home-route-menu button {
    min-height: 34px;
    padding-block: 5px;
  }

  body[data-route="home"] .home-navigation {
    padding-block: 14px 12px;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-media-layer {
    transition-duration: 0.01ms;
  }

  .care-inquiry,
  .care-travel-link,
  .travel-card img {
    transition-duration: 0.01ms;
  }
}

/* v47 · service pricing, rebuilt as code-native Air Premia-style content */
.pricing-section[hidden] {
  display: none;
}

.pricing-section {
  margin-top: var(--section-space);
  padding-top: 40px;
  border-top: 1px solid var(--ink);
}

.room-pricing-section {
  margin-top: 0;
  margin-bottom: var(--section-space);
}

.pricing-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(280px, 1fr);
  gap: 32px;
  align-items: end;
}

.pricing-heading p,
.pricing-heading h2,
.pricing-card-heading p,
.pricing-card-heading h3,
.pricing-subheading p,
.pricing-subheading h3,
.driver-package-heading p,
.driver-package-heading h3 {
  margin: 0;
}

.pricing-heading > div > p,
.pricing-subheading > div > p {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-heading h2 {
  font-size: 28px;
  font-weight: var(--weight-bold);
  letter-spacing: -0.04em;
  line-height: 1.3;
}

.pricing-heading > p,
.pricing-subheading > p {
  max-width: 560px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  word-break: keep-all;
}

.pricing-grid {
  display: grid;
  margin-top: 32px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.pricing-card {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--ink);
  border-radius: var(--card-radius);
  background: #fff;
}

.pricing-card-heading {
  display: flex;
  min-height: 48px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.pricing-card-heading h3,
.pricing-subheading h3,
.driver-package-heading h3,
.pricing-inclusions h3 {
  font-size: 20px;
  font-weight: var(--weight-bold);
  letter-spacing: -0.03em;
  line-height: 1.4;
}

.pricing-card-heading > p,
.driver-package-heading > div > p {
  color: var(--muted);
  font-size: 13px;
  font-weight: var(--weight-medium);
  line-height: 1.55;
  text-align: right;
}

.price-list {
  margin: 20px 0 0;
  border-top: 1px solid var(--ink);
}

.price-list > div,
.package-condition-list > div {
  display: grid;
  padding: 14px 0;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 16px;
  align-items: baseline;
  border-bottom: 1px solid rgba(17, 19, 24, 0.2);
}

.price-list dt,
.package-condition-list dt {
  min-width: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.price-list dd,
.package-condition-list dd {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: var(--weight-bold);
  font-variant-numeric: tabular-nums;
  line-height: 1.45;
  white-space: nowrap;
}

.pricing-inclusions {
  display: grid;
  margin-top: 16px;
  padding: 28px;
  grid-template-columns: minmax(170px, 0.5fr) minmax(0, 1.5fr);
  gap: 28px;
  align-items: start;
  border-radius: var(--card-radius);
  background: var(--surface-soft);
}

.pricing-inclusions h3 {
  margin: 0;
}

.pricing-inclusions ul {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 28px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  list-style: none;
}

.pricing-inclusions li::before {
  margin-right: 8px;
  color: var(--ink);
  content: "—";
}

.pricing-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.pricing-subheading {
  display: grid;
  margin-top: 48px;
  grid-template-columns: minmax(220px, 0.8fr) minmax(280px, 1fr);
  gap: 32px;
  align-items: end;
}

.driver-package-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.driver-package-heading > div {
  min-width: 0;
}

.driver-package-heading > div > p {
  margin-top: 7px;
  text-align: left;
  overflow-wrap: anywhere;
}

.driver-package-price {
  display: grid;
  flex: 0 0 auto;
  justify-items: end;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.driver-package-price data {
  font-size: 30px;
  font-weight: var(--weight-bold);
  letter-spacing: -0.04em;
}

.driver-package-price span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: var(--weight-semibold);
}

.package-condition-list {
  margin: 22px 0 0;
  border-top: 1px solid var(--ink);
}

.package-condition-list dd {
  font-size: 15px;
}

.package-inclusion-list {
  display: grid;
  margin: 22px 0 0;
  padding: 0;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  list-style: none;
}

.package-inclusion-list li {
  overflow-wrap: anywhere;
}

.package-inclusion-list strong {
  display: inline-block;
  min-width: 42px;
  color: var(--ink);
  font-weight: var(--weight-bold);
}

.package-time-note {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(17, 19, 24, 0.2);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.price-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px 14px;
  font-size: 13px !important;
}

.price-options span {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  color: var(--muted);
  font-weight: var(--weight-medium);
}

.price-options data {
  color: var(--ink);
  font-size: 18px;
  font-weight: var(--weight-bold);
}

.travel-package-details ul {
  display: grid;
  margin: 20px 0 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.travel-package-details li {
  display: grid;
  padding: 14px 0;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 16px;
  border-bottom: 1px solid rgba(17, 19, 24, 0.2);
  font-size: 14px;
  line-height: 1.6;
}

.travel-package-details li span {
  color: var(--muted);
}

.travel-package-details li strong {
  font-weight: var(--weight-semibold);
}

/* v87 · Keep the day-trip introduction together as one reading block. */
.travel-pricing-section .pricing-heading {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 14px;
}

.travel-pricing-section .pricing-heading > p {
  max-width: 720px;
}

.travel-pricing-section + .travel-credits {
  margin-top: 64px;
}

@media (max-width: 720px) {
  .pricing-section {
    padding-top: 28px;
  }

  .room-pricing-section {
    margin-bottom: var(--section-space);
  }

  .pricing-heading,
  .pricing-subheading,
  .pricing-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .pricing-heading,
  .pricing-subheading {
    gap: 12px;
  }

  .pricing-heading h2 {
    font-size: 24px;
  }

  .pricing-heading > p,
  .pricing-subheading > p {
    font-size: 14px;
  }

  .pricing-grid {
    margin-top: 24px;
  }

  .pricing-card {
    padding: 22px 20px;
    border-radius: 16px;
  }

  .pricing-card-heading h3,
  .pricing-subheading h3,
  .driver-package-heading h3,
  .pricing-inclusions h3 {
    font-size: 18px;
  }

  .pricing-inclusions {
    padding: 22px 20px;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    border-radius: 16px;
  }

  .pricing-inclusions ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 16px;
  }

  .pricing-subheading {
    margin-top: 40px;
  }

  .driver-package-heading {
    align-items: flex-start;
  }

  .driver-package-price data {
    font-size: 26px;
  }

  .travel-pricing-section + .travel-credits {
    margin-top: 48px;
  }
}

@media (max-width: 340px) {
  .pricing-card-heading,
  .driver-package-heading {
    flex-direction: column;
    gap: 8px;
  }

  .pricing-card-heading > p {
    text-align: left;
  }

  .driver-package-price {
    justify-items: start;
  }

  .pricing-inclusions ul {
    grid-template-columns: minmax(0, 1fr);
  }

  .price-list > div,
  .package-condition-list > div {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
  }

  .price-list dd,
  .package-condition-list dd {
    justify-self: start;
  }

  .price-options {
    justify-content: flex-start;
  }
}

/* v52 · settlement hub and standalone care detail pages */
.care-hero-compact {
  max-width: 860px;
  margin-inline: auto;
  padding: clamp(46px, 6vw, 76px) 0 clamp(54px, 7vw, 88px);
  text-align: center;
}

.care-hero-compact h1 {
  margin-top: 0;
}

.care-hero-compact .care-lead {
  margin: 20px auto 0;
}

.care-apartment-media img {
  object-position: center 68%;
}

.view-care-detail {
  background: #fff;
}

.care-detail-back {
  display: inline-flex;
  min-height: 38px;
  margin: 2px 0 0;
  padding: 0;
  align-items: center;
  gap: 8px;
  color: #4f5968;
  font-family: var(--ui-font);
  font-size: 13px;
  font-weight: var(--weight-bold);
  letter-spacing: -0.02em;
  transition: color 150ms ease;
}

.care-detail-back svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.care-detail-back:hover,
.care-detail-back:focus-visible {
  color: var(--ink);
}

.care-detail-hero {
  display: grid;
  padding: clamp(34px, 5vw, 66px) 0 clamp(64px, 8vw, 112px);
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  align-items: center;
  gap: clamp(42px, 6vw, 92px);
  border-bottom: 1px solid var(--ink);
}

.care-detail-hero-copy {
  min-width: 0;
}

.care-detail-label,
.care-detail-section-heading > p,
.care-detail-process > header > p,
.care-detail-locations > header > p,
.care-detail-location > div > p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.11em;
  line-height: 1.45;
  text-transform: uppercase;
}

.care-detail-hero h1 {
  max-width: 640px;
  margin: 20px 0 0;
  color: var(--ink);
  font-size: clamp(43px, 4.7vw, 68px);
  font-weight: var(--weight-bold);
  letter-spacing: -0.058em;
  line-height: 1.08;
  text-wrap: balance;
  word-break: keep-all;
}

.care-detail-hero h1:focus {
  outline: none;
}

.care-detail-summary {
  max-width: 570px;
  margin: 24px 0 0;
  color: #4f5968;
  font-size: 17px;
  line-height: 1.75;
  word-break: keep-all;
}

.care-detail-actions {
  display: flex;
  margin-top: 30px;
  flex-wrap: wrap;
  gap: 10px;
}

.care-detail-primary,
.care-detail-secondary,
.care-detail-location > a {
  display: inline-flex;
  min-height: 50px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--ink);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-family: var(--ui-font);
  font-size: 14px;
  font-weight: var(--weight-bold);
  letter-spacing: -0.02em;
  line-height: 1.3;
  text-decoration: none;
  transition: background-color 150ms ease, color 150ms ease;
}

.care-detail-hero-copy > .care-detail-primary {
  margin-top: 30px;
}

.care-detail-primary:hover,
.care-detail-primary:focus-visible,
.care-detail-secondary:hover,
.care-detail-secondary:focus-visible,
.care-detail-location > a:hover,
.care-detail-location > a:focus-visible {
  background: var(--ink);
  color: #fff;
}

.care-detail-secondary svg,
.care-detail-location > a svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.care-detail-hero-media {
  min-width: 0;
  margin: 0;
}

.care-detail-hero-media > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 8 / 5;
  border-radius: 20px;
  object-fit: cover;
}

.care-detail-apartment-hero > img {
  object-position: center 69%;
}

.care-detail-hero-media figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.care-detail-golf-hero {
  position: relative;
  overflow: hidden;
  aspect-ratio: 8 / 5;
  border-radius: 20px;
  background: #e7e9ec;
}

.care-detail-golf-hero > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 118%;
  aspect-ratio: auto;
  border-radius: 0;
  object-fit: cover;
  object-position: 66% center;
}

.care-detail-section,
.care-detail-story {
  display: grid;
  padding: clamp(70px, 8vw, 112px) 0;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  align-items: start;
  gap: clamp(48px, 7vw, 112px);
  border-bottom: 1px solid var(--ink);
}

.care-detail-section-heading h2,
.care-detail-story-copy h2,
.care-detail-process h2,
.care-detail-locations h2,
.care-detail-location h2,
.care-detail-cta h2 {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: clamp(29px, 2.8vw, 42px);
  font-weight: var(--weight-bold);
  letter-spacing: -0.05em;
  line-height: 1.24;
  text-wrap: balance;
  word-break: keep-all;
}

.care-detail-feature-list {
  border-top: 1px solid var(--ink);
}

.care-detail-feature-list article {
  display: grid;
  padding: 24px 0;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  border-bottom: 1px solid rgba(17, 19, 24, 0.3);
}

.care-detail-feature-list article > span,
.care-detail-process li > span,
.care-detail-locations li > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
  line-height: 1.55;
}

.care-detail-feature-list h3,
.care-detail-process h3 {
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  font-weight: var(--weight-bold);
  letter-spacing: -0.035em;
  line-height: 1.4;
  word-break: keep-all;
}

.care-detail-feature-list p,
.care-detail-process li > p,
.care-detail-story-copy > p:last-child,
.care-detail-cta p {
  margin: 9px 0 0;
  color: #4f5968;
  font-size: 15px;
  line-height: 1.72;
  word-break: keep-all;
}

.care-detail-story-copy {
  max-width: 440px;
}

.care-detail-story-copy h2 {
  margin-top: 18px;
}

.care-detail-story-copy > p:last-child {
  margin-top: 22px;
  font-size: 16px;
  line-height: 1.78;
}

.care-detail-gallery {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 14px;
}

.care-detail-gallery figure {
  overflow: hidden;
  margin: 0;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  background: #e7e9ec;
}

.care-detail-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.care-detail-gallery figure:first-child img {
  object-position: center 58%;
}

.care-detail-gallery figure:last-child img {
  object-position: center;
}

.care-detail-process,
.care-detail-locations {
  padding: clamp(70px, 8vw, 112px) 0;
  border-bottom: 1px solid var(--ink);
}

.care-detail-process > header,
.care-detail-locations > header {
  display: grid;
  margin-bottom: 34px;
  grid-template-columns: minmax(180px, 4fr) minmax(0, 8fr);
  align-items: end;
  gap: clamp(48px, 7vw, 112px);
}

.care-detail-process h2,
.care-detail-locations h2 {
  margin-top: 0;
}

.care-detail-process ol {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--ink);
  border-radius: 16px;
  list-style: none;
}

.care-detail-process li {
  min-width: 0;
  padding: 30px;
}

.care-detail-process li + li {
  border-left: 1px solid var(--ink);
}

.care-detail-process h3 {
  margin-top: 26px;
}

.care-detail-locations ul {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  list-style: none;
}

.care-detail-locations li {
  display: grid;
  min-width: 0;
  padding: 28px 26px;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px 16px;
}

.care-detail-locations li + li {
  border-left: 1px solid var(--ink);
}

.care-detail-locations strong {
  color: var(--ink);
  font-size: 21px;
  font-weight: var(--weight-bold);
  letter-spacing: -0.03em;
}

.care-detail-locations li > p {
  margin: 0;
  grid-column: 2;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.care-detail-location {
  display: flex;
  margin-top: clamp(70px, 8vw, 112px);
  padding: 30px 34px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid var(--ink);
  border-radius: 16px;
}

.care-detail-location h2 {
  margin-top: 8px;
  font-size: clamp(25px, 2.4vw, 34px);
}

.care-detail-location address {
  margin-top: 8px;
  color: #4f5968;
  font-size: 14px;
  font-style: normal;
  line-height: 1.6;
}

.care-detail-location > a {
  flex: 0 0 auto;
}

.care-detail-cta {
  display: flex;
  margin-top: clamp(70px, 8vw, 112px);
  padding: clamp(30px, 4vw, 48px);
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  border-radius: 20px;
  background: #f4f6f8;
}

.care-detail-cta h2 {
  margin-top: 0;
  font-size: clamp(27px, 2.5vw, 36px);
}

.care-detail-cta p {
  margin-top: 10px;
}

.care-detail-cta .care-detail-primary {
  flex: 0 0 auto;
}

@media (min-width: 721px) and (max-width: 980px) {
  .care-detail-hero {
    gap: 34px;
  }

  .care-detail-hero h1 {
    font-size: 44px;
  }

  .care-detail-section,
  .care-detail-story,
  .care-detail-process > header,
  .care-detail-locations > header {
    gap: 40px;
  }

  .care-detail-process li {
    padding: 24px;
  }
}

@media (max-width: 720px) {
  .care-hero-compact {
    padding: 38px 0 54px;
  }

  .care-hero-compact h1 {
    font-size: 36px;
  }

  .care-hero-compact .care-lead {
    margin-top: 16px;
    font-size: 16px;
  }

  .care-detail-back {
    margin-top: -8px;
  }

  .care-detail-hero {
    padding: 22px 0 54px;
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  .care-detail-hero h1 {
    margin-top: 14px;
    font-size: 38px;
    line-height: 1.14;
  }

  .care-detail-summary {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.68;
  }

  .care-detail-actions,
  .care-detail-hero-copy > .care-detail-primary {
    margin-top: 24px;
  }

  .care-detail-primary,
  .care-detail-secondary,
  .care-detail-location > a {
    width: 100%;
    min-height: 50px;
  }

  .care-detail-hero-media > img,
  .care-detail-golf-hero {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
  }

  .care-detail-section,
  .care-detail-story {
    padding: 54px 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .care-detail-section-heading h2,
  .care-detail-story-copy h2,
  .care-detail-process h2,
  .care-detail-locations h2,
  .care-detail-location h2,
  .care-detail-cta h2 {
    font-size: 28px;
  }

  .care-detail-feature-list article {
    padding: 21px 0;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
  }

  .care-detail-feature-list h3,
  .care-detail-process h3 {
    font-size: 18px;
  }

  .care-detail-gallery {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .care-detail-gallery figure {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
  }

  .care-detail-process,
  .care-detail-locations {
    padding: 54px 0;
  }

  .care-detail-process > header,
  .care-detail-locations > header {
    margin-bottom: 24px;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .care-detail-process ol,
  .care-detail-locations ul {
    grid-template-columns: minmax(0, 1fr);
  }

  .care-detail-process li {
    padding: 24px 22px;
  }

  .care-detail-process li + li,
  .care-detail-locations li + li {
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .care-detail-process h3 {
    margin-top: 18px;
  }

  .care-detail-locations li {
    padding: 22px 4px;
  }

  .care-detail-location {
    margin-top: 54px;
    padding: 24px 20px;
    flex-direction: column;
    align-items: stretch;
  }

  .care-detail-location address {
    overflow-wrap: anywhere;
  }

  .care-detail-cta {
    margin-top: 54px;
    padding: 28px 22px;
    flex-direction: column;
    align-items: stretch;
    border-radius: 16px;
  }
}

/* v61 · equal settlement service-card heights */
@media (min-width: 721px) {
  .view-settlement .care-service,
  .view-settlement .care-travel-teaser {
    height: 600px;
    min-height: 600px;
  }
}

@media (min-width: 721px) and (max-width: 1240px) {
  .view-settlement .care-service,
  .view-settlement .care-travel-teaser {
    height: 540px;
    min-height: 540px;
  }
}

/* v63 · Air Premia-inspired service apartment and golf detail pages */
.view-care-detail {
  --air-ink: #111318;
  --air-muted: #626772;
  --air-line: #d9dce2;
  --air-surface: #f5f6f8;
  color: var(--air-ink);
}

.view-care-detail .care-detail-back {
  min-height: 40px;
  margin: 0 0 clamp(46px, 5.5vw, 76px);
  color: var(--air-muted);
  font-size: 13px;
}

.view-care-detail .care-detail-back:hover,
.view-care-detail .care-detail-back:focus-visible {
  color: var(--air-ink);
}

.air-detail-heading {
  padding: 0 0 clamp(42px, 5vw, 64px);
}

.air-detail-eyebrow,
.air-detail-section-heading > p:first-child,
.air-detail-bottom-cta > div > p {
  margin: 0;
  color: var(--air-muted);
  font-size: 12px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.air-detail-title-row {
  display: grid;
  margin-top: 18px;
  grid-template-columns: minmax(0, 8fr) minmax(220px, 4fr);
  align-items: end;
  gap: clamp(36px, 6vw, 92px);
}

.air-detail-title-row h1 {
  margin: 0;
  color: var(--air-ink);
  font-size: clamp(48px, 4.6vw, 64px);
  font-weight: var(--weight-bold);
  letter-spacing: -0.06em;
  line-height: 1.08;
  word-break: keep-all;
}

.air-detail-title-row h1:focus {
  outline: none;
}

.air-detail-dek {
  max-width: 700px;
  margin: 22px 0 0;
  color: var(--air-muted);
  font-size: 17px;
  line-height: 1.72;
  word-break: keep-all;
}

.air-detail-primary {
  display: inline-flex;
  min-height: 54px;
  padding: 0 20px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--air-ink);
  border-radius: 8px;
  background: #fff;
  color: var(--air-ink);
  font-family: var(--ui-font);
  font-size: 14px;
  font-weight: var(--weight-bold);
  letter-spacing: -0.02em;
  line-height: 1.3;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease;
}

.air-detail-primary svg,
.golf-location-cta svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 160ms ease;
}

.air-detail-primary:hover,
.air-detail-primary:focus-visible {
  background: var(--air-ink);
  color: #fff;
}

.air-detail-primary:hover svg,
.air-detail-primary:focus-visible svg,
.golf-location-cta:hover svg,
.golf-location-cta:focus-visible svg {
  transform: translateX(3px);
}

.air-detail-feature-media {
  position: relative;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 16 / 8.6;
  border-radius: 24px;
  background: #e8eaed;
}

.air-detail-feature-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.apartment-feature-media > img {
  object-position: center 56%;
}

.golf-feature-media > img {
  object-position: center 50%;
}

.air-detail-feature-media figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  min-height: 60px;
  padding: 14px 22px;
  align-items: center;
  gap: 16px;
  background: rgba(17, 19, 24, 0.76);
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  line-height: 1.5;
}

.air-detail-feature-media figcaption span {
  flex: 0 0 auto;
  color: #fff;
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.air-detail-overview,
.air-detail-editorial,
.air-detail-process-panel,
.air-detail-location-strip {
  padding: clamp(72px, 7.5vw, 104px) 0;
  border-bottom: 1px solid var(--air-line);
}

.air-detail-section-heading {
  display: grid;
  grid-template-columns: minmax(150px, 3fr) minmax(240px, 4fr) minmax(0, 5fr);
  align-items: end;
  gap: clamp(24px, 4vw, 64px);
}

.air-detail-section-heading h2,
.air-detail-editorial-copy h2,
.air-detail-bottom-cta h2 {
  margin: 0;
  color: var(--air-ink);
  font-size: clamp(30px, 2.8vw, 40px);
  font-weight: var(--weight-bold);
  letter-spacing: -0.05em;
  line-height: 1.22;
  word-break: keep-all;
}

.air-detail-section-heading > p:last-child,
.air-detail-editorial-copy > p:last-child,
.air-detail-bottom-cta > div > span {
  margin: 0;
  color: var(--air-muted);
  font-size: 15px;
  line-height: 1.72;
  word-break: keep-all;
}

.view-service-apartment .apartment-support-heading {
  display: block;
  max-width: 760px;
}

.view-service-apartment .apartment-support-heading > p:last-child {
  max-width: 680px;
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.75;
}

.air-detail-benefits {
  display: grid;
  margin-top: clamp(38px, 4vw, 56px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--air-ink);
  border-bottom: 1px solid var(--air-ink);
}

.air-detail-benefits article {
  min-width: 0;
  padding: 30px clamp(20px, 2.3vw, 32px) 34px;
}

.air-detail-benefits article + article {
  border-left: 1px solid var(--air-line);
}

.air-detail-benefits article > span,
.air-detail-process-panel li > span,
.air-detail-location-strip li > span {
  display: block;
  color: var(--air-muted);
  font-size: 11px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.air-detail-benefits h3,
.air-detail-process-panel h3 {
  margin: 28px 0 0;
  color: var(--air-ink);
  font-size: 19px;
  font-weight: var(--weight-bold);
  letter-spacing: -0.035em;
  line-height: 1.35;
  word-break: keep-all;
}

.air-detail-benefits p,
.air-detail-process-panel li p {
  margin: 10px 0 0;
  color: var(--air-muted);
  font-size: 14px;
  line-height: 1.68;
  word-break: keep-all;
}

.air-detail-editorial {
  display: grid;
  grid-template-columns: minmax(230px, 4fr) minmax(0, 8fr);
  align-items: start;
  gap: clamp(46px, 7vw, 108px);
}

.air-detail-editorial-copy h2 {
  margin-top: 16px;
}

.air-detail-editorial-copy > p:last-child {
  margin-top: 22px;
}

.air-detail-gallery {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.air-detail-gallery figure {
  min-width: 0;
  margin: 0;
}

.air-detail-gallery[data-static-gallery] figure {
  cursor: zoom-in;
}

.air-detail-gallery[data-static-gallery] figure:focus-visible {
  outline: 2px solid #111318;
  outline-offset: 5px;
  border-radius: 18px;
}

.air-detail-gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  object-fit: cover;
}

.air-detail-gallery figcaption {
  margin-top: 10px;
  color: var(--air-muted);
  font-size: 11px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.air-detail-process-panel {
  display: grid;
  grid-template-columns: minmax(190px, 3fr) minmax(0, 9fr);
  gap: clamp(36px, 6vw, 90px);
}

.air-detail-section-heading-inline {
  display: block;
}

.air-detail-section-heading-inline h2 {
  margin-top: 12px;
}

.air-detail-process-panel ol {
  display: grid;
  overflow: hidden;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--air-line);
  border-radius: 18px;
  background: var(--air-surface);
  list-style: none;
}

.air-detail-process-panel li {
  display: grid;
  min-width: 0;
  min-height: 200px;
  padding: 28px;
  align-content: space-between;
}

.air-detail-process-panel li + li {
  border-left: 1px solid var(--air-line);
}

.air-detail-process-panel h3 {
  margin-top: 0;
}

.air-detail-location-strip {
  display: grid;
  grid-template-columns: minmax(190px, 3fr) minmax(0, 9fr);
  gap: clamp(36px, 6vw, 90px);
}

.air-detail-location-strip ul {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--air-ink);
  border-bottom: 1px solid var(--air-ink);
  list-style: none;
}

.air-detail-location-strip li {
  display: grid;
  min-width: 0;
  padding: 25px 24px;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 5px 14px;
  align-content: center;
}

.air-detail-location-strip li + li {
  border-left: 1px solid var(--air-line);
}

.air-detail-location-strip strong {
  color: var(--air-ink);
  font-size: 19px;
  font-weight: var(--weight-bold);
  letter-spacing: -0.03em;
}

.air-detail-location-strip small {
  grid-column: 2;
  color: var(--air-muted);
  font-size: 12px;
  line-height: 1.5;
}

.air-detail-bottom-cta {
  display: flex;
  margin-top: clamp(72px, 7.5vw, 104px);
  padding: clamp(34px, 4vw, 52px);
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  border-radius: 20px;
  background: var(--air-ink);
  color: #fff;
}

.air-detail-bottom-cta > div > p,
.air-detail-bottom-cta > div > span {
  color: rgba(255, 255, 255, 0.64);
}

.air-detail-bottom-cta h2 {
  margin-top: 12px;
  color: #fff;
}

.air-detail-bottom-cta > div > span {
  display: block;
  margin-top: 12px;
}

.air-detail-primary-dark {
  flex: 0 0 auto;
  min-width: 170px;
  border-color: #fff;
  background: #fff;
  color: var(--air-ink);
}

.air-detail-primary-dark:hover,
.air-detail-primary-dark:focus-visible {
  border-color: #fff;
  background: transparent;
  color: #fff;
}

.golf-air-heading {
  padding-bottom: clamp(36px, 4vw, 52px);
}

.golf-process-content {
  min-width: 0;
}

.golf-process-footer {
  display: flex;
  min-height: 86px;
  padding: 24px 4px 0;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.golf-location-cta {
  display: inline-flex;
  min-height: 54px;
  padding: 0 22px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--air-ink);
  border-radius: 8px;
  background: var(--air-ink);
  box-shadow: 0 10px 24px rgba(17, 21, 26, 0.12);
  color: #fff;
  font-size: 15px;
  font-weight: var(--weight-bold);
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.golf-location-cta:hover,
.golf-location-cta:focus-visible {
  background: #fff;
  box-shadow: 0 12px 28px rgba(17, 21, 26, 0.16);
  color: var(--air-ink);
  transform: translateY(-2px);
}

.golf-location-cta:focus-visible {
  outline: 3px solid rgba(17, 21, 26, 0.22);
  outline-offset: 3px;
}

.golf-process-footer p {
  margin: 0;
  color: var(--air-muted);
  font-size: 12px;
  line-height: 1.6;
  text-align: right;
}

@media (max-width: 960px) {
  .air-detail-title-row {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 28px;
  }

  .air-detail-primary {
    width: fit-content;
    min-width: 210px;
  }

  .air-detail-section-heading {
    grid-template-columns: minmax(120px, 2fr) minmax(220px, 4fr) minmax(0, 6fr);
    gap: 24px;
  }

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

  .air-detail-benefits article:nth-child(3) {
    border-top: 1px solid var(--air-line);
    border-left: 0;
  }

  .air-detail-benefits article:nth-child(4) {
    border-top: 1px solid var(--air-line);
  }

  .air-detail-editorial,
  .air-detail-process-panel,
  .air-detail-location-strip {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .air-detail-editorial-copy {
    max-width: 620px;
  }
}

@media (max-width: 720px) {
  .view-care-detail .care-detail-back {
    margin: -6px 0 40px;
  }

  .air-detail-heading {
    padding-bottom: 38px;
  }

  .air-detail-title-row {
    margin-top: 12px;
    gap: 24px;
  }

  .air-detail-title-row h1 {
    font-size: 40px;
    line-height: 1.14;
  }

  .air-detail-dek {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.66;
  }

  .air-detail-primary {
    width: 100%;
    min-width: 0;
    min-height: 52px;
  }

  .air-detail-feature-media {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
  }

  .air-detail-feature-media figcaption {
    min-height: 54px;
    padding: 12px 16px;
    gap: 10px;
    font-size: 11px;
  }

  .air-detail-overview,
  .air-detail-editorial,
  .air-detail-process-panel,
  .air-detail-location-strip {
    padding: 54px 0;
  }

  .air-detail-section-heading {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 10px;
  }

  .air-detail-section-heading h2,
  .air-detail-editorial-copy h2,
  .air-detail-bottom-cta h2 {
    font-size: 29px;
  }

  .air-detail-section-heading > p:last-child {
    margin-top: 8px;
  }

  .air-detail-benefits {
    margin-top: 32px;
    grid-template-columns: minmax(0, 1fr);
  }

  .air-detail-benefits article {
    display: grid;
    padding: 23px 4px;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 7px 12px;
  }

  .air-detail-benefits article + article,
  .air-detail-benefits article:nth-child(3) {
    border-top: 1px solid var(--air-line);
    border-left: 0;
  }

  .air-detail-benefits h3 {
    margin-top: 0;
    font-size: 18px;
  }

  .air-detail-benefits p {
    margin-top: 0;
    grid-column: 2;
  }

  .air-detail-gallery {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .air-detail-gallery img {
    border-radius: 14px;
  }

  .air-detail-process-panel ol,
  .air-detail-location-strip ul {
    grid-template-columns: minmax(0, 1fr);
  }

  .air-detail-process-panel li {
    min-height: 0;
    padding: 24px 22px;
    grid-template-columns: 34px minmax(0, 1fr);
    align-content: start;
    gap: 14px;
  }

  .air-detail-process-panel li + li,
  .air-detail-location-strip li + li {
    border-top: 1px solid var(--air-line);
    border-left: 0;
  }

  .air-detail-process-panel h3 {
    font-size: 18px;
  }

  .air-detail-location-strip li {
    padding: 21px 4px;
  }

  .air-detail-bottom-cta {
    margin-top: 54px;
    padding: 28px 22px;
    flex-direction: column;
    align-items: stretch;
    border-radius: 16px;
  }

  .air-detail-primary-dark {
    min-width: 0;
  }

  .golf-process-footer {
    min-height: 0;
    padding: 22px 0 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .golf-process-footer p {
    text-align: left;
  }

  .golf-location-cta {
    width: 100%;
    min-height: 58px;
  }
}

/* v70 · compact desktop dropdown navigation */
.primary-nav-group {
  position: relative;
}

.primary-nav-group > button[data-route] {
  padding-right: 5px;
  border-radius: var(--control-radius) 0 0 var(--control-radius);
}

.primary-nav-group:hover > button[data-route],
.primary-nav-group:focus-within > button[data-route],
.primary-nav-group.is-open > button[data-route] {
  background: var(--surface-soft);
}

.header-submenu {
  position: absolute;
  z-index: 80;
  top: calc(100% - 5px);
  right: auto;
  left: 50%;
  display: grid;
  width: max-content;
  min-width: 224px;
  max-width: calc(100vw - 32px);
  padding: 8px;
  grid-template-columns: minmax(0, 1fr);
  gap: 2px;
  transform: translateX(-50%);
  border: 1px solid var(--ink);
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(17, 19, 24, 0.12);
}

.header-submenu-guesthouse {
  min-width: 200px;
}

.primary-nav .header-submenu button {
  display: flex;
  width: 100%;
  height: auto;
  min-height: 44px;
  padding: 10px 13px;
  align-items: center;
  justify-content: flex-start;
  border: 0;
  border-radius: 8px;
  background: #fff;
  text-align: left;
  white-space: nowrap;
}

.primary-nav .header-submenu button + button {
  border-left: 0;
}

.primary-nav .header-submenu button:hover,
.primary-nav .header-submenu button:focus-visible,
.primary-nav .header-submenu button[aria-current="page"],
.primary-nav .header-submenu button[aria-pressed="true"] {
  background: var(--surface-soft);
}

.header-submenu button strong {
  font-size: 14px;
  font-weight: var(--weight-bold);
  letter-spacing: -0.025em;
  line-height: 1.45;
}

.mobile-drawer .drawer-subnav button[aria-pressed="true"] {
  border-left-color: var(--ink);
  background: var(--surface-soft);
  color: var(--ink);
}

/* v71 · refined compact header dropdowns */
@media (min-width: 721px) {
  .primary-nav-group {
    height: 46px;
    border-radius: var(--control-radius);
    background: transparent;
    transition:
      background-color 160ms ease,
      box-shadow 160ms ease;
  }

  .primary-nav-group:hover,
  .primary-nav-group:focus-within,
  .primary-nav-group.is-open,
  .primary-nav-group:has(> button[data-route][aria-current="page"]) {
    background: var(--surface-soft);
  }

  .primary-nav-group.is-open {
    box-shadow: inset 0 -2px 0 var(--ink);
  }

  .primary-nav-group::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    height: 10px;
    pointer-events: none;
  }

  .primary-nav-group.is-open::after {
    pointer-events: auto;
  }

  .primary-nav-group > button[data-route] {
    height: 46px;
    padding-right: 4px;
    border: 0;
    background: transparent !important;
  }

  .primary-nav .nav-submenu-toggle {
    width: 32px;
    min-width: 32px;
    height: 46px;
    border: 0;
    background: transparent;
  }

  .primary-nav .nav-submenu-toggle:hover,
  .primary-nav .nav-submenu-toggle:focus-visible {
    background: transparent;
  }

  .primary-nav .nav-submenu-toggle:focus-visible {
    outline: 0;
  }

  .primary-nav-group:has(.nav-submenu-toggle:focus-visible) {
    outline: 2px solid var(--ink);
    outline-offset: 2px;
  }

  .nav-submenu-toggle svg {
    width: 15px;
    height: 15px;
    stroke-width: 1.8;
    transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .header-submenu {
    top: calc(100% + 10px);
    left: 0;
    min-width: 228px;
    padding: 6px;
    gap: 0;
    transform: none;
    border-color: rgba(17, 19, 24, 0.26);
    border-radius: 14px;
    box-shadow:
      0 22px 56px rgba(17, 19, 24, 0.14),
      0 3px 10px rgba(17, 19, 24, 0.06);
    transform-origin: top left;
    animation: header-submenu-enter 180ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .header-submenu-guesthouse {
    min-width: 208px;
  }

  .primary-nav .header-submenu button {
    position: relative;
    min-height: 43px;
    padding: 10px 12px 10px 14px;
    border: 0;
    border-radius: 9px;
    background: #fff;
    color: #202228;
    transition:
      background-color 140ms ease,
      color 140ms ease;
  }

  .primary-nav .header-submenu button + button {
    margin-top: 1px;
    border: 0;
  }

  .primary-nav .header-submenu button:hover,
  .primary-nav .header-submenu button:focus-visible {
    background: #f1f2f3;
    color: var(--ink);
  }

  .primary-nav .header-submenu button[aria-current="page"],
  .primary-nav .header-submenu button[aria-pressed="true"] {
    background: var(--ink);
    color: #fff;
  }

  .primary-nav .header-submenu button:focus-visible {
    outline: 2px solid var(--ink);
    outline-offset: 1px;
  }

  .header-submenu button strong {
    color: inherit;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.02em;
  }

  .primary-nav .header-submenu button[aria-current="page"] strong,
  .primary-nav .header-submenu button[aria-pressed="true"] strong {
    font-weight: var(--weight-bold);
  }

  .primary-nav .header-submenu button::after {
    content: "";
    position: static;
    inset: auto;
    display: block;
    flex: 0 0 auto;
    width: 6px;
    height: 6px;
    margin-left: auto;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    opacity: 0;
    transform: translateX(-3px) rotate(45deg);
    transition:
      opacity 140ms ease,
      transform 140ms ease;
  }

  .primary-nav .header-submenu button:hover::after,
  .primary-nav .header-submenu button:focus-visible::after,
  .primary-nav .header-submenu button[aria-current="page"]::after,
  .primary-nav .header-submenu button[aria-pressed="true"]::after {
    opacity: 0.82;
    transform: translateX(0) rotate(45deg);
  }
}

@keyframes header-submenu-enter {
  from {
    opacity: 0;
    transform: translateY(-5px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-submenu,
  .nav-submenu-toggle svg,
  .primary-nav-group,
  .primary-nav .header-submenu button,
  .primary-nav .header-submenu button::after {
    animation: none !important;
    transition: none !important;
  }
}

/* v72 · ultra-minimal desktop dropdowns */
@media (min-width: 721px) {
  .primary-nav-group {
    border-radius: 0;
    background: transparent !important;
    box-shadow: none !important;
  }

  .primary-nav-group:hover,
  .primary-nav-group:focus-within,
  .primary-nav-group.is-open,
  .primary-nav-group:has(> button[data-route][aria-current="page"]) {
    background: transparent !important;
  }

  .primary-nav-group::before {
    position: absolute;
    right: 10px;
    bottom: 5px;
    left: 10px;
    height: 1px;
    background: var(--ink);
    content: "";
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 150ms ease;
  }

  .primary-nav-group:hover::before,
  .primary-nav-group:focus-within::before,
  .primary-nav-group.is-open::before,
  .primary-nav-group:has(> button[data-route][aria-current="page"])::before {
    transform: scaleX(1);
  }

  .primary-nav-group > button[data-route] {
    padding-right: 1px;
  }

  .primary-nav .nav-submenu-toggle {
    width: 26px;
    min-width: 26px;
  }

  .primary-nav-group:has(.nav-submenu-toggle:focus-visible) {
    outline: 0;
  }

  .primary-nav .nav-submenu-toggle:focus-visible {
    outline: 0;
  }

  .header-submenu {
    top: calc(100% + 7px);
    min-width: 204px;
    padding: 5px;
    border-color: rgba(17, 19, 24, 0.14);
    border-radius: 9px;
    box-shadow: 0 10px 24px rgba(17, 19, 24, 0.08);
  }

  .header-submenu-guesthouse {
    min-width: 186px;
  }

  .primary-nav .header-submenu button {
    min-height: 40px;
    padding: 8px 10px 8px 12px;
    border-radius: 5px;
  }

  .primary-nav .header-submenu button + button {
    margin-top: 0;
  }

  .primary-nav .header-submenu button:hover,
  .primary-nav .header-submenu button:focus-visible {
    background: #f7f7f7;
  }

  .primary-nav .header-submenu button[aria-current="page"],
  .primary-nav .header-submenu button[aria-pressed="true"] {
    background: transparent;
    color: var(--ink);
  }

  .header-submenu button strong {
    font-size: 13.5px;
    font-weight: 600;
  }

  .primary-nav .header-submenu button::after {
    width: 4px;
    height: 4px;
    border: 0;
    border-radius: 50%;
    background: currentColor;
    opacity: 0;
    transform: none;
  }

  .primary-nav .header-submenu button:hover::after,
  .primary-nav .header-submenu button:focus-visible::after {
    opacity: 0;
    transform: none;
  }

  .primary-nav .header-submenu button[aria-current="page"]::after,
  .primary-nav .header-submenu button[aria-pressed="true"]::after {
    opacity: 0.72;
    transform: none;
  }

  .header-submenu:has(button[aria-pressed="true"])
    button[aria-current="page"]:not([aria-pressed="true"])::after {
    opacity: 0;
  }

  .header-submenu:has(button[aria-pressed="true"])
    button[aria-current="page"]:not([aria-pressed="true"])
    strong {
    font-weight: 600;
  }
}

@media (prefers-reduced-motion: reduce) {
  .primary-nav-group::before {
    transition: none !important;
  }
}

/* v78 · business partners directory */
.view-partners {
  --partners-ink: #111318;
  --partners-muted: #666a73;
  color: var(--partners-ink);
}

.partners-hero {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(54px, 7vw, 104px) 0 clamp(64px, 7vw, 96px);
  text-align: center;
}

.partners-hero h1 {
  margin: 0;
  color: var(--partners-ink);
  font-size: clamp(38px, 4.25vw, 68px);
  font-weight: var(--weight-bold);
  letter-spacing: -0.055em;
  line-height: 1.08;
  word-break: keep-all;
}

.partners-hero h1:focus {
  outline: 0;
}

.partners-hero p {
  max-width: 620px;
  margin: 28px auto 0;
  color: var(--partners-muted);
  font-size: clamp(15px, 1.25vw, 18px);
  letter-spacing: -0.02em;
  line-height: 1.75;
  word-break: keep-all;
}

.partners-board {
  display: grid;
  max-width: 1680px;
  margin: 0 auto;
  border-bottom: 1px solid var(--partners-ink);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.partners-group {
  min-width: 0;
  min-height: 286px;
  padding: 26px clamp(18px, 2vw, 32px) 32px;
  border-top: 1px solid var(--partners-ink);
  border-left: 1px solid var(--partners-ink);
}

.partners-group:nth-child(1),
.partners-group:nth-child(4),
.partners-group-full {
  border-left: 0;
}

.partners-group-wide {
  grid-column: span 2;
}

.partners-group-full {
  min-height: 0;
  grid-column: 1 / -1;
}

.partners-group header {
  display: flex;
  min-width: 0;
  padding-bottom: 18px;
  align-items: baseline;
  gap: 14px;
  border-bottom: 1px solid rgba(17, 19, 24, 0.34);
}

.partners-group header span {
  flex: 0 0 auto;
  color: var(--partners-muted);
  font-size: 12px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.08em;
  line-height: 1;
}

.partners-group h2 {
  min-width: 0;
  margin: 0;
  font-size: clamp(18px, 1.5vw, 23px);
  font-weight: var(--weight-bold);
  letter-spacing: -0.035em;
  line-height: 1.3;
  word-break: keep-all;
}

.partners-group ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.partners-group li {
  color: var(--partners-ink);
  font-size: clamp(15px, 1.1vw, 17px);
  font-weight: var(--weight-semibold);
  letter-spacing: -0.025em;
  line-height: 1.55;
  word-break: keep-all;
}

.partners-group li + li {
  margin-top: 8px;
}

.partners-name-list-columns {
  columns: 3;
  column-gap: clamp(20px, 2.5vw, 44px);
}

.partners-name-list-columns li {
  break-inside: avoid;
}

.partners-name-list-columns li + li {
  margin-top: 0;
  margin-bottom: 8px;
}

.partners-name-list-columns-public {
  columns: 3;
}

.partners-note {
  max-width: 1680px;
  margin: 18px auto 0;
  color: var(--partners-muted);
  font-size: 12px;
  letter-spacing: -0.015em;
  line-height: 1.6;
}

@media (min-width: 1241px) and (max-width: 1500px) {
  .primary-nav {
    gap: clamp(8px, 1.15vw, 17px);
  }

  .primary-nav > button,
  .primary-nav-group > button[data-route] {
    font-size: 13px;
  }
}

@media (min-width: 721px) and (max-width: 1080px) {
  .partners-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partners-group:nth-child(n) {
    border-left: 1px solid var(--partners-ink);
  }

  .partners-group:nth-child(1),
  .partners-group:nth-child(2),
  .partners-group:nth-child(3),
  .partners-group:nth-child(5),
  .partners-group:nth-child(7),
  .partners-group-full {
    border-left: 0;
  }

  .partners-group-wide,
  .partners-group-full {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .view-partners {
    padding-top: 0 !important;
  }

  .partners-hero {
    padding: 46px 0 58px;
  }

  .partners-hero h1 {
    font-size: clamp(34px, 10.5vw, 46px);
    line-height: 1.12;
  }

  .partners-hero p {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.7;
  }

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

  .partners-group,
  .partners-group:nth-child(n) {
    min-height: 0;
    padding: 22px 0 28px;
    border-left: 0;
    grid-column: auto;
  }

  .partners-group header {
    padding-bottom: 14px;
  }

  .partners-group ul,
  .partners-name-list-columns,
  .partners-name-list-columns-public {
    margin-top: 18px;
    columns: 1;
  }

  .partners-group li {
    font-size: 16px;
  }

  .partners-name-list-columns li + li,
  .partners-group li + li {
    margin-top: 7px;
    margin-bottom: 0;
  }

  .partners-note {
    margin-top: 14px;
    font-size: 11px;
    line-height: 1.65;
  }
}

/* v81 · split vehicle service pages */
.view-vehicle-index {
  color: #111318;
}

.vehicle-index-heading {
  max-width: 820px;
  margin: 0 auto clamp(44px, 6vw, 76px);
  padding-top: clamp(18px, 2vw, 32px);
  text-align: center;
}

.vehicle-index-heading > p {
  margin: 0 0 14px;
  color: #626772;
  font-size: 12px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.vehicle-index-heading h1 {
  margin: 0;
  font-size: clamp(46px, 5.5vw, 72px);
  font-weight: var(--weight-bold);
  letter-spacing: -0.065em;
  line-height: 1.06;
}

.vehicle-index-heading h1:focus {
  outline: none;
}

.vehicle-index-heading > span {
  display: block;
  margin-top: 22px;
  color: #626772;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.7;
  word-break: keep-all;
}

.vehicle-route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 34px);
}

.vehicle-route-card {
  display: grid;
  overflow: hidden;
  min-width: 0;
  padding: 0;
  grid-template-rows: auto 1fr;
  border: 1px solid #111318;
  border-radius: 22px;
  background: #fff;
  color: #111318;
  font-family: var(--ui-font);
  text-align: left;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.vehicle-route-card:hover,
.vehicle-route-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(17, 19, 24, 0.12);
}

.vehicle-route-card:focus-visible {
  outline: 3px solid rgba(17, 19, 24, 0.22);
  outline-offset: 4px;
}

.vehicle-route-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #e8eaed;
}

.vehicle-route-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 64%;
  transition: transform 480ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.vehicle-route-card:hover .vehicle-route-media img,
.vehicle-route-card:focus-visible .vehicle-route-media img {
  transform: scale(1.025);
}

.vehicle-route-placeholder {
  background: #e3e5e8;
}

.vehicle-route-copy {
  display: grid;
  min-height: 230px;
  padding: clamp(24px, 3vw, 38px);
  align-content: start;
}

.vehicle-route-copy small {
  color: #6d727c;
  font-size: 11px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.vehicle-route-copy strong {
  margin-top: 16px;
  font-size: clamp(25px, 2.4vw, 34px);
  font-weight: var(--weight-bold);
  letter-spacing: -0.05em;
  line-height: 1.2;
  word-break: keep-all;
}

.vehicle-route-copy > span {
  margin-top: 12px;
  color: #626772;
  font-size: 15px;
  line-height: 1.65;
  word-break: keep-all;
}

.vehicle-route-copy em {
  display: flex;
  margin-top: auto;
  padding-top: 28px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #d9dce2;
  font-size: 13px;
  font-style: normal;
  font-weight: var(--weight-bold);
}

.vehicle-route-copy svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 160ms ease;
}

.vehicle-route-card:hover .vehicle-route-copy svg,
.vehicle-route-card:focus-visible .vehicle-route-copy svg {
  transform: translateX(3px);
}

.vehicle-airport-feature {
  background: #e3e5e8;
}

.vehicle-airport-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: #e3e5e8;
}

.vehicle-airport-benefits {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.airport-rate-section {
  padding-top: clamp(72px, 7.5vw, 104px);
}

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

.airport-rate-grid .pricing-card {
  max-width: 760px;
}

.view-rental-car .feature-grid {
  grid-template-columns: minmax(0, 1fr);
}

.view-rental-car .rental-feature-card {
  max-width: none;
}

.view-rental-car .rental-feature-card .service-image {
  aspect-ratio: 16 / 7.8;
  object-position: center 67%;
}

.view-rental-car .vehicle-rate-grid {
  grid-template-columns: minmax(0, 1fr);
}

.view-rental-car .vehicle-rate-grid .pricing-card {
  max-width: 760px;
}

.header-submenu-vehicle {
  min-width: 210px;
}

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

@media (max-width: 720px) {
  .vehicle-index-heading {
    margin-bottom: 36px;
    padding-top: 4px;
  }

  .vehicle-index-heading h1 {
    font-size: 42px;
  }

  .vehicle-index-heading > span {
    margin-top: 16px;
    font-size: 15px;
  }

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

  .vehicle-route-card {
    border-radius: 16px;
  }

  .vehicle-route-copy {
    min-height: 210px;
    padding: 24px 22px;
  }

  .vehicle-route-copy strong {
    font-size: 27px;
  }

  .vehicle-route-copy em {
    padding-top: 22px;
  }

  .vehicle-airport-benefits {
    grid-template-columns: minmax(0, 1fr);
  }

  .view-rental-car .rental-feature-card .service-image {
    aspect-ratio: 4 / 3;
  }
}

/* v82 · official partner logo directory */
.view-partners {
  --partners-ink: #111318;
  --partners-muted: #656970;
}

/* v83 · split Korean food and catering pages */
.header-submenu-food {
  min-width: 190px;
}

.food-route-card .vehicle-route-media img {
  object-position: center;
}

.view-food-detail .feature-grid {
  grid-template-columns: minmax(0, 1fr);
}

.view-food-detail .food-detail-feature-card {
  max-width: none;
}

.view-food-detail .food-detail-feature-card .service-image {
  aspect-ratio: 16 / 7.8;
  object-position: center 58%;
}

.view-food-detail .catering-feature-card .service-image {
  object-position: center;
}

.view-food-detail .food-gallery-section {
  margin-top: clamp(72px, 7.5vw, 104px);
}

@media (max-width: 720px) {
  .view-food-detail .food-detail-feature-card .service-image {
    aspect-ratio: 4 / 3;
  }
}

.partners-hero {
  padding-bottom: clamp(54px, 6vw, 78px);
}

.partners-board {
  display: block;
  max-width: 1680px;
  border-bottom: 1px solid var(--partners-ink);
}

.partners-group,
.partners-group:nth-child(n),
.partners-group-full {
  display: grid;
  min-height: 0;
  padding: clamp(26px, 2.4vw, 40px) 0;
  border-top: 1px solid var(--partners-ink);
  border-left: 0;
  grid-template-columns: minmax(170px, 220px) minmax(0, 1fr);
  grid-column: auto;
  gap: clamp(26px, 3vw, 54px);
}

.partners-group header {
  display: block;
  padding: 5px 0 0;
  border-bottom: 0;
}

.partners-group header span {
  display: block;
  color: var(--partners-muted);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.partners-group h2 {
  margin-top: 13px;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.35;
}

.partners-group ul.partners-logo-list,
.partners-name-list-columns.partners-logo-list,
.partners-name-list-columns-public.partners-logo-list {
  display: grid;
  min-width: 0;
  margin: 0;
  padding: 0;
  columns: initial;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.partners-group .partner-logo-card,
.partners-group .partner-logo-card + .partner-logo-card {
  display: flex;
  min-width: 0;
  min-height: 108px;
  margin: 0;
  padding: 22px 18px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  border: 1px solid #d8dadd;
  border-radius: 12px;
  background: #fff;
}

.partner-logo-card img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 86%;
  max-height: 56px;
  object-fit: contain;
  object-position: center;
}

.partners-group .partner-logo-card.partner-logo-card-dark {
  border-color: var(--partners-ink);
  background: var(--partners-ink);
}

.partner-logo-card-fallback span {
  color: #31343a;
  font-size: 17px;
  font-weight: var(--weight-bold);
  letter-spacing: -0.035em;
}

.partners-note {
  display: none;
}

@media (max-width: 1240px) {
  .partners-group ul.partners-logo-list,
  .partners-name-list-columns.partners-logo-list,
  .partners-name-list-columns-public.partners-logo-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .partners-group,
  .partners-group:nth-child(n),
  .partners-group-full {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }

  .partners-group header {
    display: flex;
    padding-top: 0;
    align-items: baseline;
    gap: 13px;
  }

  .partners-group header span {
    display: inline-block;
  }

  .partners-group h2 {
    margin-top: 0;
  }

  .partners-group ul.partners-logo-list,
  .partners-name-list-columns.partners-logo-list,
  .partners-name-list-columns-public.partners-logo-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .partners-hero {
    padding-bottom: 48px;
  }

  .partners-group,
  .partners-group:nth-child(n),
  .partners-group-full {
    padding: 26px 0 30px;
    gap: 18px;
  }

  .partners-group ul.partners-logo-list,
  .partners-name-list-columns.partners-logo-list,
  .partners-name-list-columns-public.partners-logo-list {
    margin-top: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .partners-group .partner-logo-card,
  .partners-group .partner-logo-card + .partner-logo-card {
    min-height: 88px;
    padding: 18px 12px;
    border-radius: 10px;
  }

  .partner-logo-card img {
    max-width: 88%;
    max-height: 44px;
  }

  .partner-logo-card-fallback span {
    font-size: 15px;
  }
}

/* v84 · airy borderless partner directory */
.view-partners {
  --partners-rule: rgba(17, 19, 24, 0.11);
  overflow-x: clip;
}

.partners-hero {
  padding-bottom: clamp(48px, 5vw, 68px);
}

.partners-hero p {
  max-width: 42rem;
}

.partners-board {
  max-width: none;
  border-bottom: 0;
}

.partners-group,
.partners-group:nth-child(n),
.partners-group-full {
  padding: clamp(34px, 3.2vw, 48px) 0;
  border-top: 1px solid var(--partners-rule);
  grid-template-columns: minmax(140px, 190px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 64px);
}

.partners-group header {
  padding-top: 5px;
}

.partners-group header span {
  color: #9a9da3;
  font-size: 10px;
  letter-spacing: 0.14em;
}

.partners-group h2 {
  margin-top: 11px;
  font-size: clamp(18px, 1.4vw, 22px);
  letter-spacing: -0.045em;
}

.partners-group ul.partners-logo-list,
.partners-name-list-columns.partners-logo-list,
.partners-name-list-columns-public.partners-logo-list {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(20px, 2vw, 30px) clamp(18px, 2vw, 30px);
}

.partners-group .partner-logo-card,
.partners-group .partner-logo-card + .partner-logo-card {
  min-height: 72px;
  margin: 0;
  padding: 6px 0;
  overflow: visible;
  justify-content: center;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.partner-logo-card img {
  width: 100%;
  height: 48px;
  max-width: 164px;
  max-height: none;
  object-fit: contain;
  object-position: center;
  transform: scale(clamp(1, var(--partner-logo-scale, 1), 1.32));
  transform-origin: center;
}

.partners-group .partner-logo-card.partner-logo-card-dark {
  max-width: none;
  padding: 6px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.partner-logo-card-dark img {
  filter: brightness(0) saturate(100%);
}

.partner-logo-card-fallback span {
  color: var(--partners-ink);
  font-size: 18px;
}

.partner-logo-card[title="삼성디스플레이"] img,
.partner-logo-card[title="대한항공"] img {
  --partner-logo-scale: 1.1;
}

.partner-logo-card[title="삼성물산 건설부문"] img {
  --partner-logo-scale: 1.18;
}

.partner-logo-card[title="현대트랜시스"] img {
  --partner-logo-scale: 1.2;
}

.partner-logo-card[title="현대건설"] img,
.partner-logo-card[title="현대엔지니어링"] img,
.partner-logo-card[title="쌍용건설"] img,
.partner-logo-card[title="아시아나항공"] img,
.partner-logo-card[title="한국전력공사"] img,
.partner-logo-card[title="한국도로공사"] img {
  --partner-logo-scale: 1.16;
}

.partner-logo-card[title="COSCO SHIPPING Lines"] img {
  --partner-logo-scale: 1.4;
}

.partner-logo-card[title="GS건설"] img {
  --partner-logo-scale: 1.52;
}

.partner-logo-card[title="노루페인트"] img {
  --partner-logo-scale: 1.32;
}

.partner-logo-card[title="국보디자인"] img {
  --partner-logo-scale: 1.55;
}

.partner-logo-card[title="한국콘텐츠진흥원"] img {
  --partner-logo-scale: 1.46;
}

.partner-logo-card[title="LS전선"] img {
  --partner-logo-scale: 2.05;
}

@media (max-width: 1240px) {
  .partners-group ul.partners-logo-list,
  .partners-name-list-columns.partners-logo-list,
  .partners-name-list-columns-public.partners-logo-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .partners-group,
  .partners-group:nth-child(n),
  .partners-group-full {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .partners-group header {
    padding-top: 0;
  }

  .partners-group ul.partners-logo-list,
  .partners-name-list-columns.partners-logo-list,
  .partners-name-list-columns-public.partners-logo-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .partners-hero {
    padding-bottom: 40px;
  }

  .partners-group,
  .partners-group:nth-child(n),
  .partners-group-full {
    padding: 28px 0 32px;
    gap: 22px;
  }

  .partners-group ul.partners-logo-list,
  .partners-name-list-columns.partners-logo-list,
  .partners-name-list-columns-public.partners-logo-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px 12px;
  }

  .partners-group .partner-logo-card,
  .partners-group .partner-logo-card + .partner-logo-card,
  .partners-group .partner-logo-card.partner-logo-card-dark {
    min-height: 52px;
    padding: 3px 0;
    overflow: hidden;
    border-radius: 0;
  }

  .partner-logo-card img {
    height: 32px;
    max-width: 90%;
    max-height: none;
    transform: scale(clamp(1, var(--partner-logo-scale, 1), 1.08));
  }

  .partner-logo-card[title="현대트랜시스"] img {
    --partner-logo-scale: 1.05;
  }

  .partner-logo-card[title="GS건설"] img,
  .partner-logo-card[title="국보디자인"] img,
  .partner-logo-card[title="한국콘텐츠진흥원"] img {
    max-width: 96%;
    transform: scale(1.16);
  }

  .partner-logo-card[title="LS전선"] img {
    max-width: 100%;
    transform: scale(1.4);
  }

  .partner-logo-card-fallback span {
    font-size: 16px;
  }
}

/* v85 · Air Premia-inspired included-service icon system */

/* v90 · Open, borderless service-apartment location list */
.view-service-apartment .apartment-location-list {
  padding-bottom: clamp(58px, 6vw, 82px);
  border-bottom: 0;
}

.view-service-apartment .apartment-location-list .air-detail-section-heading h2 {
  margin-top: 0;
}

.view-service-apartment .apartment-location-list ul {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: clamp(34px, 5vw, 76px);
  border: 0;
}

.view-service-apartment .apartment-location-list li {
  flex: 1 1 170px;
  max-width: 220px;
  padding: 0;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 6px 14px;
  border: 0;
}

.view-service-apartment .apartment-location-list li + li {
  border: 0;
}

.view-service-apartment .apartment-location-list strong {
  font-size: clamp(20px, 1.65vw, 24px);
}

.view-service-apartment .apartment-location-list small {
  font-size: 13px;
}

@media (max-width: 720px) {
  .view-service-apartment .apartment-location-list {
    padding-bottom: 38px;
    gap: 30px;
  }

  .view-service-apartment .apartment-location-list ul {
    flex-direction: column;
    gap: 24px;
  }

  .view-service-apartment .apartment-location-list li,
  .view-service-apartment .apartment-location-list li + li {
    flex: 0 0 auto;
    width: 100%;
    max-width: none;
    padding: 0;
    border: 0;
  }
}

/* v97 · restore the original centered home navigation over the rotating image stage */
body[data-route="home"] .home-landing {
  --home-navigation-height: 0px;
}

.home-media-stage {
  top: 0;
}

.home-navigation {
  position: relative;
  z-index: 5;
  display: flex;
  width: 100%;
  height: auto;
  min-height: 100vh;
  min-height: 100svh;
  padding: 56px 24px clamp(72px, 9vh, 112px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(48px, 6vh, 68px);
  border: 0;
  background: transparent;
}

.home-logo {
  width: clamp(280px, 25vw, 360px);
  flex: 0 0 auto;
}

.home-route-menu {
  width: clamp(240px, 18vw, 280px);
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
}

.home-route-menu button {
  min-height: 36px;
  padding: 7px 16px;
  border-color: var(--ink);
  border-radius: 6px;
  font-size: 13px;
}

@media (max-width: 720px) {
  body[data-route="home"] .home-landing {
    --home-navigation-height: 0px;
  }

  body[data-route="home"] .home-navigation {
    min-height: 100vh;
    min-height: 100svh;
    padding: 32px 20px 40px;
    align-content: normal;
    justify-content: center;
    gap: clamp(26px, 5vh, 44px);
  }

  body[data-route="home"] .home-logo {
    width: min(220px, calc(100vw - 64px));
  }

  body[data-route="home"] .home-route-menu {
    width: min(222px, calc(100vw - 64px));
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
  }

  body[data-route="home"] .home-route-menu button {
    min-height: 40px;
    padding: 9px 14px;
    font-size: 12px;
  }
}

@media (min-width: 721px) and (max-height: 720px) {
  body[data-route="home"] .home-navigation {
    padding-block: 24px;
    gap: 24px;
  }

  body[data-route="home"] .home-logo {
    width: min(220px, 24vw);
  }

  body[data-route="home"] .home-route-menu {
    width: 230px;
    gap: 5px;
  }

  body[data-route="home"] .home-route-menu button {
    min-height: 32px;
    padding-block: 5px;
  }
}

@media (max-width: 720px) and (max-height: 700px) {
  body[data-route="home"] .home-navigation {
    min-height: 100svh;
    padding: 18px 20px 24px;
    justify-content: flex-start;
    gap: 18px;
    overflow-y: auto;
    overflow-x: hidden;
  }

  body[data-route="home"] .home-logo {
    width: min(154px, calc(100vw - 96px));
  }

  body[data-route="home"] .home-route-menu {
    width: min(210px, calc(100vw - 64px));
    gap: 5px;
  }

  body[data-route="home"] .home-route-menu button {
    min-height: 34px;
    padding-block: 5px;
  }
}

/* v101 · use the shared site header on home and remove the duplicate center navigation */
body[data-route="home"] .site-head {
  display: grid;
  background: #fff;
}

body[data-route="home"] .app-shell {
  min-height: 100vh;
  min-height: 100svh;
}

body[data-route="home"] .body-grid,
body[data-route="home"] .content,
body[data-route="home"] .view.view-home,
body[data-route="home"] .home-landing {
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
}

body[data-route="home"] .home-navigation {
  display: none;
}

/* v103 · keep every guest-room image on one corner system */
.view.view-guesthouse {
  --room-image-radius: 14px;
}

.view.view-guesthouse img.room-media,
.view.view-guesthouse .location-tile,
.view.view-guesthouse .room-hero-carousel,
.view.view-guesthouse .room-feature-media,
.view.view-guesthouse .media-carousel-track > figure {
  border-radius: var(--room-image-radius) !important;
}

.view.view-guesthouse .room-feature-media {
  overflow: hidden;
}

/* v104 · simplify guest-room section headings */
.view.view-guesthouse .room-space-section > header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 720px;
  margin: 0 0 32px;
  text-align: left;
}

.view.view-guesthouse .room-space-section > header h2 {
  margin: 0;
}

.view.view-guesthouse .room-space-section > header > p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: var(--weight-regular);
  line-height: 1.7;
  word-break: keep-all;
}

@media (max-width: 720px) {
  .view.view-guesthouse .room-space-section > header {
    gap: 10px;
    margin-bottom: 24px;
  }
}

/* v105 · right-aligned desktop navigation and India Life editorial board */
@media (min-width: 1101px) {
  .primary-nav {
    grid-column: 2 / -1;
    justify-content: flex-end;
  }
}

.view-india-life {
  min-height: calc(100svh - var(--header-height));
  padding: clamp(76px, 8vw, 132px) var(--page-gutter) clamp(110px, 12vw, 184px);
  color: #111;
  background: #fff;
}

.india-life-hero {
  width: min(820px, 100%);
  margin: 0 auto clamp(60px, 7vw, 104px);
  text-align: center;
}

.india-life-kicker {
  margin: 0 0 18px;
  color: #666;
  font-size: 12px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.18em;
}

.india-life-hero h1 {
  margin: 0;
  font-size: clamp(48px, 6.1vw, 88px);
  font-weight: var(--weight-bold);
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.india-life-hero > p:last-child {
  width: min(610px, 100%);
  margin: 26px auto 0;
  color: #666;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.75;
  word-break: keep-all;
}

.india-life-directory {
  width: min(1600px, 100%);
  margin: 0 auto;
}

.india-life-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(190px, 224px);
  gap: 14px;
  padding-bottom: 24px;
  border-bottom: 1px solid #111;
}

.india-life-search,
.india-life-region {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
  height: 56px;
  border: 1px solid #b8b8b8;
  border-radius: 999px;
  background: #fff;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.india-life-search:focus-within,
.india-life-region:focus-within {
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.07);
}

.india-life-search > svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-left: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.india-life-search input,
.india-life-region select {
  width: 100%;
  height: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: #111;
  background: transparent;
  font: inherit;
  font-size: 15px;
  font-weight: var(--weight-semibold);
}

.india-life-search input {
  padding: 0 22px 0 13px;
}

.india-life-search input::placeholder {
  color: #858585;
  font-weight: var(--weight-regular);
}

.india-life-region select {
  appearance: none;
  padding: 0 48px 0 21px;
  cursor: pointer;
}

.india-life-region > svg {
  position: absolute;
  right: 19px;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  pointer-events: none;
}

.india-life-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 22px 0 30px;
  border-bottom: 1px solid #d6d6d6;
}

.india-life-categories button {
  min-height: 40px;
  padding: 9px 18px;
  border: 1px solid #c9c9c9;
  border-radius: 999px;
  color: #444;
  background: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: var(--weight-semibold);
  cursor: pointer;
  transition: color 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

.india-life-categories button:hover,
.india-life-categories button:focus-visible {
  border-color: #111;
  color: #111;
}

.india-life-categories button[aria-pressed="true"] {
  border-color: #111;
  color: #fff;
  background: #111;
}

.india-life-status {
  margin: 22px 0 0;
  color: #767676;
  font-size: 13px;
  line-height: 1.5;
}

.india-life-list {
  margin: 20px 0 0;
  padding: 0;
  border-top: 1px solid #111;
  list-style: none;
}

.india-life-item {
  margin: 0;
  border-bottom: 1px solid #111;
}

.india-life-entry {
  display: grid;
  grid-template-columns: minmax(170px, 220px) minmax(0, 1fr) minmax(116px, 150px);
  gap: clamp(24px, 3vw, 52px);
  align-items: center;
  width: 100%;
  min-height: 190px;
  padding: 28px 2px;
  border: 0;
  color: #111;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.india-life-entry.has-no-media {
  grid-template-columns: minmax(0, 1fr) minmax(116px, 150px);
}

.india-life-entry-media {
  width: 100%;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 14px;
  background: #f1f1f1;
}

.india-life-entry-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.india-life-entry:hover .india-life-entry-media img {
  transform: scale(1.025);
}

.india-life-entry-content {
  min-width: 0;
}

.india-life-entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 0 0 14px;
  color: #727272;
  font-size: 12px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.04em;
}

.india-life-entry-meta span + span::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  margin: 0 13px 3px 0;
  border-radius: 50%;
  background: currentColor;
}

.india-life-entry h2 {
  margin: 0;
  font-size: clamp(22px, 2vw, 31px);
  font-weight: var(--weight-bold);
  letter-spacing: -0.04em;
  line-height: 1.25;
  word-break: keep-all;
}

.india-life-entry-summary {
  display: -webkit-box;
  max-width: 800px;
  margin: 13px 0 0;
  overflow: hidden;
  color: #686868;
  font-size: 15px;
  line-height: 1.7;
  word-break: keep-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.india-life-entry-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  align-self: stretch;
  padding: 7px 0;
}

.india-life-entry-aside time {
  color: #777;
  font-size: 12px;
  font-weight: var(--weight-medium);
}

.india-life-entry-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid #bdbdbd;
  border-radius: 50%;
  font-size: 19px;
  line-height: 1;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.india-life-entry:hover .india-life-entry-arrow,
.india-life-entry:focus-visible .india-life-entry-arrow {
  border-color: #111;
  color: #fff;
  background: #111;
  transform: translate(2px, -2px);
}

.india-life-empty {
  padding: clamp(70px, 9vw, 130px) 20px;
  border-bottom: 1px solid #111;
  text-align: center;
}

.india-life-empty strong {
  display: block;
  font-size: clamp(21px, 2vw, 28px);
  font-weight: var(--weight-bold);
}

.india-life-empty p {
  margin: 12px 0 0;
  color: #777;
  font-size: 14px;
}

.india-life-dialog {
  width: min(1000px, calc(100vw - 40px));
  max-width: none;
  max-height: min(88svh, 900px);
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 20px;
  color: #111;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
}

.india-life-dialog::backdrop {
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(5px);
}

.india-life-dialog-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
  min-height: 540px;
  margin: 0;
}

.india-life-dialog-media {
  min-height: 100%;
  margin: 0;
  background: #ececec;
}

.india-life-dialog-media[hidden] {
  display: none;
}

.india-life-dialog-media[hidden] + .india-life-dialog-content {
  grid-column: 1 / -1;
  width: min(760px, 100%);
  margin: 0 auto;
}

.india-life-dialog-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.india-life-dialog-content {
  padding: clamp(50px, 5vw, 72px) clamp(36px, 4.5vw, 66px);
}

.india-life-dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  color: #111;
  background: rgba(255, 255, 255, 0.94);
  cursor: pointer;
}

.india-life-dialog-close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.7;
}

.india-life-dialog-meta {
  margin: 0 0 16px;
  color: #6f6f6f;
  font-size: 12px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
}

.india-life-dialog-content h2 {
  margin: 0;
  font-size: clamp(30px, 3.6vw, 52px);
  font-weight: var(--weight-bold);
  letter-spacing: -0.05em;
  line-height: 1.14;
  word-break: keep-all;
}

.india-life-dialog-address {
  margin: 20px 0 0;
  color: #555;
  font-size: 14px;
  font-weight: var(--weight-semibold);
  line-height: 1.65;
  word-break: keep-all;
}

.india-life-dialog-copy {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid #d4d4d4;
}

.india-life-dialog-copy p {
  margin: 0;
  color: #4f4f4f;
  font-size: 15px;
  line-height: 1.82;
  word-break: keep-all;
}

.india-life-dialog-copy p + p {
  margin-top: 16px;
}

.india-life-dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 34px;
}

.india-life-dialog-action {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border: 1px solid #111;
  border-radius: 999px;
  color: #111;
  background: #fff;
  font-size: 14px;
  font-weight: var(--weight-bold);
  text-decoration: none;
  transition: color 150ms ease, background-color 150ms ease;
}

.india-life-dialog-action:hover,
.india-life-dialog-action:focus-visible,
.india-life-dialog-action.is-primary {
  color: #fff;
  background: #111;
}

body.india-life-dialog-open {
  overflow: hidden;
}

@media (max-width: 720px) {
  .view-india-life {
    padding: 58px 20px 100px;
  }

  .india-life-hero {
    margin-bottom: 50px;
  }

  .india-life-kicker {
    margin-bottom: 13px;
  }

  .india-life-hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .india-life-hero > p:last-child {
    margin-top: 20px;
    font-size: 15px;
  }

  .india-life-toolbar {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-bottom: 18px;
  }

  .india-life-search,
  .india-life-region {
    height: 52px;
  }

  .india-life-categories {
    flex-wrap: nowrap;
    gap: 7px;
    margin-inline: -16px;
    padding: 16px 16px 22px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }

  .india-life-categories::-webkit-scrollbar {
    display: none;
  }

  .india-life-categories button {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 8px 15px;
    font-size: 13px;
  }

  .india-life-status {
    margin-top: 18px;
  }

  .india-life-list {
    margin-top: 17px;
  }

  .india-life-entry,
  .india-life-entry.has-no-media {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    min-height: 0;
    padding: 24px 0;
  }

  .india-life-entry-media {
    aspect-ratio: 16 / 10;
  }

  .india-life-entry h2 {
    font-size: 23px;
  }

  .india-life-entry-summary {
    font-size: 14px;
    -webkit-line-clamp: 3;
  }

  .india-life-entry-aside {
    flex-direction: row;
    align-items: center;
    align-self: auto;
    padding: 0;
  }

  .india-life-entry-arrow {
    width: 38px;
    height: 38px;
  }

  .india-life-dialog {
    width: calc(100vw - 24px);
    max-height: calc(100svh - 24px);
    border-radius: 16px;
  }

  .india-life-dialog-panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .india-life-dialog-media {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .india-life-dialog-media img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .india-life-dialog-content {
    padding: 34px 24px 38px;
  }

  .india-life-dialog-content h2 {
    padding-right: 26px;
    font-size: 32px;
  }

  .india-life-dialog-close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
  }
}

/* v110 · header-aligned minimal global footer */
.site-footer {
  width: 100%;
  padding-inline: var(--shell-gutter);
  background: #fff;
  color: #111;
}

.site-footer-inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: flex-start;
}

.site-footer-copyright {
  color: #5e5e5e;
  font-size: 12px;
  font-weight: var(--weight-semibold);
  letter-spacing: -0.01em;
  line-height: 1.5;
  white-space: nowrap;
}

@media (min-width: 1441px) {
  .site-footer {
    padding-inline: calc((100% - 1440px) / 2 + var(--shell-gutter));
  }
}

@media (max-width: 720px) {
  .site-footer-inner {
    min-height: 80px;
  }

  .site-footer-copyright {
    font-size: 10.5px;
  }
}
