.mobile-cta {
  display: none;
}
@media (min-width: 801px) {
  .inner-page .site-header nav {
    gap: 24px;
    padding-right: 18px;
  }
  .inner-page .site-header nav a {
    font-size: 12px;
  }
}
.inquiry input:not([type="hidden"]),
.inquiry select,
.inquiry textarea {
  min-height: 58px;
  margin-top: 8px;
  padding: 0 18px;
  border: 1px solid #d8cec6;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 1px 0 rgba(75, 22, 45, 0.04);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}
.inquiry textarea {
  min-height: 104px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.inquiry input::placeholder,
.inquiry textarea::placeholder {
  color: #918a80;
}
.inquiry select {
  appearance: none;
  padding-right: 48px;
  background-image:
    linear-gradient(45deg, transparent 50%, #a8733c 50%),
    linear-gradient(135deg, #a8733c 50%, transparent 50%);
  background-position:
    calc(100% - 24px) 26px,
    calc(100% - 18px) 26px;
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
}
.inquiry input:not([type="hidden"]):focus,
.inquiry select:focus,
.inquiry textarea:focus {
  border-color: #aa7744;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(198, 155, 98, 0.16);
  outline: 0;
}
.form-grid label:focus-within {
  color: var(--plum);
}
.date-shell {
  position: relative;
  margin-top: 8px;
}
.date-shell .date-entry {
  margin-top: 0;
  padding-right: 72px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
}
.date-entry::placeholder {
  color: #918a80;
  letter-spacing: 0.04em;
}
.date-icon-button {
  position: absolute;
  top: 7px;
  right: 7px;
  bottom: 7px;
  width: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: #f0e8df;
  color: #a56d36;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    transform 0.15s ease;
}
.date-icon-button:hover {
  background: #e8dccf;
}
.date-icon-button:active {
  transform: scale(0.96);
}
.date-icon-button:focus-visible {
  outline: 2px solid var(--plum);
  outline-offset: 2px;
}
.date-icon-button svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.time-select-group {
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr;
  gap: 8px;
  margin-top: 8px;
}
.time-select-group select {
  min-height: 58px;
  margin-top: 0;
  padding: 0 34px 0 14px;
  border-radius: 14px;
  background-position:
    calc(100% - 16px) 26px,
    calc(100% - 11px) 26px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.time-select-group > select {
  min-width: 0;
}
.time-select-group select:invalid {
  color: #8b7e80;
}
.field-hint {
  display: block;
  margin-top: 7px;
  color: #8b7e80;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
}
.inquiry .submit {
  min-height: 60px;
  padding: 0 28px;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(75, 22, 45, 0.17);
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
}
.inquiry .submit:hover {
  background: #5d1e39;
  box-shadow: 0 15px 32px rgba(75, 22, 45, 0.22);
}
.inquiry .submit:active {
  transform: scale(0.985);
}
.inquiry .submit:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.inquiry .submit:disabled {
  cursor: wait;
  opacity: 0.72;
}
.mobile-cta {
  border-radius: 14px;
}

@media (max-width: 800px) {
  body {
    background-color: #f7f2e9;
    background-image:
      linear-gradient(rgba(75, 22, 45, 0.045) 1px, transparent 1px),
      linear-gradient(90deg, rgba(75, 22, 45, 0.045) 1px, transparent 1px);
    background-size: 72px 72px;
    padding-bottom: 126px;
  }
  .site-header {
    position: absolute;
    height: 92px;
    padding: 0 20px;
    color: var(--ink);
    background: #f7f2e9;
    border-bottom: 1px solid rgba(36, 21, 25, 0.1);
  }
  .site-header .brand span {
    font-size: 28px;
  }
  .site-header .brand small {
    font-size: 8px;
    max-width: 64px;
  }
  .menu-toggle {
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(36, 21, 25, 0.35);
    color: var(--ink);
    font-size: 0;
    position: relative;
  }
  .menu-toggle:before,
  .menu-toggle:after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    height: 1px;
    background: var(--ink);
    transition: 0.25s;
  }
  .menu-toggle:before {
    top: 17px;
  }
  .menu-toggle:after {
    bottom: 17px;
  }
  .site-header nav {
    top: 92px;
    padding: 28px 24px;
    background: var(--paper);
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    gap: 0;
  }
  .site-header nav a {
    font: 34px/1.1 var(--serif);
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }
  .hero {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 0;
    padding: 116px 20px 72px;
    color: var(--ink);
    background: transparent;
  }
  .hero-media {
    position: relative;
    inset: auto;
    width: 100%;
    height: 64vh;
    min-height: 480px;
    max-height: 620px;
    order: 1;
    border-radius: 22px;
    background-position: 62% center;
    box-shadow: 0 18px 45px rgba(36, 21, 25, 0.2);
    overflow: hidden;
  }
  .hero-shade {
    display: none;
  }
  .hero-copy {
    order: 2;
    margin: 0;
    padding: 40px 4px 0;
    max-width: none;
  }
  .hero-copy .eyebrow {
    color: var(--plum2);
    margin-bottom: 17px;
  }
  h1 {
    font-size: clamp(48px, 15vw, 66px);
    line-height: 0.92;
    color: var(--ink);
  }
  h1 br {
    display: none;
  }
  h1 em {
    display: block;
    color: var(--plum2);
  }
  .hero-copy > p:not(.eyebrow) {
    font-size: 15px;
    color: #67595b;
    margin: 24px 0 28px;
    max-width: 34ch;
  }
  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 22px;
  }
  .button.light {
    background: var(--plum);
    color: #fff;
  }
  .text-link {
    color: var(--ink);
    border-color: var(--ink);
    font-size: 11px;
  }
  .marquee {
    padding: 11px 0;
  }
  .marquee div {
    animation-duration: 16s;
  }
  .section {
    padding: 86px 24px;
  }
  .about {
    gap: 28px;
  }
  .about h2,
  .section-head h2,
  .inquiry h2 {
    font-size: clamp(44px, 13vw, 58px);
    line-height: 0.98;
  }
  .about-copy p:first-child {
    font-size: 19px;
  }
  .about-copy p {
    font-size: 15px;
  }
  .arrow-link {
    margin-top: 34px;
  }
  .section-head {
    margin-bottom: 40px;
  }
  .section-head .eyebrow {
    margin-bottom: 16px;
  }
  .services {
    padding-left: 20px;
    padding-right: 20px;
    background: #401326;
  }
  .service-row {
    grid-template-columns: 36px 1fr;
    padding: 30px 0;
    gap: 14px;
  }
  .service-number {
    font-size: 19px;
  }
  .service-title h3 {
    font-size: 38px;
  }
  .service-details {
    padding-right: 5px;
  }
  .service-details p {
    font-size: 13px;
  }
  .service-toggle {
    width: 100%;
    min-height: 48px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .service-expanded > div {
    padding: 24px 20px;
  }
  .service-expanded h4 {
    font-size: 26px;
  }
  .service-footnote {
    padding: 20px;
  }
  .statement {
    display: flex;
    flex-direction: column;
    padding: 78px 20px 88px;
    gap: 72px;
  }
  .screen-card {
    width: 88%;
    min-height: 440px;
    border-width: 6px;
    transform: rotate(-2deg);
  }
  .screen-card span {
    font-size: 48px;
  }
  .statement h2 {
    font-size: 49px;
  }
  .statement > div:last-child {
    width: 100%;
  }
  .inquiry {
    gap: 32px;
    padding-bottom: 100px;
  }
  .inquiry-intro > p:not(.eyebrow) {
    font-size: 14px;
  }
  .form-grid {
    gap: 22px;
  }
  .form-grid label {
    font-size: 9px;
  }
  input,
  select,
  textarea {
    font-size: 16px;
    min-height: 46px;
  }
  .inquiry .submit {
    width: 100%;
    min-height: 60px;
  }
  footer {
    padding: 56px 24px;
    gap: 18px;
  }
  .mobile-cta {
    display: flex;
    position: fixed;
    z-index: 35;
    left: 14px;
    right: 14px;
    bottom: 62px;
    min-height: 54px;
    padding: 0 20px;
    align-items: center;
    justify-content: space-between;
    background: var(--gold);
    color: var(--ink);
    box-shadow: 0 12px 40px rgba(36, 21, 25, 0.28);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-size: 10px;
    font-weight: 600;
  }
  dialog {
    max-height: calc(100vh - 30px);
    overflow: auto;
    border-radius: 18px;
  }
}

@media (max-width: 380px) {
  .time-select-group {
    grid-template-columns: 1fr 1fr 1.15fr;
    gap: 5px;
  }

  .time-select-group select {
    padding-right: 24px;
    padding-left: 9px;
    background-position:
      calc(100% - 11px) 26px,
      calc(100% - 7px) 26px;
    font-size: 12px;
  }
  .hero {
    padding-left: 14px;
    padding-right: 14px;
  }
  .hero-media {
    min-height: 440px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .section {
    padding-left: 20px;
    padding-right: 20px;
  }
  .screen-card {
    width: 92%;
  }
}

/* HMP atelier finish */
:root {
  --bronze: #a87542;
  --bronze-soft: #d9c7b3;
  --ivory: #faf7f1;
  --charcoal: #201d1c;
  --lux-shadow: 0 24px 70px rgba(55, 31, 36, 0.12);
}
body {
  background-color: var(--ivory);
  background-image:
    radial-gradient(circle at 8% 8%, rgba(198, 155, 98, 0.11), transparent 28%),
    radial-gradient(circle at 90% 36%, rgba(75, 22, 45, 0.06), transparent 24%);
}
.button,
.service-toggle,
.page-cta .button {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease,
    color 0.22s ease;
}
.button:before,
.service-toggle:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 22%,
    rgba(255, 255, 255, 0.28) 48%,
    transparent 72%
  );
  transform: translateX(-125%);
  transition: transform 0.65s ease;
}
.button:hover:before,
.service-toggle:hover:before {
  transform: translateX(125%);
}
.button:hover,
.page-cta .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(36, 21, 25, 0.2);
}
.button:active,
.service-toggle:active {
  transform: scale(0.98);
}
.button:focus-visible,
.service-toggle:focus-visible,
.mobile-cta:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}
.site-header nav a {
  position: relative;
}
.site-header nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: currentColor;
  transition: right 0.25s ease;
}
.site-header nav a:hover:after {
  right: 0;
}
.page-hero {
  overflow: hidden;
}
.hero-media {
  background-image: url("assets/hmp-hero-no-screen-2026.webp");
  background-position: 58% center;
}
.hero-media,
.page-hero-media {
  transform: scale(1.015);
  animation: hero-breathe 14s ease-in-out infinite alternate;
}
.hero-copy.reveal {
  animation: luxury-rise 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.screen-card {
  background-image:
    linear-gradient(180deg, rgba(22, 9, 14, 0.08), rgba(22, 9, 14, 0.45)),
    url("assets/modern-guest-arrival-no-screen.webp");
  background-position: center;
  background-size: cover;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s ease;
}
.screen-card:hover {
  transform: translateY(-8px) rotate(-0.35deg);
  box-shadow: 0 60px 95px rgba(8, 4, 5, 0.8);
}
.scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.scroll-reveal.is-visible {
  opacity: 1;
  transform: none;
}
.service-row:nth-child(2),
.price-card:nth-child(2),
.process-step:nth-child(2) {
  transition-delay: 0.08s;
}
.service-row:nth-child(3),
.price-card:nth-child(3),
.process-step:nth-child(3) {
  transition-delay: 0.16s;
}
.inquiry-page .inquiry {
  position: relative;
  align-items: start;
}
.inquiry-page .inquiry-intro:after {
  content: "";
  display: block;
  aspect-ratio: 4/3;
  margin-top: 42px;
  border-radius: 160px 160px 24px 24px;
  background:
    linear-gradient(180deg, transparent 55%, rgba(28, 14, 18, 0.5)),
    url("assets/modern-guest-arrival-no-screen.webp") center/cover;
  box-shadow: var(--lux-shadow);
  filter: saturate(0.88) contrast(1.04);
}
.inquiry-page #inquiry-form {
  position: relative;
  padding: 54px 48px 48px;
  border: 1px solid rgba(168, 117, 66, 0.38);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--lux-shadow);
  backdrop-filter: blur(18px);
}
.inquiry-page #inquiry-form:before {
  content: "01  /  CELEBRATION BRIEF";
  display: block;
  margin-bottom: 36px;
  color: var(--bronze);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
}
.form-grid {
  gap: 28px 24px;
}
.form-grid label {
  color: #4f4643;
  letter-spacing: 0.16em;
}
.inquiry input:not([type="hidden"]),
.inquiry select,
.inquiry textarea {
  border-color: rgba(92, 70, 66, 0.22);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 24px rgba(55, 31, 36, 0.035);
}
.inquiry input:not([type="hidden"]):hover,
.inquiry select:hover,
.inquiry textarea:hover {
  border-color: rgba(168, 117, 66, 0.58);
  background: #fff;
}
.date-shell .date-entry {
  cursor: pointer;
}
.date-icon-button {
  border-radius: 999px;
  background: #f0e7dc;
}
.inquiry .submit {
  width: 100%;
  min-height: 68px;
  margin-top: 38px;
  border-radius: 999px;
  background: var(--charcoal);
  font-size: 11px;
  letter-spacing: 0.18em;
  box-shadow: 0 18px 38px rgba(32, 29, 28, 0.18);
}
.inquiry .submit:hover {
  background: var(--plum);
}
.form-note {
  text-align: center;
  margin-top: 18px;
}
.mobile-cta {
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  backdrop-filter: blur(16px);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.mobile-cta:active {
  transform: scale(0.985);
}

.calendar-sheet {
  width: min(650px, calc(100% - 32px));
  max-width: none;
  margin: auto;
  padding: 25px 34px 30px;
  border: 1px solid var(--bronze-soft);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--charcoal);
  box-shadow: 0 38px 120px rgba(21, 15, 15, 0.28);
  overflow: hidden;
}
.calendar-sheet[open] {
  animation: calendar-in 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}
