:root {
  --palette-2: #ff59aa;
  --palette-2-hover: #e04a96;
  --palette-3: #6e6d76;
  --palette-4: #0e0c1b;
  --palette-8: #ffffff;
  --gold: #c19d56;
  --gold-line: #c9a74d;
  --pale-pink: #f78da7;
  --header-bg: #ffffff;
  --cream: #faf7f2;
  --max: 1100px;
  --hero-shell: 1000px;
  --hero-inner: 500px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Quicksand, system-ui, sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--palette-3);
  background: var(--cream);
  line-height: 1.3;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: var(--palette-2);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* Header — logo | centered nav (no social icons) */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  border-bottom: 1px solid rgba(14, 12, 27, 0.06);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding-block: 0.5rem;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  flex-shrink: 0;
}

.brand-name {
  font-family: "Glass Antiqua", serif;
  font-size: clamp(1.5rem, 3vw, 1.8125rem);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--palette-4);
  letter-spacing: 0.02em;
}

.brand-name:hover {
  text-decoration: none;
  color: var(--palette-2);
}

.brand-tag {
  font-family: "42dot Sans", system-ui, sans-serif;
  font-size: 7px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--palette-3);
  font-weight: 700;
}

.nav-desktop {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
}

.nav-desktop a {
  color: var(--palette-4);
  font-weight: 400;
  font-size: 0.95rem;
}

.nav-desktop a:hover {
  color: var(--palette-2);
  text-decoration: none;
}

.header-end {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 44px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 4px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--palette-4);
  border-radius: 1px;
}

/* Mobile drawer — dark panel like Blocksy offcanvas */
.nav-panel {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 200;
  align-items: stretch;
  justify-content: flex-start;
  background: rgba(14, 12, 27, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, visibility 0.2s;
}

.nav-panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-panel__sheet {
  position: relative;
  width: min(360px, 100vw);
  height: 100%;
  background: rgba(18, 21, 25, 0.98);
  padding: 1.5rem 1.75rem 2rem;
  transform: translateX(-100%);
  transition: transform 0.25s ease;
  overflow-y: auto;
  box-shadow: 4px 0 32px rgba(0, 0, 0, 0.2);
}

.nav-panel.is-open .nav-panel__sheet {
  transform: translateX(0);
}

.nav-panel__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.85);
}

.nav-mobile-list {
  list-style: none;
  margin: 3rem 0 0;
  padding: 0;
}

.nav-mobile-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-mobile-list a {
  display: block;
  padding: 0.95rem 0;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none !important;
}

.nav-mobile-list a:hover {
  color: var(--palette-2);
}

.btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  background: var(--palette-2);
  color: var(--palette-8) !important;
  font-family: Quicksand, system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0;
  text-decoration: none !important;
  white-space: nowrap;
}

.btn-call:hover {
  background: var(--palette-4);
}

.btn-call--drawer {
  width: 100%;
  margin-top: 1.5rem;
}

/* Hero — Stackable stk-dd1bc46 / stk-8102f67 */
.hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--palette-4) url("assets/images/slider-1-background-bigsize.jpg") center top / 100% auto no-repeat fixed;
  padding: 0 1.25rem 3rem;
}

@media (max-width: 900px) {
  .hero {
    background-attachment: scroll;
    background-size: cover;
    min-height: clamp(480px, 85vh, 650px);
  }

  .hero h1 {
    font-size: clamp(2.75rem, 10vw, 3.125rem);
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

@media (max-width: 700px) {
  .hero::before {
    background: rgba(255, 252, 248, 0.72);
  }
}

.hero-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--hero-shell);
  margin-inline: auto;
}

.hero-inner {
  max-width: var(--hero-inner);
  margin-left: auto;
  margin-right: 0;
  margin-top: clamp(4rem, 14vw, 200px);
  text-align: center;
  padding-bottom: 1rem;
}

.hero-icon {
  width: 55px;
  height: 55px;
  margin: 0 auto 0.85rem;
}

.hero-icon path {
  fill: var(--palette-2);
}

/* Matches stk-c24de4b + Blocksy h1 scale */
.hero h1 {
  font-family: Quicksand, system-ui, sans-serif;
  font-size: clamp(3.125rem, 8vw, 4.375rem);
  font-weight: 300;
  margin: 0;
  line-height: 1em;
  color: var(--palette-4);
}

.hero-heading-line {
  width: 30%;
  min-width: 72px;
  height: 1px;
  background: var(--palette-4);
  margin: 1.25rem auto 1.25rem;
  border-radius: 0;
}

.hero-sub {
  font-size: 1rem;
  font-weight: 400;
  margin: 0 0 1.5rem;
  color: var(--palette-3);
  line-height: 1.65;
}

