:root {
  --plum: #341e2a;
  --berry: #c63f68;
  --rose: #f7c4d2;
  --mint: #92d5c2;
  --cream: #fff8f1;
  --ivory: #fffdf9;
  --ink: #231d22;
  --muted: #6d5f68;
  --line: rgba(52, 30, 42, 0.14);
  --shadow: 0 22px 60px rgba(52, 30, 42, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.lightbox-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  background: var(--cream);
  color: var(--plum);
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  inset: 30px 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  color: #fff;
  background: linear-gradient(180deg, rgba(24, 11, 19, 0.82), rgba(24, 11, 19, 0));
  transition: background 220ms ease, box-shadow 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(35, 29, 34, 0.94);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.brand-link,
.desktop-nav {
  display: flex;
  align-items: center;
}

.brand-link {
  gap: 0.65rem;
  font-weight: 800;
  min-height: 2.45rem;
  padding-left: 9.55rem;
  position: relative;
}

.brand-logo {
  position: absolute;
  left: -0.1rem;
  top: 50%;
  z-index: 2;
  width: 9.35rem;
  height: 9.35rem;
  border-radius: 50%;
  object-fit: contain;
  transform: translateY(-22%);
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.34));
  pointer-events: none;
}

.desktop-nav {
  display: none;
  gap: 1.2rem;
  font-size: 0.94rem;
  font-weight: 700;
}

.desktop-nav a {
  opacity: 0.86;
}

.desktop-nav a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 100svh;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}

.hero-bg,
.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(24, 12, 19, 0.92), rgba(24, 12, 19, 0.56), rgba(24, 12, 19, 0.18)),
    url("../images/hero-cake.jpg") center / cover no-repeat;
  transform: scale(1.03);
}

.hero-pattern {
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(247, 196, 210, 0.23) 0 2px, transparent 2px 24px),
    linear-gradient(180deg, transparent 70%, rgba(35, 29, 34, 0.92));
  opacity: 0.72;
  animation: patternDrift 15s ease-in-out infinite alternate;
}

.hero-inner {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 6rem 0 5rem;
  gap: 2rem;
}

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

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

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

h1 {
  max-width: 780px;
  margin-bottom: 1.1rem;
  font-size: 3.15rem;
}

h2 {
  margin-bottom: 1rem;
  font-size: 2.1rem;
  color: var(--plum);
}

h3 {
  margin-bottom: 0.55rem;
  color: var(--plum);
  line-height: 1.2;
}

.hero-lede {
  max-width: 38rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.hero-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.15rem;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--berry), #8e294d);
  box-shadow: 0 16px 38px rgba(198, 63, 104, 0.34);
}

.btn-primary:hover {
  box-shadow: 0 20px 48px rgba(198, 63, 104, 0.46);
}

.btn-secondary {
  color: var(--plum);
  background: var(--cream);
}

.btn-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.hero-gallery {
  display: none;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 3.3rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #fff;
  animation: scrollDot 1.8s ease-in-out infinite;
}

.section {
  padding: 4.5rem 0;
}

.section-soft {
  background: linear-gradient(180deg, var(--cream), #ffffff 72%, #f2fbf8);
}

.section-dark {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(52, 30, 42, 0.98), rgba(35, 29, 34, 0.98)),
    url("../images/event-table.jpg") center / cover fixed;
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-dark p {
  color: rgba(255, 255, 255, 0.78);
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 1.8rem;
}

.section-copy p,
.contact-copy p {
  color: var(--muted);
}

.about-grid,
.contact-grid {
  display: grid;
  gap: 1.6rem;
}

.about-card {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.about-card img {
  width: 100%;
  height: 18rem;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-card strong,
.about-card span {
  display: block;
}

.about-card strong {
  margin-bottom: 0.25rem;
  color: var(--plum);
}

.about-card span {
  color: var(--muted);
}

.service-grid,
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.service-card,
.trust-card,
.contact-form,
.offer-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-card {
  overflow: hidden;
  background: #fff;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(52, 30, 42, 0.22);
}

.service-card img {
  width: 100%;
  height: 15rem;
  object-fit: cover;
  transition: transform 550ms ease;
}

.service-card:hover img {
  transform: scale(1.06);
}

.service-card h3,
.service-card p {
  padding-inline: 1rem;
}

.service-card h3 {
  padding-top: 1rem;
}

.service-card p {
  padding-bottom: 1rem;
  color: var(--muted);
}

.gallery-section {
  background: linear-gradient(180deg, #fff, #fff8fb);
}

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

.gallery-item {
  display: block;
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease, filter 500ms ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.08);
}

.trust-card {
  padding: 1.15rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.trust-card span {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  color: var(--plum);
  background: var(--mint);
  font-weight: 900;
}

.contact-section {
  background: #fff;
}

.contact-list {
  display: grid;
  gap: 0.6rem;
  margin: 1.4rem 0;
}

.contact-list a,
.contact-list span {
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--plum);
  font-weight: 700;
}

.map-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 18rem;
}

.map-wrap iframe {
  width: 100%;
  height: 20rem;
  border: 0;
}

.contact-form {
  display: grid;
  gap: 0.75rem;
  align-self: start;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 248, 241, 0.96), rgba(255, 255, 255, 0.96)),
    url("../images/gallery-15.jpg") center / cover;
}

