@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&display=swap");

.shared-home-header {
  position: sticky;
  top: 0;
  z-index: 5;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: transparent;
  border-bottom: none;
  box-shadow: none;
  isolation: isolate;
}

.shared-home-header__nav {
  max-width: 1208px;
  margin: 0 auto;
  min-height: 246px;
  padding: calc(env(safe-area-inset-top, 0px) + 10px) 28px 18px;
  display: grid;
  position: relative;
  justify-items: center;
  align-items: start;
  gap: 10px;
  background: transparent;
  z-index: 1;
}

.shared-home-header__logo {
  display: inline-grid;
  position: relative;
  justify-items: center;
  align-items: center;
  min-height: 108px;
  padding: 0;
  color: #f7f1e7;
  z-index: 1;
  font-family: "Cormorant Garamond", serif;
}

.shared-home-header__logo-title {
  display: inline-block;
  font-size: 1em;
}

.shared-home-header__est {
  font-size: 1rem;
  letter-spacing: 0.4em;
  color: rgba(247, 244, 239, 0.7);
  font-weight: 600;
}

html[data-theme="light"] .shared-home-header__logo,
body[data-theme="light"] .shared-home-header__logo,
html[data-auto-theme="light"] .shared-home-header__logo,
body[data-auto-theme="light"] .shared-home-header__logo {
  color: #6f5038;
  text-shadow: 0 1px 8px rgba(255, 250, 243, 0.22);
}

html[data-theme="light"] .shared-home-header__est,
body[data-theme="light"] .shared-home-header__est,
html[data-auto-theme="light"] .shared-home-header__est,
body[data-auto-theme="light"] .shared-home-header__est {
  color: rgba(111, 80, 56, 0.82);
  text-shadow: 0 1px 8px rgba(255, 250, 243, 0.18);
}

.shared-home-header__logo::before {
  display: none;
}

.shared-home-header__logo-image {
  display: none;
  width: min(360px, 44vw);
  max-width: 100%;
  max-height: none;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.18));
}

.shared-home-header__logo.has-image .shared-home-header__logo-image {
  display: block;
}

.shared-home-header__logo.has-image::before {
  display: none;
}

.shared-home-header__logo.has-image .shared-home-header__logo-title,
.shared-home-header__logo.has-image .shared-home-header__est {
  display: none;
}

.shared-home-header__links {
  display: flex;
  gap: 0;
  font-size: 0.94rem;
  font-weight: 700;
  font-family: "Cormorant Garamond", serif;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  color: #111111;
  margin-top: 0;
  white-space: nowrap;
}

.shared-home-header__links .shared-home-header__desktop-link {
  display: none;
}

.shared-home-header__links a {
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: inherit;
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
  opacity: 1;
  position: relative;
  font-size: clamp(0.98rem, 1.18vw, 1.22rem);
  font-weight: 700;
  text-transform: uppercase;
}

.shared-home-header__desktop-button {
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: none;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.shared-home-header__links a:hover {
  color: #ffffff;
  opacity: 1;
  transform: translateY(-1px);
}

.shared-home-header__links a::after {
  display: none;
}

.shared-home-header__links a + a::before {
  content: "|";
  position: absolute;
  left: -1px;
  top: 50%;
  transform: translateY(-52%);
  width: auto;
  height: auto;
  background: transparent;
  color: #111111;
  border-radius: 0;
  font-weight: 400;
}

.shared-home-header__links a + a {
  padding-left: 20px;
}

.shared-home-header__actions {
  width: 100%;
  display: contents;
}

.shared-home-header__utility {
  position: absolute;
  top: 4px;
  left: 26px;
  right: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 2;
  pointer-events: none;
}

.shared-home-header__language-switch {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  min-height: auto;
  min-width: auto;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: "Cormorant Garamond", serif;
  color: #111111;
  white-space: nowrap;
  line-height: 1;
  backdrop-filter: none;
  pointer-events: auto;
  z-index: 1;
}

.shared-home-header__language-switch::before {
  content: var(--language-flag, "🇬🇧");
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  background: transparent;
  color: inherit;
  font-size: 2rem;
  letter-spacing: 0;
  box-shadow: none;
  flex: 0 0 auto;
  pointer-events: none;
}

.shared-home-header__language-switch label {
  display: none;
}

.shared-home-header__language-switch select {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border-radius: inherit;
  border: none;
  background: transparent;
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  color: #111111;
  cursor: pointer;
  appearance: none;
  line-height: 1;
  outline: none;
  opacity: 0;
}

.shared-home-header .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
}

