:root {
  --cream: #fff7eb;
  --paper: #fff7eb;
  --ink: #17140f;
  --olive: #253020;
  --line: #75806e;
  --gold: #d9aa31;
  --gold-bright: #f0c95b;
  --gold-deep: #b98218;
  --logo-cream: #f5ead0;
  --accent: var(--ink);
  --mint: #b9d59a;
  --frame: var(--gold-bright);
  --white: #fffaf0;
  --shadow: 0 24px 58px rgba(23, 20, 15, 0.22);
  --frame-shadow:
    0 16px 34px rgba(185, 130, 24, 0.18),
    inset 0 0 0 1px rgba(255, 248, 206, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: "Lora", Georgia, serif;
  font-weight: 600;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(117, 128, 110, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(117, 128, 110, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 20% 12%, rgba(255, 255, 255, 0.7), transparent 24rem),
    var(--paper);
  background-size: 54px 54px, 54px 54px, auto, auto;
}

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

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

main > section {
  scroll-margin-top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 1180px);
  min-height: 78px;
  margin-inline: auto;
  padding: 12px clamp(18px, 5vw, 42px);
  background: linear-gradient(rgba(247, 238, 223, 0.9), rgba(247, 238, 223, 0.58));
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--gold);
}

.brand-title {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  font-weight: 700;
  line-height: 1;
}

.brand-title span:first-child {
  color: var(--gold);
}

.brand-title span:last-child {
  color: var(--ink);
}

.brand-subtitle,
.eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-subtitle {
  color: var(--gold);
  letter-spacing: 0.16em;
}

.main-nav {
  display: flex;
  gap: clamp(12px, 2.8vw, 30px);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav a {
  padding-block: 8px;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  border-color: var(--ink);
}

.header-actions,
.social-links {
  display: flex;
  align-items: center;
}

.header-actions {
  gap: 12px;
  margin-left: 18px;
}

.social-links {
  gap: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--ink);
  background: var(--white);
  color: var(--ink);
  transition:
    transform 220ms ease,
    background 220ms ease;
}

.social-link svg {
  display: block;
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  background: rgba(240, 201, 91, 0.18);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 2px solid var(--ink);
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 6px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 930px;
  padding: 0;
  overflow: hidden;
}

.hero-photo {
  height: clamp(360px, 32vw, 520px);
  background:
    linear-gradient(rgba(23, 20, 15, 0.12), rgba(23, 20, 15, 0.36)),
    url("images/background.png") center 24% / cover no-repeat;
  background-color: #fff7eb;
}

.hero-copy,
.menu-panel {
  position: relative;
  width: min(calc(100% - 42px), 1020px);
  margin-inline: auto;
  padding: clamp(44px, 7vw, 78px) clamp(28px, 8vw, 112px);
  border: 5px solid var(--frame);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse at 20% 18%, rgba(255, 255, 255, 0.8), transparent 20rem),
    radial-gradient(ellipse at 78% 14%, rgba(177, 145, 91, 0.2), transparent 18rem),
    radial-gradient(ellipse at 40% 76%, rgba(111, 86, 47, 0.14), transparent 22rem),
    linear-gradient(112deg, rgba(92, 73, 42, 0.08), transparent 28%, rgba(255, 255, 255, 0.28) 48%, transparent 72%),
    #f4ead7;
  box-shadow:
    var(--frame-shadow),
    inset 0 0 120px rgba(102, 78, 42, 0.17);
}

.hero-copy::before,
.menu-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    repeating-radial-gradient(circle at 18% 22%, rgba(88, 70, 44, 0.13) 0 1px, transparent 1px 7px),
    repeating-radial-gradient(circle at 74% 38%, rgba(255, 255, 255, 0.42) 0 1px, transparent 1px 9px),
    repeating-linear-gradient(8deg, rgba(88, 70, 44, 0.035) 0 2px, transparent 2px 11px),
    repeating-linear-gradient(96deg, rgba(255, 255, 255, 0.22) 0 1px, transparent 1px 13px);
  mix-blend-mode: multiply;
  opacity: 0.78;
}