.contact-form label {
  color: var(--plum);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(52, 30, 42, 0.22);
  border-radius: var(--radius);
  padding: 0.85rem;
  background: #fff;
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
}

.offer-section {
  background: linear-gradient(180deg, #fff8fb, var(--cream));
}

.offer-card {
  display: grid;
  gap: 1.3rem;
  padding: 1.2rem;
  background:
    linear-gradient(135deg, rgba(52, 30, 42, 0.95), rgba(97, 39, 65, 0.92)),
    url("../images/hero-lifestyle.jpg") center / cover;
  color: #fff;
}

.offer-card h2 {
  color: #fff;
}

.offer-card p {
  color: rgba(255, 255, 255, 0.78);
}

.offer-card ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.offer-card li {
  position: relative;
  padding-left: 1.4rem;
}

.offer-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--mint);
}

.mobile-cta {
  position: fixed;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.8rem;
  z-index: 25;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
  padding: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(35, 29, 34, 0.92);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.mobile-cta a {
  display: grid;
  place-items: center;
  min-height: 2.7rem;
  border-radius: 999px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
}

.mobile-cta a:first-child {
  background: var(--berry);
}

.site-footer {
  padding: 3rem 1rem 6.5rem;
  color: #fff;
  text-align: center;
  background: var(--ink);
}

.footer-inner {
  width: min(760px, 100%);
  margin: 0 auto 1.6rem;
}

.site-footer h2 {
  color: #fff;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.78);
}

.footer-links {
  justify-content: center;
  margin: 1rem 0;
}

.footer-links a {
  color: #fff;
  font-weight: 800;
}

.minipage-credit {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
  text-align: center;
}

.minipage-credit a {
  color: #fff;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(13, 8, 12, 0.88);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: 82vh;
  width: min(980px, 100%);
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
}

.lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
  border: 0;
  border-radius: 999px;
  color: var(--plum);
  background: var(--cream);
  font-weight: 900;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes patternDrift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-1.2rem, 1rem, 0);
  }
}

@keyframes scrollDot {
  0%, 100% {
    transform: translateY(-0.55rem);
    opacity: 0.45;
  }
  50% {
    transform: translateY(0.55rem);
    opacity: 1;
  }
}

@media (min-width: 640px) {
  .site-header {
    padding-inline: 1.5rem;
  }

  .brand-link {
    padding-left: 10.75rem;
  }

  .brand-logo {
    width: 10.55rem;
    height: 10.55rem;
  }

  h1 {
    font-size: 4.15rem;
  }

  h2 {
    font-size: 2.6rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offer-card {
    padding: 2rem;
  }
}

@media (min-width: 900px) {
  .desktop-nav {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.75fr);
  }

  .hero-gallery {
    position: relative;
    display: block;
    min-height: 35rem;
  }

  .hero-photo {
    position: absolute;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: var(--radius);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
  }

  .hero-photo-main {
    right: 0;
    top: 6rem;
    width: 72%;
    height: 25rem;
    animation: floatMain 6s ease-in-out infinite;
  }

  .hero-photo-small {
    width: 42%;
    height: 14rem;
  }

  .hero-photo-small.top {
    left: 0;
    top: 1rem;
    animation: floatSmall 7s ease-in-out infinite;
  }

  .hero-photo-small.bottom {
    left: 5%;
    bottom: 1.5rem;
    animation: floatSmall 8s ease-in-out infinite reverse;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
  }

  .service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .trust-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .offer-card {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

  .offer-card .btn {
    justify-self: start;
  }

  .mobile-cta {
    display: none;
  }

  .site-footer {
    padding-bottom: 3rem;
  }
}

@keyframes floatMain {
  0%, 100% {
    transform: translateY(0) rotate(1deg);
  }
  50% {
    transform: translateY(-0.8rem) rotate(-1deg);
  }
}

@keyframes floatSmall {
  0%, 100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(0.9rem) rotate(1deg);
  }
}

@media (max-width: 390px) {
  .brand-link span:last-child {
    font-size: 0.92rem;
  }

  h1 {
    font-size: 2.55rem;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
