.location {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(212, 184, 120, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 247, 240, 0.98));
  color: var(--color-text);
}

.location__inner {
  display: grid;
  width: min(100% - (clamp(20px, 2.5vw, 40px) * 2), 1480px);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1.1fr);
  align-items: stretch;
  gap: clamp(48px, 4vw, 56px);
  padding: clamp(82px, 8vw, 126px) 0 clamp(92px, 8vw, 132px);
}

.location__content {
  display: grid;
  width: 100%;
  max-width: 740px;
  align-content: center;
  gap: clamp(24px, 2.4vw, 36px);
}

.location__header {
  display: grid;
  width: 100%;
  max-width: 620px;
  margin-inline: auto;
  gap: clamp(16px, 1.4vw, 22px);
  text-align: center;
}

.location__eyebrow {
  margin: 0;
  color: var(--color-gold-dark);
  font-family: var(--font-family-en);
  font-size: clamp(22px, 1.65vw, 28px);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.03em;
}

.location__description {
  max-width: 520px;
  margin: 0 auto;
  color: var(--color-text-muted);
  font-family: var(--font-family-base);
  font-size: clamp(16px, 1.1vw, 18px);
  font-weight: var(--font-weight-regular);
  line-height: 1.7;
  word-break: keep-all;
}

.location__info-card {
  width: 100%;
  padding: clamp(28px, 2.8vw, 44px);
  border: 1px solid rgba(200, 164, 93, 0.2);
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.74);
  box-shadow: 0 22px 70px rgba(34, 34, 34, 0.07);
  backdrop-filter: blur(10px);
}

.location__list {
  display: grid;
  width: 100%;
  gap: 0;
  margin: 0 auto;
}

.location__item {
  display: grid;
  min-height: 96px;
  grid-template-columns: 116px minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 2.2vw, 32px);
  padding: clamp(20px, 1.8vw, 26px) clamp(4px, 0.8vw, 12px);
  border-top: 1px solid rgba(156, 122, 47, 0.16);
}

.location__item:first-child {
  padding-top: 0;
  border-top: 0;
}

.location__item:last-child {
  padding-bottom: 0;
}

.location__item dt {
  display: flex;
  align-self: stretch;
  align-items: center;
  justify-content: center;
  padding-right: clamp(18px, 1.6vw, 24px);
  border-right: 1px solid rgba(197, 158, 84, 0.28);
  color: var(--color-primary-dark);
  font-size: clamp(14px, 1vw, 15px);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.02em;
  text-align: center;
}

.location__item dd {
  align-self: center;
  margin: 0;
  color: rgba(42, 36, 28, 0.82);
  font-size: clamp(16px, 1.1vw, 17px);
  line-height: 1.82;
  word-break: keep-all;
}

.location__contact-link {
  color: inherit;
  text-decoration: none;
}

.location__contact-link:hover,
.location__contact-link:focus-visible {
  color: var(--color-primary-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.location__map {
  position: relative;
  min-height: clamp(640px, 45vw, 680px);
  overflow: hidden;
  border: 1px solid rgba(200, 164, 93, 0.2);
  border-radius: 32px;
  background: #f7f1e8;
  box-shadow: 0 32px 90px rgba(34, 34, 34, 0.13);
}

.location__map-canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 640px;
}

.location__map-fallback {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  padding: var(--spacing-6);
  background:
    radial-gradient(circle at 50% 42%, rgba(212, 184, 120, 0.2), transparent 34%),
    #f7f1e8;
  color: rgba(58, 52, 43, 0.76);
  font-size: var(--font-size-base);
  text-align: center;
}

.location__map-fallback[hidden] {
  display: none;
}

.location__map-fallback p {
  margin: 0;
}

.location__map-overlay {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 16px;
  border: 1px solid rgba(197, 158, 84, 0.35);
  border-radius: 16px;
  background: rgba(255, 252, 246, 0.96);
  color: #1f1b18;
  font-weight: var(--font-weight-bold);
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 14px 30px rgba(70, 49, 20, 0.16);
}

.location__map-overlay span {
  color: #a77a2a;
  font-size: 13px;
}

.location__map-link {
  position: absolute;
  right: clamp(16px, 1.8vw, 24px);
  bottom: clamp(16px, 1.8vw, 24px);
  z-index: 10;
  display: inline-flex;
  min-height: var(--button-height-md);
  align-items: center;
  justify-content: center;
  padding: 0 var(--button-padding-x-md);
  border: 1px solid rgba(200, 164, 93, 0.5);
  border-radius: var(--radius-full);
  background: rgba(255, 253, 248, 0.94);
  color: var(--color-charcoal);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(34, 34, 34, 0.14);
  backdrop-filter: blur(10px);
  transition:
    background-color var(--transition-fast),
    transform var(--transition-fast);
}

.location__map-link:hover {
  background: #ead8b0;
  transform: translateY(-2px);
}

.location__map-link:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
}

