:root {
  --cream: #fbf7ee;
  --warm-white: #fffdf8;
  --sand: #c7b49a;
  --taupe: #8b765f;
  --olive: #626a3b;
  --olive-dark: #3f4525;
  --ink: #4d3f34;
  --line: rgba(114, 98, 73, 0.24);
  --shadow: 0 14px 38px rgba(71, 58, 39, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.78), transparent 34rem),
    linear-gradient(135deg, #eee5d7 0%, #fff9ef 48%, #d9c8af 100%);
  font-family: "Quicksand", Arial, sans-serif;
}

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

.page-shell {
  width: min(100%, 430px);
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 22px 70px rgba(48, 36, 24, 0.23);
}

.hero {
  position: relative;
  height: clamp(178px, 53vw, 256px);
  background: #d8c4ab;
}

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

.profile-card {
  position: relative;
  margin-top: -34px;
  padding: 20px 18px 18px;
  border-radius: 50% 50% 0 0 / 36px 36px 0 0;
  background:
    radial-gradient(circle at 22% 8%, rgba(255, 255, 255, 0.92), transparent 12rem),
    linear-gradient(180deg, #fffdf8 0%, #fbf7ef 58%, #fffdf9 100%);
}

.profile-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(133, 105, 75, 0.07), transparent 24%, transparent 76%, rgba(133, 105, 75, 0.07));
}

.brand {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2px 0 11px;
}

.logo {
  display: block;
  width: min(74%, 292px);
  height: auto;
  margin: 0 auto -6px;
}

.location,
.brand h1,
.status {
  margin: 0;
}

.location {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 11px;
  font-size: 17px;
  color: #745f4d;
}

.mini-icon {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
}

.mini-icon.pin::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 9px;
  height: 9px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.mini-icon.pin::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 5px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}

.location svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.brand h1 {
  margin-top: 7px;
  font-size: 18px;
  font-weight: 500;
  color: #735e4d;
}

.status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 31px;
  margin-top: 10px;
  padding: 4px 18px;
  border: 1px solid rgba(115, 105, 76, 0.18);
  border-radius: 999px;
  background: rgba(249, 246, 236, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
  color: #596038;
  font-size: 14px;
  font-weight: 600;
}

.status span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--olive);
}

.links {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4px;
  margin-top: 1px;
}

.link-button {
  display: grid;
  grid-template-columns: 54px 1fr 34px;
  align-items: center;
  min-height: 58px;
  padding: 0 15px 0 14px;
  border: 1px solid rgba(92, 75, 53, 0.09);
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 7px 18px rgba(79, 61, 41, 0.11);
  font-size: 20px;
  font-weight: 500;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.link-button:hover,
.link-button:focus-visible,
.link-button.is-tapped {
  transform: translateY(-1px);
  background: #fffaf2;
  box-shadow: 0 10px 22px rgba(79, 61, 41, 0.16);
  outline: none;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  background: #fbf7ee;
  color: var(--olive);
  box-shadow: 0 2px 8px rgba(90, 76, 52, 0.08);
}

.icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.video-icon::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--olive);
}

.website-icon {
  position: relative;
}

.website-icon::before {
  content: "";
  width: 21px;
  height: 21px;
  border: 2px solid var(--olive);
  border-radius: 50%;
}

.website-icon::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 12px;
  border-top: 2px solid var(--olive);
  border-bottom: 2px solid var(--olive);
}

.website-icon span {
  display: none;
}

.arrow {
  position: relative;
  display: block;
  width: 27px;
  height: 27px;
}

.arrow {
  justify-self: end;
  color: var(--olive-dark);
}