.shared-home-header__menu-button {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  min-width: 70px;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  color: #111111;
  backdrop-filter: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  appearance: none;
  font: inherit;
  pointer-events: auto;
  z-index: 2;
}

.shared-home-header__menu-button:hover {
  transform: translateY(-1px);
}

.shared-home-header__menu-button:focus-visible,
.menu-modal-close:focus-visible,
.menu-modal-link:focus-visible {
  outline: 2px solid rgba(247, 191, 98, 0.95);
  outline-offset: 3px;
}

.shared-home-header__menu-lines {
  display: inline-grid;
  gap: 8px;
}

.shared-home-header__menu-lines span {
  display: block;
  width: 58px;
  height: 6px;
  border-radius: 999px;
  background: #111111;
  opacity: 1;
}

.menu-modal {
  position: fixed;
  inset: 0;
  padding: 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 191, 97, 0.12), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(111, 139, 122, 0.1), transparent 24%),
    linear-gradient(145deg, rgba(255, 250, 242, 0.98), rgba(247, 238, 226, 0.96));
  backdrop-filter: blur(8px);
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

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

.menu-modal-panel {
  width: 100%;
  min-height: 100vh;
  padding: 18px 18px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #17110d;
}

.menu-modal-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  position: relative;
}

.menu-modal-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  border: 1px solid rgba(99, 74, 52, 0.18);
  background: linear-gradient(135deg, rgba(244, 234, 220, 0.96) 0%, rgba(232, 219, 200, 0.96) 100%);
  color: #17110d;
  text-decoration: none;
}

.menu-modal-home-icon {
  width: 31px;
  height: 31px;
  display: inline-flex;
}

.menu-modal-home-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(23, 17, 13, 0.12);
  background: rgba(255, 255, 255, 0.42);
  color: #17110d;
  cursor: pointer;
  appearance: none;
  font-size: 1.6rem;
  line-height: 1;
}

.menu-modal-list {
  display: grid;
  gap: 0;
  width: 100%;
  flex: 1 1 auto;
  align-content: start;
  margin-top: 0;
  justify-items: center;
  padding: 4px 0 30px;
}

.menu-modal-window {
  width: min(100%, 760px);
  display: grid;
  gap: 0;
  padding: 0;
  border-radius: 0;
  position: relative;
  overflow: visible;
  border: none;
  background: transparent;
  box-shadow: none;
}

.menu-modal-window::before {
  display: none;
}

.menu-modal-window--primary,
.menu-modal-window--hospitality,
.menu-modal-window--extras {
  background: transparent;
}

.menu-modal-window .menu-modal-link + .menu-modal-link {
  border-top: none;
}

.menu-modal-window + .menu-modal-window {
  margin-top: 24px;
}

.menu-modal-login {
  width: min(100%, 760px);
  margin-top: auto;
  padding-top: 22px;
}

.menu-modal-login-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 66px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid rgba(101, 73, 49, 0.22);
  background: linear-gradient(135deg, rgba(232, 219, 200, 0.98) 0%, rgba(220, 203, 179, 0.98) 54%, rgba(209, 189, 163, 0.98) 100%);
  box-shadow:
    0 18px 34px rgba(84, 59, 40, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  text-decoration: none;
}

.menu-modal-login-button .menu-modal-link-text,
.menu-modal-login-button .menu-modal-link-text:visited {
  color: #2f2119;
  -webkit-text-fill-color: #2f2119;
}

.menu-modal-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 72px;
  padding: 14px 8px;
  border: none;
  background: transparent;
  transition: transform 0.2s ease, opacity 0.2s ease;
  width: 100%;
  text-align: center;
  text-decoration: none;
  color: #17110d;
}

.menu-modal-link:link,
.menu-modal-link:visited,
.menu-modal-link:hover,
.menu-modal-link:active,
.menu-modal-link:focus {
  text-decoration: none;
  color: #17110d;
  -webkit-text-fill-color: #17110d;
}

