.dglm-header-wrap,
.dglm-modal {
  --dglm-wine: #7f4f50;
  --dglm-wine-dark: #5c3739;
  --dglm-rose: #cfa8a8;
  --dglm-blush: #ead9d6;
  --dglm-ivory: #f8f5f0;
  --dglm-paper: #fffdf9;
  --dglm-ink: #332b2a;
  --dglm-muted: #786c68;
  --dglm-border: rgba(100, 70, 67, 0.14);
  font-family: "DM Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

.dglm-header-wrap,
.dglm-header-wrap *,
.dglm-modal,
.dglm-modal * {
  box-sizing: border-box;
}

.dglm-header-wrap {
  position: sticky;
  z-index: 9990;
  top: 0;
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow: visible;
}

body.admin-bar .dglm-header-wrap {
  top: 32px;
}

.dglm-header {
  position: relative;
  width: 100%;
  border-bottom: 1px solid rgba(100, 70, 67, 0.1);
  background: rgba(255, 253, 249, 0.88);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(19px) saturate(1.12);
  -webkit-backdrop-filter: blur(19px) saturate(1.12);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.dglm-header-wrap.is-scrolled .dglm-header {
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 16px 42px rgba(78, 53, 50, 0.08);
}

.dglm-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 2vw, 34px);
  width: min(100%, 1536px);
  min-height: 88px;
  margin: 0 auto;
  padding: 12px clamp(24px, 4.3vw, 72px);
}

.dglm-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  color: var(--dglm-ink) !important;
  text-decoration: none !important;
}