.arrow::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 3px;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.arrow::after {
  content: "";
  position: absolute;
  top: 7px;
  right: 4px;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.hours {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 62px 1fr 72px;
  align-items: center;
  min-height: 83px;
  margin-top: 13px;
  padding: 10px 12px 10px 17px;
  border: 1px solid rgba(102, 89, 61, 0.2);
  border-radius: 14px;
  background: linear-gradient(105deg, #fbf8ef 0%, #f2ecdd 100%);
  box-shadow: 0 8px 20px rgba(80, 66, 40, 0.13);
}

.clock {
  display: grid;
  place-items: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  overflow: hidden;
  background: #f8f2e9;
}

.clock img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.hours h2 {
  margin: 0 0 5px;
  color: #596038;
  font-size: 19px;
  font-weight: 600;
}

.hours p {
  margin: 0;
  color: #596038;
  font-size: 16px;
}

.leaf,
.leaf::before,
.leaf::after {
  position: absolute;
  width: 1px;
  background: var(--olive);
  transform-origin: bottom center;
}

.leaf {
  height: 64px;
  transform: rotate(23deg);
  opacity: 0.78;
}

.leaf::before,
.leaf::after {
  content: "";
  height: 25px;
  border: 1px solid var(--olive);
  border-left: 0;
  border-radius: 0 100% 100% 0;
  background: transparent;
}

.leaf::before {
  left: 0;
  top: 12px;
  transform: rotate(-48deg);
}

.leaf::after {
  left: 0;
  top: 30px;
  transform: rotate(43deg) scaleX(-1);
}

.leaf-top {
  right: 30px;
  top: 88px;
}

.leaf-small {
  right: 31px;
  top: 13px;
  height: 56px;
  transform: rotate(38deg);
}

.section-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  margin: 19px 3px 11px;
  color: #535936;
}

.section-title span {
  height: 1px;
  background: rgba(98, 90, 62, 0.38);
}

.section-title h2 {
  margin: 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 24px;
  font-weight: 400;
}

.section-title h2::before,
.section-title h2::after {
  content: "•";
  padding: 0 10px;
  color: var(--olive);
}

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

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1.94 / 1;
  object-fit: cover;
  border-radius: 13px;
  box-shadow: 0 5px 14px rgba(61, 51, 33, 0.12);
}

.footer {
  display: grid;
  place-items: center;
  min-height: 82px;
  padding: 9px 0 11px;
  color: #fffdf9;
  background: linear-gradient(90deg, #aeb094, #c9c3aa);
}

.footer-logo {
  display: block;
  width: 110px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.footer svg {
  width: 19px;
  height: 19px;
  margin-top: 2px;
  stroke-width: 1.5;
}

.heart {
  position: relative;
  width: 18px;
  height: 16px;
  margin-top: 3px;
  transform: rotate(-45deg);
}

.heart::before,
.heart::after {
  content: "";
  position: absolute;
  background: transparent;
  border: 1.5px solid currentColor;
}

.heart::before {
  left: 0;
  top: 5px;
  width: 14px;
  height: 10px;
  border-top: 0;
  border-right: 0;
}

.heart::after {
  left: 3px;
  top: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.menu-page {
  width: min(100%, 960px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 16px;
}

.menu-header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: 88px 1fr 88px;
  align-items: center;
  gap: 8px;
  min-height: 72px;
  margin: -16px -16px 16px;
  padding: 12px 16px;
  background: rgba(251, 247, 238, 0.94);
  border-bottom: 1px solid rgba(114, 98, 73, 0.14);
  backdrop-filter: blur(12px);
}

.menu-logo {
  justify-self: center;
  width: min(210px, 52vw);
  height: auto;
}

.menu-header p {
  justify-self: end;
  margin: 0;
  color: #745f4d;
  font-size: 15px;
  font-weight: 600;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--olive-dark);
  font-size: 15px;
  font-weight: 700;
}

.back-arrow {
  position: relative;
  width: 20px;
  height: 20px;
}

.back-arrow::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 9px;
  width: 15px;
  height: 2px;
  background: currentColor;
}

.back-arrow::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 5px;
  width: 9px;
  height: 9px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.menu-viewer {
  display: grid;
  gap: 16px;
}

.menu-viewer img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(71, 58, 39, 0.16);
}

.video-viewer {
  display: grid;
  place-items: center;
}

.video-frame {
  width: min(100%, 430px);
  overflow: hidden;
  border-radius: 24px;
  background: #111;
  box-shadow: 0 16px 40px rgba(71, 58, 39, 0.2);
}

.video-frame video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  background: #111;
}

@media (min-width: 700px) {
  body {
    padding: 26px 0;
  }

  .page-shell {
    border-radius: 30px;
  }
}

@media (min-width: 960px) {
  body {
    display: grid;
    place-items: start center;
    padding: 34px 0;
  }

  .page-shell {
    width: min(100% - 48px, 460px);
    min-height: auto;
  }

  .menu-page {
    padding-top: 24px;
  }

  .menu-header {
    border-radius: 22px;
    margin: 0 0 18px;
  }
}

@media (max-width: 360px) {
  .profile-card {
    padding-inline: 13px;
  }

  .logo {
    width: min(78%, 260px);
  }

  .link-button {
    grid-template-columns: 50px 1fr 30px;
    min-height: 55px;
    font-size: 18px;
  }

  .hours {
    grid-template-columns: 54px 1fr 48px;
  }

  .leaf-top {
    display: none;
  }
}