.btn-primary {
  display: inline-block;
  padding: 0.35rem 3.125rem;
  background: var(--palette-2);
  color: var(--palette-8) !important;
  font-family: Quicksand, system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 0;
  text-decoration: none !important;
  letter-spacing: 0.06em;
  text-transform: none;
  border: none;
  line-height: 1.5;
}

.btn-primary:hover {
  background: var(--palette-4);
  text-decoration: none !important;
}

/* Sections */
.section {
  padding: clamp(3rem, 8vw, 7.5rem) 0;
}

.section--delights {
  background-color: #ffffff;
  background-image: url("assets/images/background-pink-01.jpg");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: auto;
  padding-top: clamp(4rem, 10vw, 7.5rem);
  padding-bottom: clamp(4rem, 10vw, 7.5rem);
}

.section--menu-parallax {
  background-color: var(--palette-4);
  background-image: url("assets/images/h1-parallax-1.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  color: var(--cream);
  padding-top: clamp(4rem, 10vw, 7.5rem);
  padding-bottom: clamp(4rem, 10vw, 7.5rem);
}

@media (max-width: 900px) {
  .section--menu-parallax {
    background-attachment: scroll;
  }
}

.section--about {
  background-color: #ffffff;
  background-image: url("assets/images/h1-background-img-2.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: clamp(4rem, 10vw, 7.5rem);
  padding-bottom: clamp(4rem, 10vw, 7.5rem);
}

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

.section--gallery-full {
  padding-left: 0;
  padding-right: 0;
  background: var(--cream);
  padding-bottom: 0;
}

/* Blocksy: h2 → Quicksand 35px / stk-258a86a underline */
h2 {
  font-family: Quicksand, system-ui, sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.1875rem);
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
  margin: 0 0 0.5rem;
  color: var(--palette-4);
}

.heading-line--h2 {
  width: 10%;
  min-width: 48px;
  height: 1px;
  background: var(--gold-line);
  margin: 1.25rem auto 0;
  border-radius: 0;
}

h2 + .heading-line--h2 {
  margin-bottom: 1.25rem;
}

.section-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  color: var(--palette-3);
}

.sep--pale-pink {
  width: min(200px, 70%);
  height: 2px;
  border: none;
  background: var(--pale-pink);
  margin: 1.5rem auto;
  opacity: 1;
}

/* Grid delights */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

.card-delight {
  text-align: center;
}

.card-delight img {
  width: 115px;
  height: 115px;
  max-width: 115px;
  margin: 0 auto 1rem;
  display: block;
  border-radius: 50%;
  object-fit: cover;
}

/* Blocksy h4: Quicksand 25px — stk-c9a1ec4 column titles */
.card-delight h3 {
  font-family: Quicksand, system-ui, sans-serif;
  font-size: 1.5625rem;
  font-weight: 400;
  line-height: 1.3;
  margin: 0 0 15px;
  color: var(--palette-4);
}

.card-delight p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--palette-3);
}

.center-actions {
  text-align: center;
  margin-top: 2rem;
}

.notice {
  text-align: center;
  font-size: 0.9rem;
  color: var(--palette-3);
  max-width: 640px;
  margin: 2rem auto 0;
}

/* Menu split — 3 columns, text bands align to full image height */
.menu-split {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 360px) 1fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: stretch;
}

.menu-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0;
  min-height: 0;
}

.menu-item {
  flex: 0 0 auto;
}