.dglm-brand__mark {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(127, 79, 80, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 0 0 4px rgba(234, 217, 214, 0.25), 0 8px 22px rgba(90, 61, 59, 0.06);
}

.dglm-brand__mark::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1px solid transparent;
  border-top-color: rgba(127, 79, 80, 0.25);
  border-radius: 50%;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.dglm-brand:hover .dglm-brand__mark::after {
  transform: rotate(125deg);
}

.dglm-brand__mark img {
  display: block;
  width: 39px;
  height: 39px;
  object-fit: contain;
}

.dglm-brand__copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dglm-brand__copy strong {
  color: var(--dglm-wine-dark);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(18px, 1.28vw, 22px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.dglm-brand__copy small {
  color: var(--dglm-muted);
  font-size: 7px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.dglm-nav {
  min-width: 0;
  margin-left: auto;
}

.dglm-nav ul,
.dglm-mobile-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dglm-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(17px, 1.65vw, 28px);
}

.dglm-nav a {
  position: relative;
  display: block;
  padding: 12px 0;
  color: var(--dglm-muted) !important;
  font-size: 9.5px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.035em;
  text-decoration: none !important;
  transition: color 0.22s ease;
}

.dglm-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  border-radius: 99px;
  background: var(--dglm-wine);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.dglm-nav a:hover,
.dglm-nav a.is-current {
  color: var(--dglm-wine) !important;
}

.dglm-nav a:hover::after,
.dglm-nav a.is-current::after {
  transform: scaleX(1);
  transform-origin: left;
}

.dglm-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.dglm-booking-trigger,
.dglm-mobile-booking {
  border: 0;
  font-family: inherit;
  cursor: pointer;
}

.dglm-booking-trigger {
  display: inline-flex;
  align-items: center;
  gap: 17px;
  min-height: 48px;
  padding: 7px 8px 7px 18px;
  border: 1px solid rgba(127, 79, 80, 0.14);
  border-radius: 13px;
  background: var(--dglm-wine);
  box-shadow: 0 11px 26px rgba(103, 59, 60, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 9.5px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.dglm-booking-trigger i {
  display: grid;
  place-items: center;
  width: 33px;
  height: 33px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-style: normal;
  transition: transform 0.25s ease, background 0.25s ease;
}

.dglm-booking-trigger:hover {
  box-shadow: 0 16px 34px rgba(103, 59, 60, 0.23), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  filter: saturate(1.04);
  transform: translateY(-2px);
}

.dglm-booking-trigger:hover i {
  background: rgba(255, 255, 255, 0.2);
  transform: translate(2px, -2px);
}

.dglm-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--dglm-border);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--dglm-wine);
  cursor: pointer;
}

.dglm-menu-toggle__label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.dglm-menu-toggle__lines {
  position: relative;
  width: 19px;
  height: 13px;
}

.dglm-menu-toggle__lines i {
  position: absolute;
  left: 0;
  width: 19px;
  height: 1px;
  border-radius: 99px;
  background: currentColor;
  transition: top 0.3s ease, transform 0.3s ease;
}

.dglm-menu-toggle__lines i:first-child { top: 3px; }
.dglm-menu-toggle__lines i:last-child { top: 10px; width: 14px; left: 5px; }

.dglm-header-wrap.is-menu-open .dglm-menu-toggle__lines i:first-child {
  top: 6px;
  transform: rotate(45deg);
}

.dglm-header-wrap.is-menu-open .dglm-menu-toggle__lines i:last-child {
  top: 6px;
  left: 0;
  width: 19px;
  transform: rotate(-45deg);
}

.dglm-mobile-menu {
  display: none;
  max-height: 0;
  overflow: hidden;
  border-top: 1px solid transparent;
  background: rgba(255, 253, 249, 0.98);
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease, visibility 0.3s ease, border-color 0.3s ease;
}

.dglm-header-wrap.is-menu-open .dglm-mobile-menu {
  max-height: calc(100svh - 74px);
  overflow-y: auto;
  border-color: var(--dglm-border);
  opacity: 1;
  visibility: visible;
}

.dglm-mobile-menu__inner {
  padding: 18px 21px 28px;
}

.dglm-mobile-menu li {
  opacity: 0;
  transform: translateY(9px);
  transition: opacity 0.36s ease calc(var(--dglm-order) * 35ms + 80ms), transform 0.36s ease calc(var(--dglm-order) * 35ms + 80ms);
}

.dglm-header-wrap.is-menu-open .dglm-mobile-menu li {
  opacity: 1;
  transform: translateY(0);
}

.dglm-mobile-menu nav a {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  border-bottom: 1px solid rgba(100, 70, 67, 0.1);
  color: var(--dglm-ink) !important;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 24px;
  line-height: 1;
  text-decoration: none !important;
}

.dglm-mobile-menu nav a span {
  color: var(--dglm-rose);
  font-family: "DM Sans", sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.dglm-mobile-menu nav a i {
  color: var(--dglm-wine);
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-style: normal;
}

.dglm-mobile-booking {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 55px;
  margin-top: 20px;
  padding: 10px 12px 10px 18px;
  border-radius: 13px;
  background: var(--dglm-wine);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.dglm-mobile-booking span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.14);
}

body.dglm-modal-open {
  overflow: hidden !important;
}

.dglm-modal {
  position: fixed;
  z-index: 99999;
  inset: 0;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: clamp(16px, 3.5vw, 52px);
  overflow-x: hidden;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.dglm-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dglm-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(42, 32, 31, 0.66);
  backdrop-filter: blur(12px) saturate(0.85);
  -webkit-backdrop-filter: blur(12px) saturate(0.85);
}

.dglm-modal__dialog {
  position: relative;
  isolation: isolate;
  width: min(100%, 1160px);
  max-height: calc(100svh - clamp(32px, 7vw, 104px));
  padding: clamp(30px, 4.1vw, 58px);
  overflow-x: hidden;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: clamp(22px, 2.2vw, 32px);
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.99), rgba(246, 239, 234, 0.985)),
    var(--dglm-ivory);
  box-shadow: 0 40px 110px rgba(37, 25, 24, 0.32), inset 0 1px 0 #fff;
  opacity: 0;
  transform: translateY(26px) scale(0.975);
  transition: opacity 0.5s ease, transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
  scrollbar-width: thin;
  scrollbar-color: rgba(127, 79, 80, 0.28) transparent;
}

.dglm-modal.is-open .dglm-modal__dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.dglm-modal__dialog::-webkit-scrollbar { width: 6px; }
.dglm-modal__dialog::-webkit-scrollbar-thumb { border-radius: 99px; background: rgba(127, 79, 80, 0.24); }

.dglm-modal__glow {
  position: absolute;
  z-index: -1;
  top: -260px;
  right: -160px;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(207, 168, 168, 0.32), transparent 67%);
  pointer-events: none;
}