button.menu-modal-link {
  width: 100%;
  border: none;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: center;
  font: inherit;
}

.menu-modal-link:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.menu-modal-link-text {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.18rem, 2.5vw, 1.62rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #17110d;
  text-decoration: none;
}

.menu-modal-link .menu-modal-link-text,
.menu-modal-link .menu-modal-link-text:visited {
  text-decoration: none;
  color: #17110d;
  -webkit-text-fill-color: #17110d;
}

.contact-modal {
  position: fixed;
  inset: 0;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  z-index: 21;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

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

.contact-modal-panel {
  width: min(760px, calc(100vw - 32px));
  margin: 0;
  padding: 34px 28px 30px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 191, 97, 0.16), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(111, 139, 122, 0.14), transparent 24%),
    linear-gradient(145deg, rgba(255, 250, 242, 0.98), rgba(247, 238, 226, 0.96));
  border: 1px solid rgba(201, 122, 84, 0.12);
  box-shadow:
    0 20px 38px rgba(78, 52, 35, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  position: relative;
  overflow: hidden;
}

.contact-modal-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0));
  pointer-events: none;
}

.contact-modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(23, 17, 13, 0.12);
  background: rgba(255,255,255,0.42);
  color: #17110d;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 1;
}

.contact-modal-content {
  position: relative;
  z-index: 1;
}

.contact-modal-title {
  margin: 0;
  color: #17110d;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4.3vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-modal-accent {
  width: 108px;
  height: 7px;
  border-radius: 999px;
  margin: 18px auto 26px;
  background: linear-gradient(90deg, #e2b66e 0%, #d58056 100%);
  box-shadow: 0 2px 8px rgba(213, 128, 86, 0.18);
}

.contact-modal-details {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 auto 28px;
  color: #2e2119;
  text-align: center;
}

.contact-modal-detail {
  color: #2e2119 !important;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.2rem, 2.6vw, 1.8rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none !important;
  border-bottom: 2px solid rgba(226, 187, 167, 0.75) !important;
  padding-bottom: 3px;
}

.contact-modal-detail-separator {
  color: rgba(46, 33, 25, 0.56);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
}

.contact-modal-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.contact-modal-location {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(44, 35, 28, 0.08);
  display: grid;
  gap: 14px;
}

.contact-modal-location-title {
  margin: 0;
  color: #17110d;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-modal-location-body {
  display: grid;
  gap: 10px;
}

.contact-modal-location-body p,
.contact-modal-location-body a {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  line-height: 1.55;
  color: #17110d;
  text-align: center;
}

.contact-modal-location-body .location-directions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  margin-top: 2px;
  padding: 11px 16px;
  border-radius: 16px;
  border: 1px solid rgba(111, 139, 122, 0.2);
  background: linear-gradient(135deg, #b8cf8b 0%, #8da665 48%, #6f8b7a 100%);
  box-shadow:
    0 14px 24px rgba(84, 106, 74, 0.18),
    inset 0 1px 0 rgba(247, 255, 233, 0.46);
  color: #fff !important;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none !important;
  border-bottom: none !important;
}

.contact-modal-action {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 122px;
  padding: 18px 18px;
  border-radius: 28px;
  text-decoration: none;
  color: #fff !important;
  border: 1px solid rgba(111, 139, 122, 0.2);
  background: linear-gradient(135deg, #b8cf8b 0%, #8da665 48%, #6f8b7a 100%);
  box-shadow:
    0 12px 22px rgba(84, 106, 74, 0.16),
    inset 0 1px 0 rgba(247, 255, 233, 0.46);
  border-bottom: none !important;
  text-align: center;
}

.contact-modal-action-label {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-modal-action:hover {
  transform: translateY(-1px);
}

.shared-info-modal {
  position: fixed;
  inset: 0;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  z-index: 21;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

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

.shared-info-modal-panel {
  width: min(760px, calc(100vw - 32px));
  margin: 0;
  padding: 28px 28px 26px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 191, 97, 0.16), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(111, 139, 122, 0.14), transparent 24%),
    linear-gradient(145deg, rgba(255, 250, 242, 0.98), rgba(247, 238, 226, 0.96));
  border: 1px solid rgba(201, 122, 84, 0.12);
  box-shadow:
    0 20px 38px rgba(78, 52, 35, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  overflow: hidden;
  position: relative;
}

.shared-info-modal-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0));
  pointer-events: none;
}

