:root {
  --text: #4d3142;
  --text-soft: #7a6170;
  --primary: #f05d9c;
  --primary-deep: #cc3f7d;
  --line: rgba(239, 180, 205, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(255, 212, 230, 0.9), transparent 26%),
    radial-gradient(circle at 85% 18%, rgba(255, 230, 240, 0.92), transparent 24%),
    linear-gradient(180deg, #fffafc 0%, #fff2f7 100%);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: 0;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(10px);
}

body::before {
  top: 90px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: rgba(255, 205, 226, 0.55);
}

body::after {
  bottom: 120px;
  left: -90px;
  width: 240px;
  height: 240px;
  background: rgba(252, 219, 234, 0.55);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 48px;
}

.site-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 34px;
  padding: 18px 26px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  box-shadow: 0 12px 38px rgba(194, 120, 152, 0.15);
  backdrop-filter: blur(18px);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex: 0 0 auto;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 72px;
  height: 72px;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 28px rgba(240, 93, 156, 0.2);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.brand-copy {
  min-width: 0;
}

.brand-name {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}

.header-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  flex: 1 1 auto;
  min-width: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  justify-self: center;
  width: min(100%, 590px);
  padding: 7px;
  background: rgba(255, 244, 249, 0.84);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.site-nav a {
  padding: 14px 18px;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 15px;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  transform: translateY(-1px);
  outline: none;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(239, 180, 205, 0.5);
  border-radius: 16px;
  background: rgba(255, 249, 252, 0.92);
  box-shadow: 0 10px 24px rgba(240, 93, 156, 0.12);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary-deep);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle:focus-visible {
  outline: 2px solid rgba(240, 93, 156, 0.45);
  outline-offset: 3px;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary) 0%, #f684b5 100%);
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 16px 34px rgba(240, 93, 156, 0.24);
  transition: transform 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.page-main {
  display: grid;
  gap: 22px;
  margin-top: 24px;
}

.page-panel {
  padding: 38px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 40px;
  box-shadow: 0 18px 48px rgba(201, 127, 161, 0.12);
  backdrop-filter: blur(14px);
}

.eyebrow,
.breadcrumbs {
  color: var(--text-soft);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 16px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 232, 241, 0.92);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 14px;
}

.page-title,
.page-section-title,
.content-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
}

.page-title {
  max-width: 13ch;
  font-size: clamp(2.9rem, 6vw, 5rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.page-lead {
  max-width: 62ch;
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.75;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 247, 251, 0.96);
  color: var(--text);
  font-weight: 500;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: start;
}

.contact-hero-copy {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.contact-hero-image {
  display: block;
  width: 100%;
  max-width: 430px;
  margin: 24px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 248, 251, 0.97);
  box-shadow: 0 16px 36px rgba(201, 127, 161, 0.12);
}

.contact-hero-image img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
}

.visit-form {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 248, 251, 0.97);
  box-shadow: 0 14px 34px rgba(201, 127, 161, 0.1);
}

.visit-form h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1;
}

.visit-form > p {
  margin: 10px 0 20px;
  color: var(--text-soft);
  line-height: 1.65;
}

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

.visit-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
}

.visit-form input,
.visit-form select,
.visit-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font: inherit;
  font-weight: 400;
  padding: 0 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.visit-form textarea {
  min-height: 112px;
  margin-top: 14px;
  padding: 12px 14px;
  resize: vertical;
}

.visit-form input:focus,
.visit-form select:focus,
.visit-form textarea:focus {
  border-color: rgba(240, 93, 156, 0.7);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(240, 93, 156, 0.12);
  outline: none;
}

.form-honey {
  display: none;
}

.form-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  margin-top: 14px;
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.45;
}

.form-consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--primary);
}

.form-submit {
  width: 100%;
  min-height: 54px;
  margin-top: 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary) 0%, #f684b5 100%);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(240, 93, 156, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.form-submit:hover,
