:root {
  --paper: #fffdfb;
  --cream: #fbf3e5;
  --cream-deep: #f0dfc3;
  --ink: #2f261b;
  --muted: #746856;
  --gold: #c89113;
  --gold-deep: #946708;
  --gold-soft: #edcf7a;
  --sage: #979879;
  --sage-soft: #e4e5d5;
  --line: rgba(148, 103, 8, 0.2);
  --shadow: 0 24px 70px rgba(88, 60, 17, 0.12);
  --radius: 8px;
  --max-width: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fffdf7;
  border-left: 16px solid #d6a11f;
  border-right: 16px solid #d6a11f;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.12;
  background-image: radial-gradient(circle, rgba(148, 103, 8, 0.38) 1px, transparent 1.5px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, transparent 86%);
}

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

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  width: 100%;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px max(18px, calc((100vw - var(--max-width)) / 2));
  border-bottom: 1px solid rgba(148, 103, 8, 0.15);
  background: rgba(255, 253, 248, 0.88);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.detail-list {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  color: var(--gold-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
  font-weight: 700;
  white-space: nowrap;
}

.brand img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 8px 22px rgba(148, 103, 8, 0.12);
}

.nav-links {
  gap: 4px;
}

.nav-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: #655844;
  font-size: 0.92rem;
  font-weight: 750;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold-deep);
  outline: none;
}

.hero {
  width: min(calc(100% - 36px), var(--max-width));
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(310px, 0.78fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  margin: 0 auto;
  padding: clamp(52px, 8vw, 94px) 0 clamp(42px, 7vw, 78px);
}

.hero-copy::before,
.intro::before,
.orders::before {
  content: "";
  display: block;
  width: 88px;
  height: 2px;
  margin-bottom: 26px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-deep);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.02;
}

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(3.15rem, 6.2vw, 5.85rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.12rem, 4.1vw, 4rem);
}

h3 {
  margin-bottom: 8px;
  color: var(--gold-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.34rem;
  font-weight: 500;
}

.hero-copy p:not(.eyebrow) {
  max-width: 540px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 850;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.button.primary {
  color: #2d2112;
  background: linear-gradient(135deg, #f3d780, var(--gold));
  box-shadow: 0 14px 36px rgba(200, 145, 19, 0.22);
}

.button.secondary {
  color: var(--gold-deep);
  background: rgba(255, 255, 255, 0.58);
}

.hero-art {
  position: relative;
  justify-self: center;
  width: min(100%, 520px);
  display: grid;
  place-items: center;
}

.seal-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 50%;
  filter: drop-shadow(0 24px 54px rgba(88, 60, 17, 0.14));
}

.seal-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  border-radius: 50%;
  transform: translateX(0.52%);
  transform-origin: center center;
}

.intro,
.section,
.signature,
.process,
.orders,
.site-footer {
  width: min(calc(100% - 36px), var(--max-width));
  margin-inline: auto;
}

.intro {
  margin-top: 18px;
  padding: 36px clamp(22px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.58);
  text-align: center;
  box-shadow: 0 18px 48px rgba(88, 60, 17, 0.06);
}

.intro::before {
  margin-inline: auto;
}

.intro p {
  max-width: 780px;
  margin: 0 auto;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.38rem, 2.7vw, 2.18rem);
  line-height: 1.26;
}

.section {
  margin-top: 28px;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(148, 103, 8, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.46);
  box-shadow: 0 18px 48px rgba(88, 60, 17, 0.05);
}

.section-heading {
  max-width: 720px;
}

.cake-pop-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 1px;
  align-items: stretch;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  box-shadow: var(--shadow);
}

.cake-pop-image {
  align-self: stretch;
  height: auto;
  min-height: 185px;
  overflow: hidden;
  background: transparent;
}

.cake-pop-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}

.cake-pop-copy {
  display: grid;
  align-content: end;
  padding: 18px 22px;
  background:
    radial-gradient(circle at top right, rgba(237, 207, 122, 0.22), transparent 54%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(251, 243, 229, 0.9));
}

.cake-pop-copy h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  line-height: 1.02;
}

.cake-pop-copy p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.38;
}

.cake-pop-copy .eyebrow {
  margin-bottom: 7px;
  font-size: 0.68rem;
}

.offering-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.offering-card {
  min-height: 236px;
  display: grid;
  grid-template-rows: 72px 48px 1fr;
  align-content: start;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.95), rgba(251, 243, 229, 0.84)),
    var(--paper);
}

.offering-card span {
  margin-bottom: 0;
  align-self: start;
  color: rgba(148, 103, 8, 0.42);
  font-size: 0.76rem;
  font-weight: 900;
}

.offering-card h3 {
  align-self: start;
}

.offering-card p {
  align-self: start;
}

.offering-card p,
.cake-pop-copy p,
.signature-copy p,
.process p,
.orders p {
  color: var(--muted);
}

.signature {
  display: grid;
  grid-template-columns: minmax(250px, 0.78fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
  margin-top: 28px;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(148, 103, 8, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.5);
  box-shadow: 0 18px 48px rgba(88, 60, 17, 0.05);
}

.signature-badge {
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.2), transparent 17rem),
    radial-gradient(circle at 82% 80%, rgba(255, 255, 255, 0.14), transparent 16rem),
    linear-gradient(145deg, #e0aa24 0%, #c38a0d 44%, #966302 100%);
  box-shadow: 0 30px 84px rgba(116, 78, 7, 0.28);
}

.signature-badge::before {
  content: "";
  position: absolute;
  width: 118%;
  height: 74px;
  left: -12%;
  top: 22%;
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(255, 253, 248, 0.66) 26%, transparent 47% 53%, rgba(255, 253, 248, 0.36) 72%, transparent 90%),
    linear-gradient(90deg, transparent, rgba(255, 253, 248, 0.16), transparent);
  transform: rotate(-10deg);
}

