:root {
  --paper: #f5ead8;
  --paper-soft: #fbf6ec;
  --ink: #261b18;
  --muted: #716053;
  --mahogany: #5a1f1f;
  --mahogany-dark: #351514;
  --vermilion: #b43345;
  --jade: #315d50;
  --brass: #b98742;
  --line: rgba(38, 27, 24, 0.18);
  --shadow: 0 24px 70px rgba(36, 19, 14, 0.2);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(38, 27, 24, 0.035) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(180deg, #f8efe1 0%, var(--paper) 42%, #eee1cc 100%);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(38, 27, 24, 0.09) 0.7px, transparent 0.7px),
    linear-gradient(rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  background-size: 6px 6px, 100% 100%;
  mix-blend-mode: multiply;
  opacity: 0.22;
  z-index: 5;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  width: min(1160px, calc(100% - 28px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 10px 12px;
  color: var(--paper-soft);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(38, 27, 24, 0.55);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 40px rgba(18, 12, 10, 0.18);
  transition: background 0.25s ease, color 0.25s ease, top 0.25s ease;
}

.site-header.is-scrolled {
  top: 10px;
  color: var(--ink);
  background: rgba(251, 246, 236, 0.9);
  border-color: var(--line);
}

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

.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: #f5f0e7;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-family: var(--serif);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1;
}

.brand small {
  color: currentColor;
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.82;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav a {
  padding: 10px 13px;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover {
  border-color: currentColor;
}

.site-nav .nav-cta {
  margin-left: 6px;
  color: #fff8ed;
  border: 1px solid rgba(251, 246, 236, 0.28);
  background: var(--mahogany);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 120px max(24px, calc((100vw - 1160px) / 2)) 42px;
  overflow: hidden;
  color: var(--paper-soft);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 43%;
  filter: saturate(0.86) contrast(1.04);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(26, 12, 9, 0.82) 0%, rgba(44, 20, 16, 0.58) 42%, rgba(44, 20, 16, 0.2) 100%),
    linear-gradient(0deg, rgba(20, 12, 9, 0.88) 0%, rgba(20, 12, 9, 0.1) 58%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  min-width: 0;
  padding-bottom: 42px;
}

.kicker {
  margin: 0 0 14px;
  color: var(--brass);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
section h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.96;
}

.hero h1 {
  max-width: 850px;
  font-size: clamp(4rem, 10vw, 8.2rem);
}

.hero-copy {
  width: min(620px, 100%);
  margin: 22px 0 0;
  font-size: clamp(1.04rem, 2vw, 1.24rem);
  color: rgba(251, 246, 236, 0.86);
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 19px;
  border: 1px solid currentColor;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #fff8ed;
  border-color: var(--mahogany);
  background: var(--mahogany);
}

.button.booking-button {
  box-shadow: 0 12px 34px rgba(90, 31, 31, 0.32);
}

.button.secondary {
  color: inherit;
  background: rgba(251, 246, 236, 0.08);
}

section {
  position: relative;
}

.quick-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 16px 24px;
  background: var(--mahogany);
  color: var(--paper-soft);
  text-align: center;
}

.quick-contact p {
  max-width: 42rem;
  margin: 0;
  color: rgba(251, 246, 236, 0.78);
}

.quick-contact a {
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.section-band {
  padding: 96px max(24px, calc((100vw - 1160px) / 2));
}

.section-label {
  display: inline-block;
  margin-bottom: 26px;
  padding: 6px 10px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  color: var(--mahogany);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(34px, 7vw, 90px);
}

section h2 {
  font-size: clamp(2.45rem, 6vw, 5.9rem);
  color: var(--mahogany-dark);
}

.intro-copy {
  columns: 2 260px;
  column-gap: 34px;
  color: var(--muted);
  font-size: 1.02rem;
}

.intro-copy p {
  margin: 0 0 16px;
}

.signature-story {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  background:
    radial-gradient(circle at top right, rgba(185, 135, 66, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(49, 93, 80, 0.06), rgba(90, 31, 31, 0.05)),
    var(--paper-soft);
}

.signature-photo {
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(251, 246, 236, 0.84);
  box-shadow: var(--shadow);
}

.signature-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.signature-text h2 {
  margin-bottom: 18px;
}

.signature-text p:not(.kicker) {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1.04rem;
}

.signature-note {
  max-width: 38rem;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--mahogany);
  font-weight: 700;
}

.craft {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.82fr);
  min-height: 720px;
  background: var(--mahogany-dark);
  color: var(--paper-soft);
}

.craft-photo img,
.wide-photo img,
.visit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.craft-photo img {
  object-position: center;
}

.craft-text {
  align-self: center;
  padding: 68px clamp(24px, 5vw, 72px);
}

.craft-text h2 {
  color: var(--paper-soft);
  font-size: clamp(2.3rem, 5vw, 4.9rem);
}

.craft-text p:not(.kicker) {
  color: rgba(251, 246, 236, 0.78);
  font-size: 1.05rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 34px 0 0;
  border: 1px solid rgba(251, 246, 236, 0.24);
  background: rgba(251, 246, 236, 0.18);
}

.stats div {
  padding: 18px 14px;
  background: var(--mahogany-dark);
}

.stats dt {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
}

.stats dd {
  margin: 4px 0 0;
  color: rgba(251, 246, 236, 0.66);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.process {
  background:
    linear-gradient(180deg, rgba(49, 93, 80, 0.08), rgba(90, 31, 31, 0.06)),
    var(--paper);
}

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

.process-card {
  display: grid;
  grid-template-rows: 250px 1fr;
  min-height: 100%;
  border: 1px solid var(--line);
  background: rgba(251, 246, 236, 0.78);
  box-shadow: 0 18px 46px rgba(36, 19, 14, 0.12);
}

.process-card.large {
  grid-column: span 2;
}

.process-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-card div {
  padding: 22px;
}

.process-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--brass);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.process-card h3,
.menu-group h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.05;
  color: var(--mahogany);
}

.process-card h3 {
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
}

.process-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.morning-ritual {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 44px);
  margin-top: 28px;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(251, 246, 236, 0.72);
  box-shadow: 0 18px 46px rgba(36, 19, 14, 0.08);
}

.morning-ritual-photo {
  margin: 0;
}

.morning-ritual-photo img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.morning-ritual-copy {
  align-self: center;
}

.morning-ritual-copy h3 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 500;
  line-height: 1.05;
  color: var(--mahogany);
}

.morning-ritual-copy p:not(.kicker) {
  margin: 0 0 14px;
  color: var(--muted);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 44px;
}

.section-heading .kicker {
  margin-bottom: 9px;
}

.menu-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.menu-list,
.menu-groups {
  border-top: 2px solid var(--ink);
}

.menu-list article {
  display: grid;
  grid-template-columns: minmax(160px, 0.48fr) 1fr;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.menu-list span {
  font-family: var(--serif);
  font-size: clamp(1.28rem, 2.2vw, 1.9rem);
  line-height: 1.05;
  color: var(--mahogany);
}

.menu-list p {
  margin: 0;
  color: var(--muted);
}

.menu-groups {
  display: grid;
  gap: 18px;
}

.menu-group {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.menu-group h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.menu-group ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-group li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  font-weight: 700;
}

.menu-group li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brass);
}

