:root {
  --cream: #f5efe4;
  --paper: #fffaf2;
  --white: #ffffff;
  --ink: #21372d;
  --ink-soft: #53645c;
  --green: #2d4f3f;
  --green-deep: #1f382c;
  --sage: #b9c8a7;
  --sage-light: #dfe7d6;
  --pink: #db7793;
  --pink-deep: #bd526f;
  --rose-light: #f1ccd6;
  --gold: #c68d38;
  --line: rgba(33, 55, 45, 0.16);
  --shadow: 0 22px 60px rgba(56, 43, 30, 0.13);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

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

h1,
h2,
h3 {
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(3.5rem, 7.2vw, 7.3rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 5vw, 5rem);
}

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

em {
  color: var(--pink-deep);
  font-weight: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 120px 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--green-deep);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(245, 239, 228, 0.94);
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(33, 55, 45, 0.06);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}

.brand-logo {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  object-fit: cover;
  border: 2px solid rgba(255, 250, 242, 0.75);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(77, 0, 38, 0.14);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
}

.main-nav a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  background: var(--pink-deep);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav > a:not(.nav-cta):hover::after,
.main-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 11px 18px;
  color: var(--white);
  background: var(--green);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle svg {
  width: 21px;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 150px 0 54px;
  overflow: hidden;
}

.hero-accent {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  opacity: 0.64;
}

.hero-accent-one {
  top: 11%;
  right: -160px;
  width: 520px;
  height: 520px;
  background: var(--rose-light);
}

.hero-accent-two {
  bottom: 1%;
  left: -100px;
  width: 240px;
  height: 240px;
  background: var(--sage-light);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
}

.eyebrow,
.kicker,
.section-index,
.card-kicker {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--pink-deep);
}