.hero-copy > *,
.menu-panel > * {
  position: relative;
  z-index: 1;
}

.hero-copy {
  z-index: 2;
  margin-top: clamp(-76px, -5vw, -44px);
  background:
    radial-gradient(ellipse at 20% 18%, rgba(255, 255, 255, 0.54), transparent 20rem),
    radial-gradient(ellipse at 78% 14%, rgba(177, 145, 91, 0.12), transparent 18rem),
    radial-gradient(ellipse at 40% 76%, rgba(111, 86, 47, 0.14), transparent 22rem),
    linear-gradient(
      to bottom,
      rgba(244, 234, 215, 0.34) 0%,
      rgba(244, 234, 215, 0.58) 28%,
      rgba(244, 234, 215, 0.9) 56%,
      #f4ead7 78%
    );
  box-shadow:
    0 30px 72px rgba(23, 20, 15, 0.26),
    0 0 0 2px rgba(240, 201, 91, 0.22),
    var(--frame-shadow),
    inset 0 0 120px rgba(102, 78, 42, 0.2);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--ink);
}

h1,
h2 {
  margin: 0 0 24px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: 0;
}

h1 {
  max-width: 620px;
  font-size: clamp(4.9rem, 15vw, 10.2rem);
}

.hero-title {
  display: grid;
  justify-items: start;
  gap: 0;
  max-width: 760px;
  font-family: "Great Vibes", "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  line-height: 0.78;
}

.title-golden {
  margin-left: clamp(1.2rem, 4vw, 3rem);
  color: var(--gold);
}

.title-rozek {
  margin-top: clamp(0.16em, 2vw, 0.26em);
  margin-left: clamp(5.6rem, 20vw, 15rem);
  color: var(--ink);
}

h2 {
  font-size: clamp(3.1rem, 9vw, 6.6rem);
}

p {
  margin: 0;
}

.hero-copy p:not(.eyebrow),
.menu-panel p,
.feature-copy {
  max-width: 780px;
  font-size: clamp(1rem, 3vw, 1.48rem);
  font-weight: 900;
  letter-spacing: 0.2em;
  line-height: 1.9;
  text-transform: uppercase;
}

.hero-copy p:not(.eyebrow) {
  letter-spacing: 0.06em;
  line-height: 1.65;
  text-transform: none;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  border: 2px solid rgba(240, 201, 91, 0.82);
  background: rgba(255, 250, 240, 0.72);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 86px;
  min-width: min(100%, 430px);
  margin-top: 44px;
  padding: 18px 28px;
  border: 5px solid var(--frame);
  color: var(--ink);
  font-size: clamp(1rem, 3vw, 1.35rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
  transition:
    transform 220ms ease,
    background 220ms ease;
}

.outline-button.dark {
  border-color: var(--ink);
}

.outline-button:hover,
.outline-button:focus-visible {
  transform: translateY(-3px);
  background: rgba(240, 201, 91, 0.18);
}

.paper-section {
  position: relative;
  min-height: 880px;
  padding: clamp(70px, 12vw, 136px) 0;
  overflow: hidden;
}

.compact-section,
.pricing-section {
  min-height: auto;
  padding-block: clamp(64px, 9vw, 112px);
}

.pricing-section {
  padding-bottom: clamp(18px, 3vw, 46px);
}

.ice-cream-divider {
  position: relative;
  z-index: 4;
  height: clamp(108px, 14vw, 190px);
  margin-block: clamp(-34px, -4vw, -18px);
  pointer-events: none;
}

.ice-cream-divider img {
  position: absolute;
  top: 50%;
  width: clamp(220px, 28vw, 380px);
  max-width: none;
}

.ice-cream-divider-right img {
  right: clamp(-140px, -11vw, -92px);
  transform: translateY(-50%) rotate(-22deg);
  filter: drop-shadow(-18px 22px 24px rgba(23, 20, 15, 0.18));
}

.ice-cream-divider-left {
  margin-top: clamp(-48px, -5vw, -24px);
}

.ice-cream-divider-top {
  margin-top: clamp(14px, 3vw, 34px);
  margin-bottom: clamp(-36px, -3vw, -18px);
}

.ice-cream-divider-left img {
  left: clamp(-140px, -11vw, -92px);
  transform: translateY(-50%) rotate(18deg) scaleX(-1);
  filter: drop-shadow(18px 22px 24px rgba(23, 20, 15, 0.18));
}

.ice-cream-divider-top.ice-cream-divider-left img {
  top: 86%;
}

.ice-cream-divider-after-pricing img {
  top: 92%;
}

.pricing-section .menu-panel {
  text-align: center;
}

.pricing-section .menu-panel h2 {
  margin-top: 0;
}

.pricing-section .menu-panel p {
  margin-inline: auto;
}

.menu-panel-small {
  margin-top: 62px;
}

.stacked {
  min-height: auto;
}

.hours-panel {
  text-align: center;
}

.hours-panel p,
.hours-list {
  margin-inline: auto;
}

.hours-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 780px;
  margin-top: 34px;
}