.menu-group li span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
}

.menu-visuals {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 16px;
}

.menu-photo,
.menu-mini {
  margin: 0;
  padding: 12px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.menu-photo {
  position: relative;
}

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

.menu-photo img,
.menu-mini img {
  width: 100%;
  object-fit: cover;
}

.menu-photo img {
  aspect-ratio: 4 / 5;
}

.menu-mini img {
  aspect-ratio: 1 / 1;
}

.menu-photo figcaption,
.menu-mini figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.88rem;
}

.menu-mini figcaption {
  font-size: 0.82rem;
}

.menu-photo.featured figcaption {
  font-size: 0.9rem;
}

.atmosphere {
  padding: 0;
  background: #e7d7be;
}

.atmosphere-copy {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 86px 0 34px;
  display: grid;
  grid-template-columns: minmax(220px, 0.5fr) minmax(0, 1fr);
  gap: 36px;
  align-items: end;
}

.atmosphere-copy h2 {
  grid-column: 1 / -1;
}

.atmosphere-copy p:not(.kicker) {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
}

.wide-photo {
  height: min(780px, 78vw);
  min-height: 460px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.wide-photo img {
  object-position: center 54%;
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(49, 93, 80, 0.1), rgba(185, 135, 66, 0.08)),
    var(--paper-soft);
}

.booking-copy p:not(.kicker) {
  color: var(--muted);
  font-size: 1.05rem;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.booking .button.secondary {
  color: var(--mahogany);
  background: transparent;
}

.booking-photo {
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.booking-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 44%;
}

.booking-photo figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.88rem;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 12px;
}

.photo-tile {
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: var(--ink);
  cursor: pointer;
}