.calendar-sheet::backdrop {
  background: rgba(25, 21, 20, 0.48);
  backdrop-filter: blur(9px);
  animation: backdrop-in 0.25s ease both;
}
.calendar-handle {
  width: 56px;
  height: 5px;
  margin: 0 auto 26px;
  border-radius: 99px;
  background: #ddd9d5;
}
.calendar-eyebrow {
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
}
.calendar-nav {
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  align-items: center;
  gap: 18px;
  margin: 24px 0;
}
.calendar-month {
  text-align: center;
  font: 32px var(--serif);
  font-weight: 400;
}
.calendar-arrow {
  width: 48px;
  height: 48px;
  border: 1px solid #e4dfda;
  border-radius: 50%;
  background: #fff;
  color: var(--charcoal);
  font: 36px/1 var(--serif);
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    background-color 0.2s ease;
}
.calendar-arrow:hover:not(:disabled) {
  border-color: var(--bronze);
  background: #fbf6ef;
  transform: scale(1.04);
}
.calendar-arrow:disabled {
  opacity: 0.24;
  cursor: not-allowed;
}
.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 7px;
}
.calendar-weekdays {
  margin-bottom: 10px;
  color: #918b84;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.12em;
}
.calendar-day {
  aspect-ratio: 1;
  border: 1px solid transparent;
  border-radius: 15px;
  background: transparent;
  color: var(--charcoal);
  font-size: 15px;
  cursor: pointer;
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}
.calendar-day:hover:not(:disabled) {
  border-color: var(--bronze-soft);
  background: #fbf6ef;
  transform: translateY(-1px);
}
.calendar-day:disabled {
  color: #d7d3cf;
  cursor: not-allowed;
}
.calendar-day.is-today {
  border-color: var(--bronze-soft);
}
.calendar-day.is-selected {
  border-color: var(--bronze);
  background: var(--bronze);
  color: #fff;
  box-shadow: 0 8px 20px rgba(168, 117, 66, 0.24);
}
.calendar-day:focus-visible,
.calendar-arrow:focus-visible,
.calendar-clear:focus-visible,
.calendar-done:focus-visible {
  outline: 2px solid var(--plum);
  outline-offset: 2px;
}
.calendar-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid #ece8e4;
}
.calendar-clear,
.calendar-done {
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  cursor: pointer;
}
.calendar-clear {
  background: transparent;
  color: #6f6963;
}
.calendar-done {
  border-radius: 999px;
  background: var(--bronze);
  color: #fff;
  box-shadow: 0 10px 24px rgba(168, 117, 66, 0.2);
}
@keyframes calendar-in {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.985);
  }
}
@keyframes backdrop-in {
  from {
    opacity: 0;
  }
}
@keyframes luxury-rise {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
}
@keyframes hero-breathe {
  to {
    transform: scale(1.055);
  }
}