.eyebrow span {
  width: 34px;
  height: 2px;
  background: var(--pink-deep);
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 23px;
  border: 0;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.button svg,
.text-link svg,
.offer-card a svg {
  width: 18px;
  height: 18px;
  transition: transform 180ms ease;
}

.button:hover svg,
.text-link:hover svg,
.offer-card a:hover svg {
  transform: translate(3px, -2px);
}

.button-primary {
  color: var(--white);
  background: var(--pink-deep);
  box-shadow: 0 12px 28px rgba(189, 82, 111, 0.23);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #a94560;
  box-shadow: 0 16px 34px rgba(189, 82, 111, 0.29);
}

.button-secondary {
  color: var(--white);
  background: var(--green);
}

.button-light {
  color: var(--green-deep);
  background: var(--paper);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.opening-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 34px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 600;
}

.status-dot {
  width: 9px;
  height: 9px;
  background: #51a26f;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(81, 162, 111, 0.14);
}

.opening-chip.is-closed .status-dot {
  background: var(--pink-deep);
  box-shadow: 0 0 0 5px rgba(189, 82, 111, 0.14);
}

.hero-visual {
  position: relative;
  max-width: 540px;
  justify-self: end;
}

.image-frame {
  position: relative;
  padding: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 44% 56% 34% 66% / 38% 36% 64% 62%;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.image-frame img {
  width: 100%;
  min-height: 570px;
  object-fit: cover;
  object-position: 55% center;
  border-radius: inherit;
}

.hero-note {
  position: absolute;
  display: flex;
  align-items: center;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 15px 40px rgba(33, 55, 45, 0.14);
}

.hero-note-top {
  top: 15%;
  left: -45px;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 18px;
}

.hero-note-top svg {
  color: var(--pink-deep);
}

.hero-note-top span {
  display: flex;
  flex-direction: column;
  font-size: 0.75rem;
  line-height: 1.25;
}

.hero-note-top strong {
  font-size: 0.95rem;
}

.hero-note-bottom {
  right: -12px;
  bottom: 10%;
  padding: 16px 20px;
  border-radius: 48% 52% 45% 55% / 58% 43% 57% 42%;
  transform: rotate(-4deg);
}

.note-script {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.2rem;
  font-style: italic;
}

.proof-bar {
  display: grid;
  margin-top: 78px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  padding: 0 22px;
  border-right: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.proof-item:first-child {
  padding-left: 0;
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item > strong {
  color: var(--ink);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.proof-item svg {
  flex: 0 0 auto;
  color: var(--pink-deep);
}

.proof-item > span {
  display: flex;
  flex-direction: column;
}

.stars {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.intro {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.38fr 1.25fr 0.82fr;
  align-items: start;
  gap: 55px;
}

.section-index {
  margin: 7px 0 0;
  color: var(--pink-deep);
}

.kicker,
.card-kicker {
  margin-bottom: 17px;
  color: var(--pink-deep);
}

.intro h2 {
  max-width: 700px;
  margin-bottom: 0;
}

.intro-text {
  padding-top: 45px;
}

.intro-text p {
  margin-bottom: 28px;
  color: var(--ink-soft);
}

.section-heading {
  display: grid;
  margin-bottom: 58px;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: end;
  gap: 70px;
}

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

.section-heading > p {
  margin: 0 0 10px;
  color: var(--ink-soft);
}

.offer-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 20px;
}

.offer-card {
  position: relative;
  display: flex;
  min-height: 350px;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.offer-card-large {
  min-height: 720px;
  padding: 48px;
  color: var(--paper);
  background: var(--green);
  grid-row: span 2;
}

.offer-card-pink {
  background: var(--rose-light);
}

.offer-card-dark {
  color: var(--paper);
  background: var(--ink);
}

.offer-number {
  position: absolute;
  top: 27px;
  right: 30px;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 0.9rem;
  opacity: 0.64;
}

.offer-icon {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  background: var(--paper);
  border-radius: 50%;
  color: var(--pink-deep);
}

.offer-card-large .offer-icon {
  width: 92px;
  height: 92px;
  background: var(--sage);
  color: var(--green-deep);
}

.offer-icon svg {
  width: 30px;
  height: 30px;
}

.offer-card-large .offer-icon svg {
  width: 40px;
  height: 40px;
}

.offer-card .card-kicker {
  margin-top: 36px;
}

.offer-card-large .card-kicker,
.offer-card-dark .card-kicker {
  color: var(--sage);
}

.offer-card h3 {
  margin-bottom: 18px;
}

.offer-card p:last-child {
  max-width: 530px;
  margin-bottom: 0;
  opacity: 0.77;
}

.offer-card a {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--paper);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.craft {
  background: var(--paper);
}

.craft-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(70px, 9vw, 130px);
}

.craft-gallery {
  position: relative;
  min-height: 600px;
}

.photo-crop {
  position: absolute;
  top: 0;
  right: 35px;
  width: min(88%, 430px);
  aspect-ratio: 0.86;
  overflow: hidden;
  background: var(--sage-light);
  border-radius: 46% 54% 42% 58% / 39% 42% 58% 61%;
  box-shadow: var(--shadow);
}

.photo-crop img {
  width: 200%;
  max-width: none;
  height: 200%;
  object-fit: cover;
  object-position: top left;
}

.craft-badge {
  position: absolute;
  right: -8px;
  bottom: 45px;
  z-index: 2;
  display: flex;
  width: 160px;
  height: 160px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--pink-deep);
  border: 8px solid var(--paper);
  border-radius: 50%;
  line-height: 1.1;
  transform: rotate(7deg);
}

.craft-badge span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.craft-badge strong {
  margin: 4px 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 2.1rem;
  font-weight: 400;
}

.photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px 18px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
  transform: rotate(-3deg);
}

.photo-caption svg {
  width: 18px;
  color: var(--pink-deep);
}

.craft-copy {
  max-width: 590px;
}

.craft-copy .section-index {
  margin-bottom: 64px;
}

.craft-copy > p:not(.section-index, .kicker) {
  max-width: 555px;
  margin-bottom: 28px;
  color: var(--ink-soft);
}

.check-list {
  display: grid;
  margin: 0 0 34px;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.check-list svg {
  width: 22px;
  height: 22px;
  padding: 4px;
  color: var(--green-deep);
  background: var(--sage-light);
  border-radius: 50%;
  stroke-width: 3;
}

.catering {
  padding-top: 0;
  background: var(--paper);
}

.catering-panel {
  position: relative;
  display: grid;
  min-height: 630px;
  padding: clamp(45px, 7vw, 88px);
  overflow: hidden;
  color: var(--paper);
  background: var(--green-deep);
  border-radius: var(--radius-lg);
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.catering-panel::before,
.catering-panel::after {
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: 50%;
  content: "";
}

.catering-panel::before {
  top: -90px;
  left: -90px;
}

.catering-panel::after {
  right: -70px;
  bottom: -100px;
}

.catering-copy {
  position: relative;
  z-index: 2;
  max-width: 610px;
}

.catering-copy .kicker {
  color: var(--sage);
}

.catering-copy h2 em {
  color: var(--rose-light);
}

.catering-copy > p:not(.kicker) {
  max-width: 555px;
  color: rgba(255, 250, 242, 0.76);
}

.occasion-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 36px;
}

.occasion-list span {
  padding: 8px 13px;
  border: 1px solid rgba(255, 250, 242, 0.24);
  border-radius: 999px;
  color: var(--paper);
  font-size: 0.78rem;
}

.cake-illustration {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  height: 390px;
  justify-self: end;
}

.cake-top,
.cake-layer,
.cake-plate {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.cake-top {
  top: 87px;
  z-index: 4;
  width: 230px;
  height: 78px;
  background: var(--paper);
  border-radius: 50%;
}

.cake-layer {
  background: var(--rose-light);
  border: 6px solid var(--paper);
  border-top: 0;
}

.cake-layer-one {
  top: 123px;
  z-index: 3;
  width: 230px;
  height: 95px;
  border-radius: 0 0 34px 34px;
}

.cake-layer-two {
  top: 203px;
  z-index: 2;
  width: 288px;
  height: 112px;
  background: var(--pink);
  border-radius: 34px;
}

.cake-plate {
  bottom: 51px;
  z-index: 1;
  width: 370px;
  height: 38px;
  background: var(--sage);
  border-radius: 50%;
}

.berry {
  position: absolute;
  z-index: 6;
  width: 30px;
  height: 30px;
  background: var(--pink-deep);
  border: 4px solid var(--paper);
  border-radius: 50%;
}

.berry-one { top: 72px; left: 47%; }
.berry-two { top: 84px; left: 39%; }
.berry-three { top: 89px; right: 34%; }

.visit {
  background: var(--cream);
}

.visit-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: start;
  gap: clamp(60px, 9vw, 130px);
}

.visit-copy > p:not(.section-index, .kicker) {
  max-width: 500px;
  margin-bottom: 36px;
  color: var(--ink-soft);
}

.visit-copy .section-index,
.reserve-copy .section-index {
  margin-bottom: 58px;
}

.contact-row {
  display: flex;
  max-width: 470px;
  align-items: flex-start;
  gap: 17px;
  padding: 19px 0;
  border-top: 1px solid var(--line);
}

.contact-row:nth-of-type(3) {
  border-bottom: 1px solid var(--line);
}

.contact-row > svg {
  width: 21px;
  margin-top: 4px;
  color: var(--pink-deep);
}

.contact-row div {
  display: flex;
  flex-direction: column;
}

.contact-row small {
  margin-bottom: 3px;
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-row strong,
.contact-row a {
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
}

.visit-copy > .button {
  margin-top: 32px;
}

.hours-card {
  padding: clamp(32px, 5vw, 58px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hours-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.hours-head h3 {
  margin-bottom: 34px;
}

.hours-head > svg {
  width: 36px;
  height: 36px;
  color: var(--pink-deep);
}

.hours-list {
  margin: 0;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 8px;
  border-top: 1px solid var(--line);
}

.hours-list div.is-today {
  margin-inline: -8px;
  padding-inline: 16px;
  background: var(--sage-light);
  border-color: transparent;
  border-radius: 9px;
  font-weight: 700;
}

.hours-list dt,
.hours-list dd {
  margin: 0;
}

.hours-list dd {
  color: var(--ink-soft);
}

.hours-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.hours-note svg {
  width: 16px;
}

.reserve {
  background: var(--sage-light);
}

.reserve-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(50px, 8vw, 110px);
}

.reserve-copy {
  position: sticky;
  top: 130px;
  align-self: start;
}

.reserve-copy > p:not(.section-index, .kicker) {
  max-width: 470px;
  color: var(--ink-soft);
}

.reserve-note {
  display: flex;
  max-width: 440px;
  align-items: center;
  gap: 13px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(33, 55, 45, 0.2);
  font-size: 0.84rem;
  font-weight: 600;
}

.reserve-note svg {
  width: 20px;
  color: var(--pink-deep);
  fill: var(--pink-deep);
}

.reserve-form {
  display: grid;
  padding: clamp(30px, 5vw, 56px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  gap: 20px;
  box-shadow: 0 18px 50px rgba(33, 55, 45, 0.09);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.reserve-form label {
  display: grid;
  gap: 8px;
}

.reserve-form label > span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.reserve-form input,
.reserve-form select,
.reserve-form textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: 10px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.reserve-form textarea {
  min-height: 125px;
  resize: vertical;
}

.reserve-form input:focus,
.reserve-form select:focus,
.reserve-form textarea:focus {
  border-color: var(--pink-deep);
  box-shadow: 0 0 0 3px rgba(189, 82, 111, 0.13);
}

.reserve-form input.is-invalid {
  border-color: #a62f3f;
}

.reserve-form .button {
  width: 100%;
  margin-top: 6px;
}

.form-hint,
.form-status {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.74rem;
  text-align: center;
}

.form-status:not(:empty) {
  padding: 10px 12px;
  color: #8e2433;
  background: #fae3e7;
  border-radius: 8px;
  font-weight: 700;
}

.site-footer {
  padding: 78px 0 24px;
  color: rgba(255, 250, 242, 0.74);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 0.7fr 0.7fr;
  gap: 50px;
}

.brand-footer {
  margin-bottom: 22px;
  color: var(--paper);
}

.brand-footer .brand-logo {
  width: 64px;
  height: 64px;
  border-color: rgba(255, 250, 242, 0.2);
  box-shadow: none;
}

.brand-footer .brand-copy small {
  color: rgba(255, 250, 242, 0.6);
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-grid p {
  margin-bottom: 8px;
}

.footer-title {
  margin-bottom: 18px !important;
  color: var(--sage);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid button,
.footer-grid span {
  margin-bottom: 8px;
  color: inherit;
  font-size: 0.84rem;
  text-decoration: none;
}

.footer-grid button {
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}

.footer-grid a:hover,
.footer-grid button:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.72rem;
}

.footer-bottom span span {
  color: var(--pink);
}

.legal-dialog {
  width: min(calc(100% - 36px), 600px);
  padding: 42px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.legal-dialog::backdrop {
  background: rgba(23, 37, 30, 0.65);
  backdrop-filter: blur(5px);
}

.legal-dialog h2 {
  font-size: 2.5rem;
}

.dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--ink);
  background: var(--cream);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.dialog-close svg {
  width: 19px;
}

.legal-note {
  padding: 12px 14px;
  color: var(--ink-soft);
  background: var(--sage-light);
  border-radius: 9px;
  font-size: 0.78rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.72, 0.22, 1);
}

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

:focus-visible {
  outline: 3px solid rgba(189, 82, 111, 0.4);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .section {
    padding: 90px 0;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 74px;
    right: 20px;
    left: 20px;
    display: flex;
    padding: 28px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav > a::after {
    display: none;
  }

  .main-nav .nav-cta {
    margin-top: 18px;
    padding: 13px 18px;
    border: 0;
    text-align: center;
  }

  .hero {
    padding-top: 132px;
  }

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

  .hero-copy {
    max-width: 780px;
  }

  .hero-visual {
    width: min(90%, 650px);
    justify-self: center;
  }

  .image-frame img {
    min-height: 590px;
  }

  .proof-bar {
    grid-template-columns: 1fr 1fr;
  }

  .proof-item {
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }

  .proof-item:nth-child(2) {
    border-right: 0;
  }

  .intro-grid {
    grid-template-columns: 0.32fr 1.1fr;
  }

  .intro-text {
    padding-top: 0;
    grid-column: 2;
  }

  .section-heading,
  .craft-grid,
  .visit-grid,
  .reserve-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 20px;
  }

  .section-heading > p {
    max-width: 590px;
  }

  .craft-gallery {
    width: min(100%, 620px);
  }

  .craft-copy {
    max-width: 700px;
  }

  .catering-panel {
    grid-template-columns: 1fr;
  }

  .cake-illustration {
    position: absolute;
    right: -50px;
    bottom: -70px;
    opacity: 0.27;
  }

  .reserve-copy {
    position: static;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 76px 0;
  }

  .header-inner {
    min-height: 74px;
  }

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

  .hero {
    padding: 118px 0 36px;
  }

  h1 {
    font-size: clamp(3.25rem, 16vw, 5.2rem);
  }

  h2 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hero-visual {
    width: 100%;
    margin-top: 10px;
  }

  .image-frame img {
    min-height: 430px;
  }

  .hero-note-top {
    top: 11%;
    left: -7px;
  }

  .hero-note-bottom {
    right: -4px;
  }

  .proof-bar {
    margin-top: 55px;
    grid-template-columns: 1fr;
  }

  .proof-item,
  .proof-item:first-child {
    padding: 14px 0;
    border-right: 0;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .intro-text {
    grid-column: auto;
  }

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

  .offer-card,
  .offer-card-large {
    min-height: 390px;
    padding: 30px;
    grid-row: auto;
  }

  .offer-card-large {
    min-height: 520px;
  }

  .craft-gallery {
    min-height: 500px;
  }

  .photo-crop {
    right: 0;
    width: 92%;
  }

  .craft-badge {
    right: -4px;
    bottom: 18px;
    width: 135px;
    height: 135px;
  }

  .photo-caption {
    bottom: -2px;
  }

  .craft-copy .section-index,
  .visit-copy .section-index,
  .reserve-copy .section-index {
    margin-bottom: 36px;
  }

  .catering-panel {
    min-height: 650px;
    border-radius: 24px;
  }

  .occasion-list span {
    padding: 7px 10px;
    font-size: 0.7rem;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .hours-card,
  .reserve-form {
    border-radius: 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 25px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 430px) {
  .brand-copy strong {
    font-size: 1.35rem;
  }

  .hero-note-top {
    display: none;
  }

  .image-frame img {
    min-height: 360px;
  }

  .hero-note-bottom {
    bottom: 5%;
    padding: 12px 14px;
  }

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

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .legal-dialog {
    padding: 32px 24px;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