.shared-info-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.shared-info-modal-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #17110d;
  text-align: center;
}

.shared-info-modal-title::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin: 12px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #f1b259 0%, #d06e52 100%);
}

.shared-info-modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(23, 17, 13, 0.12);
  background: rgba(255,255,255,0.42);
  color: #17110d;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

.shared-info-modal-body {
  margin-top: 18px;
  color: #17110d;
  display: grid;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.shared-info-modal-body .hours-list {
  display: grid;
  gap: 0;
  text-align: center;
}

.shared-info-modal-body .hours-row {
  display: grid;
  gap: 4px;
  padding: 12px 0;
  border-top: 1px solid rgba(23, 17, 13, 0.08);
  justify-items: center;
}

.shared-info-modal-body .hours-row:first-child {
  border-top: none;
  padding-top: 0;
}

.shared-info-modal-body .hours-row:last-child {
  padding-bottom: 0;
}

.shared-info-modal-body .hours-row-main,
.shared-info-modal-body .hours-row-note {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  color: #17110d;
}

.shared-info-modal-body .hours-row-main {
  font-size: 1.18rem;
  line-height: 1.4;
  text-align: center;
}

.shared-info-modal-body .hours-row-note {
  font-size: 1rem;
  line-height: 1.45;
  color: rgba(23, 17, 13, 0.72);
  text-align: center;
}

.shared-info-modal-body .hours-row-start {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.08rem;
  line-height: 1.35;
  font-weight: 700;
  color: rgba(23, 17, 13, 0.84);
  text-align: center;
}

.shared-info-modal-body p,
.shared-info-modal-body a {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.16rem;
  line-height: 1.55;
  color: inherit;
  margin: 0;
}

.shared-info-modal-body[data-info-kind="events"],
.shared-info-modal-body[data-info-kind="services"] {
  gap: 0;
}

.shared-info-modal-body[data-info-kind="events"] p {
  text-align: center;
  font-size: 1.18rem;
  line-height: 1.5;
  padding: 14px 0;
}

.shared-info-modal-body[data-info-kind="events"] p + p {
  position: relative;
  margin-top: 6px;
  padding-top: 24px;
}

.shared-info-modal-body[data-info-kind="events"] p + p::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 84px;
  height: 4px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(90deg, #f1b259 0%, #d06e52 100%);
}

.services-popup-shell {
  display: grid;
  gap: 18px;
}

.services-popup-subtitle {
  text-align: center;
  font-size: 1.14rem !important;
  line-height: 1.55 !important;
  color: rgba(23, 17, 13, 0.76) !important;
}

.services-popup-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.services-popup-card {
  padding: 16px 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(121, 87, 57, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 248, 239, 0.94)),
    radial-gradient(circle at 12% 18%, rgba(230, 181, 104, 0.12), transparent 34%);
  box-shadow:
    0 12px 28px rgba(84, 59, 40, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.56);
}

.services-popup-card p {
  margin: 0;
  text-align: left;
  font-size: 1.08rem !important;
  line-height: 1.5 !important;
  padding: 0 !important;
}