.location__actions {
  display: flex;
  width: 100%;
  flex-wrap: nowrap;
  gap: 14px;
  align-self: start;
}

.location__button {
  display: inline-flex;
  min-width: 0;
  min-height: var(--button-height-lg);
  flex: 1 1 0;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(12px, 1.4vw, 22px);
  border: 1px solid rgba(200, 164, 93, 0.36);
  border-radius: var(--radius-full);
  background: rgba(255, 253, 248, 0.78);
  color: var(--color-primary-dark);
  font-size: 15px;
  font-weight: var(--font-weight-semibold);
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  transition:
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast),
    transform var(--transition-fast);
}

.location__button:hover {
  border-color: rgba(156, 122, 47, 0.5);
  background: rgba(234, 216, 176, 0.34);
  color: var(--color-charcoal);
  transform: translateY(-2px);
}

.location__button:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
}

.location__button--primary {
  border-color: rgba(200, 164, 93, 0.42);
  background: rgba(255, 253, 248, 0.82);
  color: var(--color-primary-dark);
  box-shadow: none;
}

.location__button--primary:hover {
  background: rgba(234, 216, 176, 0.38);
}

.location__button--secondary,
.location__button--ghost {
  border-color: rgba(200, 164, 93, 0.36);
  background: rgba(255, 253, 248, 0.78);
  color: var(--color-primary-dark);
}

.location__button--secondary:hover,
.location__button--ghost:hover {
  border-color: rgba(156, 122, 47, 0.5);
  color: var(--color-charcoal);
}

.location__button:nth-child(1) {
  transition-delay: 100ms;
}

.location__button:nth-child(2) {
  transition-delay: 200ms;
}

.location__button:nth-child(3) {
  transition-delay: 300ms;
}

.location__button:nth-child(4) {
  transition-delay: 400ms;
}

@media (prefers-reduced-motion: reduce) {
  .location__button {
    transition: none;
  }
}

@media (max-width: 1180px) {
  .location__inner {
    width: min(100% - (var(--container-padding-mobile) * 2), var(--container-max-width));
    grid-template-columns: 1fr;
    gap: clamp(28px, 6vw, 44px);
    padding: clamp(64px, 10vw, 88px) 0;
  }

  .location__map {
    min-height: clamp(380px, 72vw, 560px);
  }

  .location__content {
    max-width: none;
  }

  .location__map-canvas {
    min-height: 380px;
  }

  .location__actions {
    gap: 10px;
  }

  .location__button {
    flex: 1 1 0;
  }
}

@media (max-width: 768px) {
  .location__item {
    min-height: 0;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 6px;
    padding: var(--spacing-5) 0;
  }

  .location__item dt,
  .location__item dd {
    align-self: start;
  }

  .location__item dt {
    display: block;
    padding-right: 0;
    border-right: 0;
    text-align: left;
  }

  .location__actions {
    flex-wrap: wrap;
  }

  .location__button {
    flex: 1 1 calc(50% - 7px);
  }

  .location__map,
  .location__map-canvas {
    min-height: 380px;
  }
}

@media (max-width: 640px) {
  .location__inner {
    padding: 56px 0 72px;
  }

  .location__info-card {
    padding: var(--spacing-6);
    border-radius: 22px;
  }

  .location__map {
    min-height: 360px;
    border-radius: 22px;
  }

  .location__map-canvas {
    min-height: 360px;
  }

  .location__map-link {
    right: var(--spacing-3);
    bottom: var(--spacing-3);
  }

  .location__button {
    width: 100%;
    min-height: 58px;
    flex-basis: 100%;
  }
}

@media (max-width: 767px) {
  .location__inner {
    gap: 28px;
    padding: 44px 0 58px;
  }

  .location__content {
    gap: 20px;
  }

  .location__header {
    gap: 10px;
  }

  .location__info-card {
    padding: 20px;
    border-radius: 20px;
  }

  .location__item {
    gap: 4px;
    padding: 14px 0;
  }

  .location__item dt {
    font-size: 13px;
  }

  .location__item dd {
    font-size: 15px;
    line-height: 1.62;
  }

  .location__actions {
    gap: 8px;
  }

  .location__button {
    min-height: 50px;
    flex-basis: calc(50% - 4px);
    font-size: 14px;
  }
}