.form-submit:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(240, 93, 156, 0.28);
  outline: none;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-status {
  margin: 14px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(204, 63, 125, 0.24);
  border-radius: 16px;
  background: rgba(255, 232, 241, 0.84);
  color: var(--primary-deep);
  font-size: 0.92rem;
  line-height: 1.55;
}

.form-success {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(94, 166, 122, 0.28);
  border-radius: 18px;
  background: rgba(239, 255, 245, 0.92);
  color: #2f6c47;
  opacity: 0;
  transform: translateY(8px) scale(0.98);
}

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

.form-success.is-visible {
  animation: success-pop 520ms ease forwards;
}

.form-success p {
  margin: 3px 0 0;
  color: #477c5a;
  font-size: 0.92rem;
  line-height: 1.5;
}

.form-success-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #58b878;
}

.form-success-icon::before {
  content: "";
  width: 15px;
  height: 8px;
  border-bottom: 3px solid #fff;
  border-left: 3px solid #fff;
  transform: translateY(-1px) rotate(-45deg);
}

@keyframes success-pop {
  0% {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }

  70% {
    opacity: 1;
    transform: translateY(-2px) scale(1.01);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.page-section-title {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1;
}

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

.content-card {
  display: block;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 248, 251, 0.97);
  box-shadow: 0 12px 28px rgba(201, 127, 161, 0.08);
}

.content-card h3 {
  margin-bottom: 12px;
  font-size: 2rem;
  line-height: 1;
}

.content-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.72;
}

.location-card {
  grid-column: auto;
}

.location-address {
  margin-top: 10px;
}

.map-frame {
  position: relative;
  width: 100%;
  min-height: 230px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 248, 251, 0.97);
  box-shadow: 0 12px 28px rgba(201, 127, 161, 0.1);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 230px;
  border: 0;
}

.map-cover {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

.map-cover:focus-visible {
  outline: 3px solid rgba(240, 93, 156, 0.5);
  outline-offset: -5px;
}

.map-button {
  width: 100%;
  margin-top: 16px;
  font-weight: 700;
}

html.has-js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

html.has-js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.section-heading > p:not(.eyebrow) {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.75;
}

.ambience-hero {
  position: relative;
  overflow: hidden;
}

.ambience-hero::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -120px;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: rgba(240, 93, 156, 0.1);
  pointer-events: none;
}

.ambience-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 34px;
  align-items: center;
}

.ambience-hero .page-title {
  max-width: 12ch;
}

.ambience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.ambience-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 232, 241, 0.78);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
}

.ambience-hero-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.58fr);
  gap: 14px;
  min-height: 540px;
}

.ambience-photo,
.ambience-step figure,
.showcase-wide,
.showcase-small {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 248, 251, 0.97);
  box-shadow: 0 16px 38px rgba(201, 127, 161, 0.12);
}

.ambience-photo {
  border-radius: 32px;
}

.ambience-photo-main {
  min-height: 540px;
}

.ambience-photo-side {
  min-height: 450px;
  margin-top: 52px;
}

.ambience-photo img,
.ambience-step img,
.showcase-wide img,
.showcase-small img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ambience-photo figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 18px;
  background: rgba(77, 49, 66, 0.72);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.ambience-steps {
  display: grid;
  gap: 18px;
}

.ambience-step {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255, 248, 251, 0.97);
  box-shadow: 0 12px 28px rgba(201, 127, 161, 0.08);
}

.ambience-step:nth-child(even) figure {
  grid-column: 2;
}

.ambience-step:nth-child(even) > div {
  grid-column: 1;
  grid-row: 1;
}

.ambience-step figure {
  min-height: 245px;
  border-radius: 26px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 34px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(240, 93, 156, 0.12);
  color: var(--primary-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.ambience-step h3,
.showcase-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
}

.ambience-step h3 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 3vw, 2.65rem);
  line-height: 0.98;
}