.menu-split__img {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* stk menu: white Quicksand, titles medium, body lighter */
.menu-col h3 {
  font-family: Quicksand, system-ui, sans-serif;
  font-size: clamp(1.4rem, 2.75vw, 1.75rem);
  font-weight: 500;
  line-height: 1.3;
  margin: 0 0 0.5rem;
  color: #ffffff;
}

.menu-col p {
  margin: 0;
  font-size: clamp(0.97rem, 1.35vw, 1.08rem);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.menu-col--left,
.menu-col--left .menu-item {
  text-align: right;
}

.menu-col--right,
.menu-col--right .menu-item {
  text-align: left;
}

@media (max-width: 900px) {
  .menu-split {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .menu-col {
    justify-content: flex-start;
    gap: 1.5rem;
  }

  .menu-split__img {
    order: -1;
    max-width: min(280px, 75vw);
    margin: 0 auto;
  }

  .menu-col--left,
  .menu-col--right,
  .menu-col--left .menu-item,
  .menu-col--right .menu-item {
    text-align: center;
  }
}

.menu-split__img img {
  width: 100%;
  height: auto;
  max-height: min(78vh, 640px);
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

/* About features */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem 1.25rem;
}

@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.feature {
  text-align: center;
}

/* stk-fd08974 … : 20px icon, 18px padding, 1px gold circle */
.feature-icon {
  width: fit-content;
  height: auto;
  margin: 0 auto 15px;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  box-sizing: content-box;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Seasonal icon slightly larger on live site (stk-7f3d374) */
.feature-icon--lg svg {
  width: 23px;
  height: 23px;
}

.feature-icon--lg {
  padding: 15px;
}

/* stk-7474966 … : Blocksy h4 */
.feature h3 {
  font-family: Quicksand, system-ui, sans-serif;
  font-size: 1.5625rem;
  font-weight: 400;
  line-height: 1.3;
  margin: 0 0 15px;
  color: var(--palette-4);
}

.feature p {
  margin: 0;
  font-size: 14px;
  line-height: 1.3;
  color: var(--palette-3);
}

/* Gallery — flush grid, no gutters */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  padding: 0;
  width: 100%;
}

.gallery figure:nth-child(-n + 4) {
  grid-column: span 3;
}

.gallery figure:nth-child(n + 5) {
  grid-column: span 4;
}

@media (max-width: 900px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery figure:nth-child(-n + 4),
  .gallery figure:nth-child(n + 5) {
    grid-column: span 1;
  }
}

.gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 0;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
  transition: transform 0.35s ease;
}

.gallery figure:hover img {
  transform: scale(1.05);
}

.gallery figure.wide {
  grid-column: span 4;
}

@media (max-width: 900px) {
  .gallery figure.wide {
    grid-column: span 2;
  }
}

/* Footer — Blocksy type-1 middle row 1fr 2fr 1fr */
.site-footer {
  background: var(--palette-4);
  color: var(--cream);
  padding: clamp(2.75rem, 6vw, 4.25rem) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: clamp(1.75rem, 4vw, 2.75rem);
  padding-bottom: clamp(2.25rem, 4vw, 3.25rem);
  align-items: start;
}

.footer-col--side {
  text-align: left;
}

.footer-col--center {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
  justify-self: center;
}

.footer-widget-title {
  font-family: Quicksand, system-ui, sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.3;
  margin: 0 0 0.65rem;
  color: var(--cream);
}

.footer-widget-title--spaced {
  margin-top: 1.35rem;
}

.footer-inline {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.footer-icon-ring {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: var(--cream);
}

.footer-icon-ring--sm {
  padding: 12px;
}

.footer-hours-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 1.05rem;
  margin-top: 0.15rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border: 1px solid rgba(241, 241, 241, 0.62);
  border-radius: 50%;
  color: var(--cream);
  background: transparent;
  text-decoration: none !important;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
  border-color: var(--palette-2);
  color: var(--cream);
}

.footer-social svg {
  display: block;
}

.footer-quote {
  font-family: Quicksand, system-ui, sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.55;
  margin: 0 0 0.65rem;
  padding: 0 clamp(0.5rem, 4vw, 3.125rem);
  color: rgba(255, 255, 255, 0.95);
}

.footer-logo {
  display: block;
  margin: 0 auto 0.65rem;
  height: 55px;
  width: 150px;
  object-fit: contain;
}

.footer-brand-title {
  font-family: "Glass Antiqua", serif;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 400;
  color: var(--palette-2);
  text-align: center;
  letter-spacing: 1px;
  margin: 0;
  line-height: 1.2;
}

.footer-brand-sub {
  font-family: Quicksand, system-ui, sans-serif;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.35em;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0.35rem 0 0;
  color: var(--cream);
}

.footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.footer-contact-lines {
  flex: 1;
  min-width: 0;
}

.footer-contact-label {
  margin: 0 0 0.2rem;
  font-family: Quicksand, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--cream);
}

.footer-contact-value {
  margin: 0;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.45;
}

.footer-contact-value a,
.footer-hours-text a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none !important;
}

.footer-contact-value a:hover {
  color: var(--palette-2);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col--side,
  .footer-col--contact {
    text-align: center;
  }

  .footer-inline {
    justify-content: center;
    text-align: left;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-widget-title {
    text-align: center;
  }
}

.footer-bottom {
  border-top: 1px solid rgba(109, 108, 117, 0.42);
  padding: 1.1rem 1rem;
  text-align: center;
  font-family: Quicksand, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.75);
}

.footer-bottom p {
  margin: 0;
}

/* Back to top */
.back-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 4px;
  background: var(--palette-2);
  color: var(--palette-8);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.back-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.back-top:hover {
  background: var(--palette-4);
}

.back-top svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Responsive header */
@media (max-width: 999px) {
  .nav-desktop {
    display: none !important;
  }

  .menu-toggle {
    display: flex;
  }
}

@media (min-width: 1000px) {
  .nav-desktop {
    display: flex;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .nav-panel {
    display: none !important;
  }
}