@media (max-width: 800px) {
  .inquiry-page .inquiry-intro:after {
    aspect-ratio: 16/10;
    margin-top: 30px;
    border-radius: 90px 90px 20px 20px;
  }
  .inquiry-page #inquiry-form {
    margin: 4px -8px 0;
    padding: 34px 20px 28px;
    border-radius: 24px;
  }
  .inquiry-page #inquiry-form:before {
    margin-bottom: 28px;
  }
  .inquiry .submit {
    min-height: 66px;
  }
  .mobile-cta {
    background: rgba(168, 117, 66, 0.92);
    color: #fff;
    box-shadow: 0 16px 42px rgba(55, 31, 36, 0.3);
  }
  .calendar-sheet {
    width: 100%;
    max-height: calc(100dvh - 50px);
    margin: auto 0 0;
    padding: 18px 20px 24px;
    border-radius: 30px 30px 0 0;
  }
  .calendar-sheet[open] {
    animation: calendar-sheet-up 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .calendar-handle {
    margin-bottom: 22px;
  }
  .calendar-eyebrow {
    font-size: 11px;
  }
  .calendar-nav {
    margin: 20px 0;
  }
  .calendar-month {
    font-size: 29px;
  }
  .calendar-weekdays,
  .calendar-grid {
    gap: 5px;
  }
  .calendar-day {
    border-radius: 12px;
    font-size: 16px;
  }
  .calendar-actions {
    margin-top: 20px;
    padding-top: 18px;
  }
  @keyframes calendar-sheet-up {
    from {
      opacity: 0;
      transform: translateY(100%);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media,
  .page-hero-media {
    transform: none;
    animation: none;
  }
  .scroll-reveal {
    opacity: 1;
    transform: none;
  }
  .calendar-sheet[open] {
    animation: none;
  }
}

.decor-gallery {
  padding: 120px 6vw 140px;
  background: #f1ebe2;
  overflow: hidden;
}
.decor-gallery-head {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr 0.8fr;
  align-items: end;
  gap: 4vw;
  margin-bottom: 64px;
}
.decor-gallery-head h2 {
  font-size: clamp(54px, 6vw, 92px);
  letter-spacing: -0.025em;
}
.decor-gallery-head h2 em {
  color: var(--bronze);
  font-weight: 400;
}
.decor-gallery-head > p:last-child {
  max-width: 360px;
  color: #665b57;
  font-size: 14px;
}
.decor-gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: auto auto;
  gap: 18px;
}
.decor-shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #241519;
}
.decor-shot-wide {
  grid-row: 1/3;
  min-height: 760px;
  border-radius: 220px 24px 24px 24px;
}
.decor-shot-tall {
  min-height: 430px;
  border-radius: 24px 160px 24px 24px;
}
.decor-shot-detail {
  min-height: 310px;
  border-radius: 24px;
}
.decor-shot img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition:
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.6s ease;
}
.decor-shot-wide img {
  object-position: center;
}
.decor-shot-tall img {
  object-position: center 52%;
}
.decor-shot:hover img {
  transform: scale(1.035);
  filter: saturate(1.08);
}
.decor-shot:after {
  content: "";
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(transparent, rgba(20, 12, 14, 0.72));
  pointer-events: none;
}
.decor-shot figcaption {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 20px;
  display: flex;
  justify-content: space-between;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 10px;
}
.decor-shot figcaption span {
  color: #d7b07d;
}
.inner-page .page-hero-media {
  background-image: url("assets/modern-guest-arrival-no-screen.webp");
  background-position: center 48%;
}
.inner-page .page-hero-media.accessory-media {
  background-image: url("assets/modern-reception.webp");
  background-position: center;
  filter: none;
}
.inner-page .page-hero-media.money-media {
  background-image: url("assets/money-machine-table.webp");
  background-position: center;
  filter: none;
}
@media (max-width: 800px) {
  .decor-gallery {
    padding: 82px 20px 95px;
  }
  .decor-gallery-head {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 40px;
  }
  .decor-gallery-head h2 {
    font-size: clamp(48px, 14vw, 65px);
  }
  .decor-gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 14px;
  }
  .decor-shot-wide,
  .decor-shot-tall,
  .decor-shot-detail {
    grid-row: auto;
    min-height: 0;
    aspect-ratio: 4/5;
    border-radius: 100px 18px 18px 18px;
  }
  .decor-shot-tall {
    aspect-ratio: 4/5;
    border-radius: 18px 100px 18px 18px;
  }
  .decor-shot-detail {
    aspect-ratio: 4/3;
    border-radius: 18px;
  }
  .decor-shot img {
    position: absolute;
  }
  .hero-media {
    background-position: 58% center;
  }
}