.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.photo-tile:hover img {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.photo-tile.tall {
  grid-row: span 2;
}

.photo-tile.wide {
  grid-column: span 2;
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  background: var(--jade);
  color: var(--paper-soft);
}

.visit-card {
  padding: clamp(60px, 9vw, 120px) max(24px, calc((100vw - 1160px) / 2));
  padding-right: clamp(24px, 5vw, 72px);
}

.visit h2 {
  color: var(--paper-soft);
}

.visit p:not(.kicker) {
  max-width: 560px;
  color: rgba(251, 246, 236, 0.78);
}

.visit address {
  max-width: 540px;
  margin-top: 24px;
  color: rgba(251, 246, 236, 0.9);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  font-style: normal;
  line-height: 1.35;
}

.visit-image {
  min-height: 460px;
}

.visit-image img {
  object-position: center;
  filter: saturate(0.88);
}

.visit-map {
  min-height: 460px;
  padding: 14px;
  background: rgba(251, 246, 236, 0.12);
}

.visit-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 432px;
  border: 0;
  filter: saturate(0.88) contrast(1.02);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px max(24px, calc((100vw - 1160px) / 2));
  background: var(--mahogany-dark);
  color: rgba(251, 246, 236, 0.75);
  font-size: 0.88rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--paper-soft);
  font-weight: 800;
}

.lightbox {
  width: min(980px, calc(100% - 28px));
  padding: 0;
  border: 0;
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(20, 12, 9, 0.78);
  backdrop-filter: blur(8px);
}

.lightbox img {
  width: 100%;
  max-height: 86svh;
  object-fit: contain;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: -46px;
  right: 0;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(251, 246, 236, 0.55);
  background: rgba(38, 27, 24, 0.7);
  color: var(--paper-soft);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    padding: 8px 0 2px;
    border-top: 1px solid currentColor;
  }

  .site-header.nav-open .site-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .site-nav .nav-cta {
    margin-left: 0;
  }

  .hero {
    min-height: 760px;
  }

  .intro-grid,
  .signature-story,
  .craft,
  .menu-layout,
  .booking,
  .visit,
  .morning-ritual {
    grid-template-columns: 1fr;
  }

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

  .craft {
    min-height: auto;
  }

  .craft-photo {
    height: 520px;
  }

  .menu-visuals,
  .menu-photo {
    position: static;
  }

  .menu-group {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .section-heading,
  .atmosphere-copy {
    grid-template-columns: 1fr;
  }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .visit-card {
    padding-right: max(24px, calc((100vw - 1160px) / 2));
  }

  .quick-contact {
    flex-direction: column;
    gap: 8px;
    padding-inline: 18px;
  }

  .quick-contact p,
  .quick-contact a {
    max-width: 20rem;
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 8px;
    width: calc(100% - 18px);
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand small {
    font-size: 0.63rem;
  }

  .hero {
    min-height: 700px;
    padding: 102px 18px 28px;
  }

  .hero-content {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.9rem, 14vw, 3.85rem);
  }

  .hero-copy {
    max-width: 20.6rem;
    font-size: 1rem;
  }

  .hero-actions {
    max-width: 21.6rem;
  }

  .hero-actions .booking-button {
    width: 100%;
  }

  .section-band {
    padding: 68px 30px 68px 18px;
  }

  .intro h2,
  .intro-copy,
  .signature-text,
  .process .section-heading,
  .menu .section-heading,
  .booking-copy,
  .gallery .section-heading {
    max-width: 19.5rem;
  }

  section h2,
  .craft-text h2,
  .visit h2 {
    font-size: clamp(1.9rem, 10vw, 3.05rem);
  }

  .intro-copy {
    columns: 1;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .intro-grid,
  .section-heading,
  .atmosphere-copy,
  .process-grid,
  .menu-layout,
  .signature-story,
  .morning-ritual {
    min-width: 0;
  }

  .signature-photo {
    padding: 8px;
  }

  .signature-photo img {
    aspect-ratio: 3 / 4;
  }

  .booking-photo {
    padding: 8px;
  }

  .booking-photo img {
    aspect-ratio: 3 / 4;
  }

  .craft-photo {
    height: 420px;
  }

  .craft-text {
    padding: 54px 18px;
  }

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

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

  .process-card,
  .process-card.large {
    grid-column: span 1;
    grid-template-rows: 230px 1fr;
  }

  .morning-ritual {
    padding: 8px;
  }

  .morning-ritual-photo img {
    min-height: 260px;
  }

  .menu-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .menu-group ul {
    grid-template-columns: 1fr;
  }

  .menu-photo-grid {
    grid-template-columns: 1fr;
  }

  .atmosphere-copy {
    width: calc(100% - 36px);
    padding-top: 62px;
  }

  .wide-photo {
    min-height: 380px;
  }

  .photo-grid {
    grid-auto-rows: 190px;
    gap: 8px;
  }

  .photo-tile.tall,
  .photo-tile.wide {
    grid-column: span 2;
    grid-row: span 1;
  }

  .visit-image {
    min-height: 300px;
  }

  .visit-map {
    min-height: 340px;
    padding: 8px;
  }

  .visit-map iframe {
    min-height: 324px;
  }

  .site-footer {
    display: block;
  }

  .site-footer a {
    display: inline-block;
    margin-top: 12px;
  }
}