.ambience-step p,
.showcase-copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.ambience-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ambience-card {
  position: relative;
  overflow: hidden;
}

.ambience-card::before {
  content: "";
  display: block;
  width: 42px;
  height: 4px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), rgba(240, 93, 156, 0.12));
}

.ambience-card h3 {
  font-size: 1.8rem;
}

.ambience-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  grid-template-areas:
    "wide copy"
    "wide small";
  gap: 18px;
  align-items: stretch;
}

.showcase-wide {
  grid-area: wide;
  min-height: 520px;
  border-radius: 32px;
}

.showcase-copy {
  grid-area: copy;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(240, 93, 156, 0.15), transparent 34%),
    rgba(255, 248, 251, 0.97);
  box-shadow: 0 12px 28px rgba(201, 127, 161, 0.08);
}

.showcase-copy .page-section-title {
  margin-bottom: 14px;
}

.showcase-copy .header-cta {
  width: fit-content;
  margin-top: 22px;
}

.showcase-small {
  grid-area: small;
  min-height: 280px;
  border-radius: 28px;
}

.timeline-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 122, 191, 0.22), transparent 22%),
    radial-gradient(circle at 82% 24%, rgba(253, 185, 222, 0.16), transparent 26%),
    linear-gradient(180deg, #14091d 0%, #1f0f2b 52%, #120714 100%);
  border-color: rgba(255, 202, 227, 0.12);
  box-shadow: 0 24px 64px rgba(78, 15, 51, 0.34);
}

.timeline-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 28%, rgba(255, 255, 255, 0.1) 0, rgba(255, 255, 255, 0) 30%),
    radial-gradient(circle at 70% 70%, rgba(255, 121, 198, 0.12) 0, rgba(255, 121, 198, 0) 32%);
  pointer-events: none;
}

.timeline-panel > * {
  position: relative;
  z-index: 1;
}

.timeline-panel .eyebrow {
  border-color: rgba(255, 182, 221, 0.26);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 227, 239, 0.92);
}

.timeline-title,
.timeline-lead,
.timeline-card h3,
.timeline-card p,
.timeline-year {
  color: #fff;
}

.timeline-title {
  margin-bottom: 14px;
}

.timeline-lead {
  max-width: 68ch;
  margin: 0;
  color: rgba(248, 231, 240, 0.82);
  font-size: 1rem;
  line-height: 1.8;
}

.history-timeline {
  position: relative;
  display: grid;
  gap: 28px;
  margin-top: 30px;
}

.history-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 79, 196, 0.15), rgba(255, 209, 240, 0.95), rgba(255, 79, 196, 0.18));
  box-shadow: 0 0 26px rgba(244, 114, 182, 0.42);
}

.timeline-entry {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
}

.timeline-entry::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: #fff;
  box-shadow:
    0 0 0 8px rgba(244, 114, 182, 0.18),
    0 0 24px rgba(255, 109, 188, 0.88);
}

.timeline-entry:nth-child(even) .timeline-card {
  grid-column: 2;
}

.timeline-entry:nth-child(even) .timeline-media {
  grid-column: 1;
  grid-row: 1;
}

.timeline-card,
.timeline-media {
  border: 1px solid rgba(255, 202, 227, 0.14);
  border-radius: 28px;
  overflow: hidden;
}

.timeline-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.timeline-year {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timeline-card h3 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
}

.timeline-card p {
  margin: 0;
  color: rgba(248, 231, 240, 0.85);
  line-height: 1.75;
}

.timeline-media {
  min-height: 280px;
  background: rgba(255, 255, 255, 0.08);
}

.timeline-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: block;
  object-fit: cover;
}