.dglm-modal__close {
  position: absolute;
  z-index: 4;
  top: clamp(20px, 2.7vw, 34px);
  right: clamp(20px, 2.7vw, 34px);
  width: 43px;
  height: 43px;
  padding: 0;
  border: 1px solid var(--dglm-border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.66);
  color: var(--dglm-wine);
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.3s ease;
}

.dglm-modal__close:hover {
  border-color: rgba(127, 79, 80, 0.28);
  background: #fff;
  transform: rotate(7deg);
}

.dglm-modal__close i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1px;
  border-radius: 99px;
  background: currentColor;
}

.dglm-modal__close i:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.dglm-modal__close i:last-child { transform: translate(-50%, -50%) rotate(-45deg); }

.dglm-modal__header {
  max-width: 560px;
  padding-right: 45px;
}

.dglm-modal__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 15px;
  color: var(--dglm-wine);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dglm-modal__eyebrow i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dglm-rose);
  box-shadow: 0 0 0 5px rgba(207, 168, 168, 0.15);
}

.dglm-modal__header h2 {
  margin: 0;
  color: var(--dglm-ink);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(38px, 3.7vw, 54px);
  font-weight: 400;
  line-height: 0.99;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.dglm-modal__header h2 em {
  color: var(--dglm-wine);
  font-style: italic;
}

.dglm-modal__header > p {
  max-width: 600px;
  margin: 17px 0 0;
  color: var(--dglm-muted);
  font-size: 13px;
  line-height: 1.62;
}

.dglm-booking-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(23px, 3vw, 34px);
}

.dglm-booking-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 242px;
  padding: clamp(18px, 1.8vw, 24px);
  border: 1px solid var(--dglm-border);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.48s ease, transform 0.48s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.dglm-modal.is-open .dglm-booking-card {
  opacity: 1;
  transform: translateY(0);
}

.dglm-modal.is-open .dglm-booking-card:nth-child(1) { transition-delay: 120ms; }
.dglm-modal.is-open .dglm-booking-card:nth-child(2) { transition-delay: 175ms; }
.dglm-modal.is-open .dglm-booking-card:nth-child(3) { transition-delay: 230ms; }
.dglm-modal.is-open .dglm-booking-card:nth-child(4) { transition-delay: 285ms; }

.dglm-booking-card:hover {
  border-color: rgba(127, 79, 80, 0.25);
  box-shadow: 0 18px 42px rgba(81, 54, 52, 0.09), inset 0 1px 0 #fff;
}

.dglm-booking-card--featured {
  border-color: rgba(127, 79, 80, 0.15);
  background: linear-gradient(145deg, #7f4f50, #966263);
  box-shadow: 0 18px 42px rgba(103, 59, 60, 0.17), inset 0 1px 0 rgba(255, 255, 255, 0.17);
  color: #fff;
}

.dglm-booking-card--featured:hover {
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 23px 51px rgba(103, 59, 60, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.17);
}

.dglm-booking-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 42px;
}

.dglm-booking-card__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #f6e8e2;
  color: var(--dglm-wine);
}

.dglm-booking-card__icon svg {
  width: 19px;
  height: 19px;
}

.dglm-booking-card__icon--phone {
  border: 1px solid rgba(127, 79, 80, 0.1);
  background: rgba(234, 217, 214, 0.45);
}