.services-popup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.services-popup-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 18px;
  border-radius: 18px;
  border: 1px solid rgba(111, 139, 122, 0.2);
  background: linear-gradient(135deg, #b8cf8b 0%, #8da665 48%, #6f8b7a 100%);
  box-shadow:
    0 14px 24px rgba(84, 106, 74, 0.18),
    inset 0 1px 0 rgba(247, 255, 233, 0.46);
  color: #fff !important;
  text-decoration: none !important;
  border-bottom: none !important;
  font-weight: 800 !important;
  font-size: 0.88rem !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.services-popup-action.secondary {
  background: linear-gradient(135deg, #17110d 0%, #3a2b22 54%, #5d4030 100%);
  box-shadow:
    0 16px 28px rgba(54, 37, 25, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.services-popup-note {
  text-align: center;
  font-size: 0.98rem !important;
  line-height: 1.55 !important;
  color: rgba(23, 17, 13, 0.66) !important;
}

.shared-info-modal-body a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(208, 110, 82, 0.3);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.shared-info-modal-body a:hover {
  color: #b85f49;
  border-color: rgba(208, 110, 82, 0.65);
}

.shared-info-modal-body .location-directions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  width: 100%;
  min-height: 52px;
  padding: 11px 16px;
  border-radius: 16px;
  border: 1px solid rgba(111, 139, 122, 0.2);
  background: linear-gradient(135deg, #b8cf8b 0%, #8da665 48%, #6f8b7a 100%);
  box-shadow:
    0 14px 24px rgba(84, 106, 74, 0.18),
    inset 0 1px 0 rgba(247, 255, 233, 0.46);
  color: #fff !important;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none !important;
  border-bottom: none !important;
}

@media (min-width: 1024px) {
  .shared-home-header {
    position: relative;
    top: auto;
    z-index: 7;
  }

  .shared-home-header__nav {
    max-width: 1360px;
    min-height: 214px;
    padding: calc(env(safe-area-inset-top, 0px) + 6px) 38px 18px;
    gap: 12px;
  }

  .shared-home-header__logo {
    min-height: 84px;
    margin-top: 6px;
  }

  .shared-home-header__logo-image {
    width: min(360px, 30vw);
    filter: drop-shadow(0 10px 22px rgba(110, 86, 58, 0.1));
  }

  .shared-home-header__links {
    margin-top: 8px;
    max-width: 1110px;
    padding: 14px 20px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(246, 238, 226, 0.9));
    box-shadow:
      0 18px 38px rgba(122, 97, 68, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 12px;
    white-space: normal;
  }

  .shared-home-header__primary-link {
    display: none;
  }

  .shared-home-header__links .shared-home-header__desktop-link {
    display: inline-flex;
  }

  .shared-home-header__links a,
  .shared-home-header__desktop-button {
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(164, 137, 102, 0.08);
    font-size: clamp(0.82rem, 0.72vw, 0.94rem);
    letter-spacing: 0.06em;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(249, 244, 236, 0.82));
    box-shadow:
      0 8px 16px rgba(154, 128, 93, 0.06),
      inset 0 1px 0 rgba(255, 255, 255, 0.95);
    color: #3b2e23;
  }

  .shared-home-header__links a + a::before {
    display: none;
  }

  .shared-home-header__links a + a,
  .shared-home-header__desktop-button {
    padding-left: 16px;
  }

  .shared-home-header__utility {
    top: 12px;
    left: 34px;
    right: 34px;
    justify-content: flex-end;
  }

  .shared-home-header__language-switch {
    color: #8b2f2b;
  }

  .shared-home-header__language-switch::before {
    font-size: 1.55rem;
  }

  .shared-home-header__menu-button {
    display: none;
  }
}

@media (max-width: 720px) {
  .shared-home-header__nav {
    min-height: auto;
    padding: calc(env(safe-area-inset-top, 0px) + 8px) 12px 16px;
    gap: 12px;
    grid-template-columns: minmax(42px, 1fr) auto minmax(42px, 1fr);
    grid-template-areas:
      "menu logo language"
      "links links links";
    align-items: center;
  }

  .shared-home-header__logo {
    grid-area: logo;
    min-height: 64px;
    margin: 0;
  }

  html[data-theme="light"] .shared-home-header__logo,
  body[data-theme="light"] .shared-home-header__logo,
  html[data-auto-theme="light"] .shared-home-header__logo,
  body[data-auto-theme="light"] .shared-home-header__logo {
    color: #6a4b35;
    text-shadow:
      0 1px 10px rgba(255, 250, 243, 0.26),
      0 0 1px rgba(255, 250, 243, 0.32);
  }

  html[data-theme="light"] .shared-home-header__est,
  body[data-theme="light"] .shared-home-header__est,
  html[data-auto-theme="light"] .shared-home-header__est,
  body[data-auto-theme="light"] .shared-home-header__est {
    color: rgba(106, 75, 53, 0.84);
    text-shadow: 0 1px 10px rgba(255, 250, 243, 0.22);
  }

  .shared-home-header__logo-image {
    width: min(214px, 50vw);
  }

  .shared-home-header__links {
    grid-area: links;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 0;
    white-space: normal;
  }

  .shared-home-header__links a {
    min-width: 0;
    min-height: 48px;
    justify-content: center;
    padding: 8px 7px;
    border-radius: 16px;
    border: 1px solid rgba(164, 137, 102, 0.12);
    background: linear-gradient(180deg, rgba(255, 252, 247, 0.94), rgba(246, 238, 226, 0.88));
    box-shadow:
      0 8px 20px rgba(122, 97, 68, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.86);
    font-size: 0.82rem;
    line-height: 1.18;
    letter-spacing: 0.045em;
    text-align: center;
  }

  .shared-home-header__links a + a::before {
    display: none;
  }

  .shared-home-header__links a + a {
    padding-left: 7px;
  }

  .shared-home-header__utility {
    position: static;
    grid-area: menu / menu / language / language;
    display: grid;
    grid-template-columns: minmax(42px, 1fr) auto minmax(42px, 1fr);
    grid-template-areas: "menu spacer language";
    align-items: center;
    width: 100%;
    gap: 10px;
    pointer-events: auto;
  }

  .shared-home-header__language-switch {
    grid-area: language;
    min-height: auto;
    min-width: auto;
    padding: 0;
    border-radius: 0;
    justify-self: end;
  }

  .shared-home-header__language-switch::before {
    font-size: 1.7rem;
  }

  .shared-home-header__menu-button {
    grid-area: menu;
    min-height: auto;
    min-width: auto;
    padding: 0;
    border-radius: 0;
    justify-self: start;
  }

  .shared-home-header__menu-lines span {
    width: 29px;
    height: 4px;
  }

  .shared-home-header__menu-lines {
    gap: 5px;
  }

  .shared-home-header[data-current-language="el"] .shared-home-header__links a,
  [data-shared-home-header][data-current-language="el"] .shared-home-header__links a {
    font-size: 0.74rem;
    letter-spacing: 0.025em;
    line-height: 1.15;
    text-transform: none;
  }

  .menu-modal-panel {
    padding: 16px 16px 24px;
    min-height: 100dvh;
  }

  .menu-modal-home {
    width: 62px;
    height: 62px;
  }

  .menu-modal-home-icon {
    width: 26px;
    height: 26px;
  }

  .menu-modal-list {
    gap: 0;
    padding-bottom: 24px;
  }

  .menu-modal-window {
    padding: 0;
  }

  .menu-modal-window + .menu-modal-window {
    margin-top: 20px;
  }

  .menu-modal-link {
    min-height: 58px;
    padding: 10px 4px;
  }

  .menu-modal-link-text {
    font-size: 1.08rem;
    letter-spacing: 0.04em;
  }

  .menu-modal-login-button {
    min-height: 58px;
    padding: 12px 18px;
  }

  .contact-modal {
    padding: 16px;
  }

  .contact-modal-panel {
    width: min(100%, calc(100vw - 24px));
    margin: 0;
    padding: 24px 20px 22px;
    border-radius: 22px;
  }

  .contact-modal-title {
    font-size: 2.1rem;
  }

  .contact-modal-accent {
    width: 84px;
    height: 6px;
    margin: 14px auto 20px;
  }

  .contact-modal-details {
    gap: 10px;
    margin-bottom: 20px;
  }

  .contact-modal-detail {
    font-size: 1rem;
  }

  .contact-modal-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-modal-action {
    min-height: 58px;
    border-radius: 18px;
  }

  .contact-modal-location {
    margin-top: 20px;
    padding-top: 18px;
  }

  .contact-modal-location-body p,
  .contact-modal-location-body a {
    font-size: 1rem;
  }

  .shared-info-modal {
    padding: 16px;
  }

  .shared-info-modal-panel {
    width: min(100%, calc(100vw - 24px));
    margin: 0;
    padding: 20px 20px 18px;
    border-radius: 22px;
  }

  .shared-info-modal-title {
    font-size: 1.7rem;
  }

  .shared-info-modal-body p,
  .shared-info-modal-body a {
    font-size: 1rem;
  }

  .services-popup-grid {
    grid-template-columns: 1fr;
  }
}