.hours-list div {
  display: grid;
  gap: 12px;
  min-height: 128px;
  padding: 22px;
  border: 4px solid var(--frame);
  background: rgba(255, 250, 240, 0.78);
  text-align: left;
  box-shadow: var(--frame-shadow);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.hours-list span {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hours-list strong {
  align-self: end;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 4vw, 2.8rem);
  line-height: 1;
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  width: min(calc(100% - 42px), 1020px);
  margin: 48px auto 0;
  background: var(--white);
  border: 4px solid var(--frame);
  box-shadow: var(--frame-shadow);
}

.menu-panel .price-grid {
  width: 100%;
  margin: 48px 0 0;
}

.price-grid div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 96px;
  padding: 24px;
  background: transparent;
  border-bottom: 2px solid rgba(240, 201, 91, 0.52);
  text-align: left;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.price-grid div:last-child {
  border-bottom: 0;
}

.price-name {
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.price-amount {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.price-icon {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  color: var(--gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.price-grid strong {
  flex: 0 0 auto;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  line-height: 1;
}

.hours-list div:hover,
.price-grid div:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(23, 20, 15, 0.13);
}

.pricing-section .price-grid div:hover {
  transform: none;
  box-shadow: none;
}

.flavors-section {
  padding-top: clamp(58px, 8vw, 102px);
  padding-bottom: clamp(52px, 8vw, 92px);
}

.flavors-panel {
  text-align: center;
}

.flavor-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  margin: 46px 0 0;
  padding: 2px;
  border: 4px solid var(--frame);
  background: rgba(240, 201, 91, 0.52);
  box-shadow: var(--frame-shadow);
  list-style: none;
  text-align: left;
}

.flavor-list li {
  display: flex;
  align-items: center;
  min-height: 68px;
  padding: 18px 22px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.visit-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  column-gap: clamp(24px, 6vw, 72px);
  row-gap: clamp(28px, 5vw, 54px);
  align-items: start;
  width: min(calc(100% - 42px), 1020px);
  min-height: calc(100vh - 78px);
  margin-inline: auto;
  padding: clamp(44px, 6vw, 76px) 0 clamp(62px, 8vw, 104px);
  background: var(--cream);
}

.visit-heading {
  grid-column: 1 / -1;
  text-align: center;
}

.visit-heading .eyebrow {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.05rem, 2.8vw, 1.55rem);
  letter-spacing: 0.2em;
}

.map-frame {
  width: 100%;
  height: clamp(360px, 50vw, 650px);
  overflow: hidden;
  border: 7px solid var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.visit-card {
  padding: clamp(30px, 6vw, 56px);
  background: var(--white);
  border: 5px solid var(--frame);
  box-shadow: var(--frame-shadow);
}

.visit-card h2 {
  font-size: clamp(2.8rem, 6vw, 5.6rem);
}

.info-list {
  display: grid;
  gap: 16px;
  font-size: 1rem;
}

.info-list strong {
  color: var(--ink);
}

.location-button {
  min-width: min(100%, 320px);
  min-height: 72px;
  margin-top: 28px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 28px max(22px, calc((100vw - 1120px) / 2));
  background: var(--ink);
  color: var(--white);
  font-size: 0.84rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal-item {
    opacity: 0;
    transform: translateY(46px) scale(0.96);
    filter: blur(8px);
    transition:
      opacity 780ms ease,
      transform 780ms cubic-bezier(0.18, 0.9, 0.22, 1),
      filter 780ms ease;
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform, filter;
  }

  .reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }

  .reveal-item.reveal-pop.is-visible {
    animation: reveal-pop 700ms cubic-bezier(0.18, 0.9, 0.22, 1) both;
    animation-delay: var(--reveal-delay, 0ms);
  }

  @keyframes reveal-pop {
    0% {
      transform: translateY(46px) scale(0.96);
    }

    72% {
      transform: translateY(-6px) scale(1.015);
    }

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

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

  .header-actions {
    margin-left: auto;
  }

  .main-nav {
    position: absolute;
    top: calc(100% - 8px);
    left: 18px;
    right: 18px;
    display: none;
    padding: 16px;
    background: var(--white);
    border: 3px solid var(--ink);
    box-shadow: 8px 8px 0 rgba(23, 20, 15, 0.22);
  }

  .site-header.nav-open .main-nav {
    display: grid;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: 860px;
  }

  .hero-photo {
    min-height: 330px;
  }

  .hero-copy,
  .menu-panel {
    width: calc(100% - 56px);
    margin-left: 18px;
    margin-right: 38px;
  }

  .hero-copy p:not(.eyebrow),
  .menu-panel p,
  .feature-copy {
    letter-spacing: 0.16em;
  }

  .hero-copy p:not(.eyebrow) {
    letter-spacing: 0.04em;
  }

  .paper-section {
    min-height: 790px;
  }

  .compact-section,
  .pricing-section {
    min-height: auto;
  }

  .pricing-section {
    padding-bottom: clamp(18px, 5vw, 34px);
  }

  .hours-list {
    grid-template-columns: 1fr;
  }

  .price-grid,
  .visit-section {
    grid-template-columns: 1fr;
  }

  .visit-section {
    width: calc(100% - 56px);
    margin: 0 38px 0 18px;
    padding: clamp(42px, 11vw, 68px) 0 clamp(62px, 12vw, 92px);
  }

  .price-grid {
    width: calc(100% - 56px);
    margin-left: 18px;
    margin-right: 38px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand {
    gap: 10px;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
  }

  .brand-title {
    max-width: 150px;
  }

  .brand-subtitle {
    max-width: 150px;
    letter-spacing: 0.1em;
  }

  .header-actions {
    gap: 8px;
  }

  .social-links {
    gap: 6px;
  }

  .social-link,
  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .social-link svg {
    width: 19px;
    height: 19px;
  }

  .hero {
    min-height: 840px;
  }

  h1 {
    font-size: clamp(4.2rem, 18vw, 5.8rem);
  }

  h2 {
    font-size: clamp(3rem, 15vw, 4.9rem);
  }

  .hero-copy p:not(.eyebrow),
  .menu-panel p,
  .feature-copy {
    font-size: 0.94rem;
    letter-spacing: 0.13em;
    line-height: 1.82;
  }

  .hero-copy p:not(.eyebrow) {
    letter-spacing: 0.03em;
    line-height: 1.7;
  }

  .outline-button {
    min-height: 74px;
  }

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

  .flavor-list {
    grid-template-columns: 1fr;
  }

  .visit-section {
    padding-right: 0;
  }
}