.dglm-booking-card__tag {
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dglm-booking-card h3 {
  margin: 16px 0 0;
  color: var(--dglm-ink);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(21px, 1.7vw, 27px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.025em;
}

.dglm-booking-card h3 small {
  display: block;
  margin-top: 4px;
  color: var(--dglm-muted);
  font-family: "DM Sans", sans-serif;
  font-size: 7px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dglm-booking-card--featured h3 {
  color: #fff;
}

.dglm-booking-card > p {
  margin: 10px 0 0;
  color: var(--dglm-muted);
  font-size: 10.5px;
  line-height: 1.55;
}

.dglm-booking-card--featured > p {
  color: rgba(255, 255, 255, 0.69);
}

.dglm-booking-card__contact {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: auto;
  padding-top: 16px;
}

.dglm-booking-card__contact small {
  color: var(--dglm-muted);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.dglm-booking-card__contact strong {
  color: var(--dglm-ink);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.25;
}

.dglm-booking-card--featured .dglm-booking-card__contact small { color: rgba(255, 255, 255, 0.57); }
.dglm-booking-card--featured .dglm-booking-card__contact strong { color: #fff; }

.dglm-booking-card__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 46px;
  margin-top: 13px;
  padding: 8px 8px 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: #f6e8e2;
  color: var(--dglm-wine) !important;
  font-size: 8.5px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.055em;
  text-decoration: none !important;
  text-transform: uppercase;
  transition: filter 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.dglm-booking-card__button span {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border-radius: 8px;
  background: rgba(127, 79, 80, 0.1);
  font-size: 12px;
}

.dglm-booking-card__button--light {
  border-color: rgba(127, 79, 80, 0.1);
  background: var(--dglm-wine);
  color: #fff !important;
}

.dglm-booking-card__button--light span {
  background: rgba(255, 255, 255, 0.12);
}

.dglm-booking-card__button:hover {
  box-shadow: 0 11px 24px rgba(70, 46, 45, 0.12);
  filter: brightness(1.025);
  transform: translateY(-2px);
}

.dglm-modal__note {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 18px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(127, 79, 80, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.42);
  color: var(--dglm-muted);
  font-size: 9.5px;
  line-height: 1.5;
}

.dglm-modal__note i {
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--dglm-rose);
  box-shadow: 0 0 0 4px rgba(207, 168, 168, 0.13);
}

.dglm-modal__note strong {
  color: var(--dglm-wine);
}

@media (max-width: 1220px) {
  .dglm-nav { display: none; }
  .dglm-menu-toggle { display: inline-flex; }
  .dglm-mobile-menu { display: block; }
}

@media (max-width: 900px) {
  .dglm-booking-options {
    grid-template-columns: 1fr 1fr;
  }

  .dglm-booking-card--featured { grid-column: auto; }
}

@media (max-width: 782px) {
  body.admin-bar .dglm-header-wrap { top: 46px; }
}

@media (max-width: 680px) {
  .dglm-header__inner {
    min-height: 74px;
    padding: 9px 16px;
  }

  .dglm-brand { gap: 9px; min-width: 0; }
  .dglm-brand__mark { width: 43px; height: 43px; }
  .dglm-brand__mark img { width: 35px; height: 35px; }
  .dglm-brand__copy { min-width: 0; }
  .dglm-brand__copy strong { max-width: 215px; font-size: 18px; overflow: hidden; text-overflow: ellipsis; }
  .dglm-brand__copy small { max-width: 215px; font-size: 6.4px; letter-spacing: 0.1em; overflow: hidden; text-overflow: ellipsis; }
  .dglm-booking-trigger { display: none; }

  .dglm-modal {
    align-items: end;
    padding: 9px;
  }

  .dglm-modal__dialog {
    width: 100%;
    max-height: calc(100svh - 18px);
    padding: 28px 18px 20px;
    border-radius: 23px;
    transform: translateY(36px) scale(0.985);
  }

  .dglm-modal__close { top: 16px; right: 16px; width: 40px; height: 40px; }
  .dglm-modal__header { padding-right: 37px; }
  .dglm-modal__header h2 { font-size: clamp(37px, 11.4vw, 49px); }
  .dglm-modal__header > p { font-size: 11.5px; }

  .dglm-booking-options {
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 24px;
  }

  .dglm-booking-card,
  .dglm-booking-card--featured {
    grid-column: auto;
    min-height: 0;
    padding: 19px;
  }

  .dglm-booking-card h3 { font-size: 25px; }
  .dglm-booking-card__contact { margin-top: 12px; padding-top: 0; }
  .dglm-modal__note { font-size: 9px; }
}

@media (max-width: 390px) {
  .dglm-brand__copy strong,
  .dglm-brand__copy small { max-width: 184px; }
  .dglm-brand__copy strong { font-size: 17px; }
  .dglm-menu-toggle { width: 44px; height: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  .dglm-header-wrap *,
  .dglm-header-wrap *::before,
  .dglm-header-wrap *::after,
  .dglm-modal *,
  .dglm-modal *::before,
  .dglm-modal *::after {
    animation: none !important;
    transition: none !important;
  }
}