.signature-badge::after {
  content: "";
  position: absolute;
  width: 126%;
  height: 86px;
  right: -18%;
  bottom: 19%;
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(255, 253, 248, 0.26) 34%, transparent 47% 55%, rgba(255, 253, 248, 0.58) 76%, transparent 94%);
  transform: rotate(11deg);
}

.signature-badge strong,
.signature-badge small {
  position: relative;
  z-index: 2;
  color: rgba(255, 253, 248, 0.96);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  text-shadow: 0 3px 18px rgba(83, 54, 3, 0.22);
}

.signature-badge strong {
  padding: 0 0.12em;
  font-size: clamp(3.35rem, 7vw, 5.35rem);
  font-style: italic;
  line-height: 0.95;
  text-align: center;
}

.signature-badge small {
  margin-top: 10px;
  font-size: 1.02rem;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.abstract-line,
.abstract-dot {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.abstract-line {
  height: 2px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 253, 248, 0.88), transparent);
}

.line-one {
  top: 118px;
  left: 28px;
  width: 170px;
  transform: rotate(-13deg);
}

.line-two {
  right: 34px;
  top: 114px;
  width: 168px;
  transform: rotate(13deg);
}

.line-three {
  left: 34px;
  bottom: 112px;
  width: 188px;
  transform: rotate(12deg);
}

.line-four {
  right: 34px;
  bottom: 112px;
  width: 188px;
  transform: rotate(-12deg);
}

.abstract-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.8);
  box-shadow:
    22px 14px 0 rgba(255, 253, 248, 0.22),
    -18px 26px 0 rgba(255, 253, 248, 0.18);
}

.dot-one {
  top: 92px;
  right: 122px;
}

.dot-two {
  left: 116px;
  bottom: 88px;
  opacity: 0.58;
}

.dot-three {
  right: 92px;
  bottom: 122px;
  opacity: 0.42;
}

.signature-copy {
  max-width: 620px;
}

.detail-list {
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  padding: 9px 14px;
  border: 1px solid rgba(148, 103, 8, 0.18);
  border-radius: 999px;
  color: var(--gold-deep);
  background: rgba(255, 255, 255, 0.52);
  font-size: 0.88rem;
  font-weight: 800;
}

.process {
  margin-top: 28px;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(148, 103, 8, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.48);
  box-shadow: 0 18px 48px rgba(88, 60, 17, 0.05);
}

.process h2 {
  max-width: 780px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.process-steps article {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.orders {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
  margin-top: 28px;
  padding: clamp(34px, 6vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(240, 223, 195, 0.72)),
    var(--paper);
  box-shadow: var(--shadow);
}

.orders::before {
  margin-bottom: 20px;
}

.orders h2 {
  margin-bottom: 12px;
}

.orders p {
  max-width: 660px;
}

.location-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.74);
}

.popup-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(148, 103, 8, 0.24);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top right, rgba(237, 207, 122, 0.24), transparent 48%),
    rgba(255, 253, 248, 0.78);
}

.location-row h3,
.location-row p,
.popup-row h3,
.popup-row p {
  margin-bottom: 0;
}

.popup-row h3 {
  margin-bottom: 8px;
}

.reveal-card {
  min-width: 148px;
  min-height: 108px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  padding: 18px;
  border-radius: var(--radius);
  color: #2d2112;
  background: linear-gradient(145deg, #f6d66f, #d79a10);
  text-align: center;
  box-shadow: 0 18px 42px rgba(200, 145, 19, 0.24);
}

.reveal-card span {
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.reveal-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  font-weight: 500;
}

.location-row span {
  padding: 9px 13px;
  border: 1px solid rgba(148, 103, 8, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  font-size: 0.86rem;
}

.location-row span {
  color: var(--muted);
}

.find-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.find-grid article {
  min-height: 210px;
  display: grid;
  align-content: end;
  padding: 24px;
  background: rgba(255, 253, 248, 0.76);
}

.find-grid ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.find-grid .button {
  width: fit-content;
  margin-top: 12px;
}

.find-grid p {
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 36px 0 30px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer p {
  margin-bottom: 0;
}

@media (max-width: 880px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 44px;
  }

  .hero-art {
    width: min(88vw, 390px);
    order: -1;
  }

  h1 {
    font-size: clamp(3.05rem, 12vw, 5rem);
  }

  .intro {
    padding-bottom: 58px;
  }

  .offering-grid,
  .cake-pop-feature,
  .signature,
  .process-steps,
  .location-row,
  .popup-row,
  .find-grid,
  .orders {
    grid-template-columns: 1fr;
  }

  .cake-pop-image {
    height: 185px;
    min-height: 185px;
  }

  .offering-card {
    min-height: 190px;
  }

  .signature-badge {
    min-height: 340px;
  }

  .orders .button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .site-header {
    min-height: 70px;
    padding-inline: 14px;
  }

  .brand {
    gap: 10px;
    font-size: 1rem;
  }

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

  .hero,
  .intro,
  .section,
  .signature,
  .process,
  .orders,
  .site-footer {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .hero {
    gap: 28px;
    padding-top: 30px;
  }

  .hero-art {
    width: min(82vw, 346px);
  }

  h1 {
    font-size: clamp(2.42rem, 11.2vw, 3.18rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

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

  .signature-badge strong {
    font-size: 3.2rem;
  }

  .signature-badge small {
    margin-left: 0;
    font-size: 0.92rem;
  }

  .site-footer {
    flex-direction: column;
  }
}