@media (max-width: 980px) {
  .ambience-hero-grid,
  .ambience-showcase {
    grid-template-columns: 1fr;
  }

  .ambience-hero-gallery {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.7fr);
  }

  .ambience-photo-main,
  .ambience-photo-side {
    min-height: 420px;
  }

  .ambience-photo-side {
    margin-top: 28px;
  }

  .ambience-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ambience-showcase {
    grid-template-areas:
      "copy"
      "wide"
      "small";
  }

  .showcase-wide {
    min-height: 420px;
  }

  .showcase-small {
    min-height: 340px;
  }

  .contact-hero {
    grid-template-columns: 1fr;
  }

  .contact-hero-image {
    max-width: 560px;
  }

  .site-header {
    gap: 24px;
  }

  .brand-name {
    font-size: 30px;
  }

  .site-nav {
    width: min(100%, 520px);
  }

  .site-nav a {
    padding-inline: 16px;
  }
}

@media (max-width: 860px) {
  .section-grid {
    grid-template-columns: 1fr;
  }

  .ambience-step,
  .ambience-step:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .ambience-step:nth-child(even) figure,
  .ambience-step:nth-child(even) > div {
    grid-column: auto;
    grid-row: auto;
  }

  .location-card {
    grid-column: 1;
  }

  .page-panel {
    padding: 28px;
  }

  .history-timeline::before {
    left: 24px;
    transform: none;
  }

  .timeline-entry {
    grid-template-columns: 1fr;
    padding-left: 42px;
  }

  .timeline-entry::before {
    left: 24px;
  }

  .timeline-entry:nth-child(even) .timeline-card,
  .timeline-entry:nth-child(even) .timeline-media {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 20px, 100%);
    padding-top: 10px;
  }

  .site-header {
    display: block;
    padding: 16px;
    border-radius: 32px;
  }

  .header-bar {
    width: 100%;
  }

  .brand-lockup {
    gap: 12px;
    min-width: 0;
    flex: 1 1 auto;
  }

  .brand-mark {
    width: 56px;
    height: 56px;
    border-radius: 17px;
  }

  .brand-name {
    font-size: 22px;
  }

  .menu-toggle {
    display: inline-flex;
    flex-shrink: 0;
  }

  .header-panel {
    display: none;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .site-header.is-open .header-panel {
    display: flex;
  }

  .site-header.is-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.is-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .site-nav a {
    min-height: 54px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 247, 251, 0.96);
    font-size: 16px;
  }

  .header-cta {
    width: 100%;
    min-height: 56px;
  }

  .page-panel {
    padding: 24px;
    border-radius: 30px;
  }

  .ambience-hero-grid {
    gap: 26px;
  }

  .ambience-hero-gallery {
    grid-template-columns: 1fr;
  }

  .ambience-photo-main,
  .ambience-photo-side {
    min-height: 330px;
  }

  .ambience-photo-side {
    margin-top: 0;
  }

  .ambience-photo,
  .ambience-step,
  .showcase-wide,
  .showcase-copy,
  .showcase-small {
    border-radius: 24px;
  }

  .ambience-step {
    padding: 14px;
    gap: 18px;
  }

  .ambience-step figure {
    min-height: 235px;
    border-radius: 20px;
  }

  .ambience-card-grid {
    grid-template-columns: 1fr;
  }

  .showcase-wide,
  .showcase-small {
    min-height: 300px;
  }

  .showcase-copy {
    padding: 22px;
  }

  .showcase-copy .header-cta {
    width: 100%;
  }

  .page-title {
    max-width: none;
    font-size: clamp(2.3rem, 11vw, 3.6rem);
  }

  .page-actions,
  .secondary-link {
    width: 100%;
  }

  .secondary-link {
    justify-content: center;
  }

  .contact-hero-image {
    width: 100%;
    max-width: none;
    border-radius: 24px;
  }

  .contact-hero-image img {
    height: 260px;
  }

  .content-card {
    padding: 22px;
  }

  .visit-form {
    padding: 22px;
    border-radius: 24px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .map-frame {
    min-height: 260px;
  }

  .map-frame iframe {
    height: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html.has-js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
