:root {
  --color-cream: #fff8ee;
  --color-mint: #cdebe0;
  --color-pink: #f5aeba;
  --color-yellow: #fbef88;
  --color-sky: #b8dff1;
  --color-coral: #ed7f88;
  --color-leaf: #62b59f;
  --color-ink: #3b3a4a;
  --color-muted: #747181;
  --color-white: #ffffff;
  --shadow-soft: 0 18px 45px rgba(89, 74, 88, 0.14);
  --shadow-small: 0 10px 24px rgba(89, 74, 88, 0.1);
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1160px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-cream);
  color: var(--color-ink);
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--color-ink);
  color: var(--color-white);
  padding: 10px 16px;
  transition: transform 0.2s ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 238, 0.86);
  border-bottom: 1px solid rgba(59, 58, 74, 0.08);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(100% - 32px, var(--container));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-width: 250px;
}

.brand-logo {
  width: auto;
  height: clamp(54px, 6vw, 70px);
  max-width: 210px;
  display: block;
  object-fit: contain;
}

.brand-name {
  font-family: "Baloo 2", "Nunito", sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 800;
  line-height: 1;
  text-shadow:
    1px 1px 0 rgba(255, 255, 255, 0.9),
    0 8px 18px rgba(237, 127, 136, 0.16);
  white-space: nowrap;
}

.brand-letter {
  display: inline-block;
  color: var(--color-coral);
}

.color-pink {
  color: #f29aa8;
}

.color-mint {
  color: #86cfc1;
}

.color-yellow {
  color: #f2d852;
}

.color-sky {
  color: #7fc3e3;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--color-white);
  box-shadow: var(--shadow-small);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--color-ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 1.5vw, 20px);
  font-size: 0.93rem;
  font-weight: 800;
}

.nav-mascot {
  display: none;
}

.nav-menu a {
  position: relative;
  padding: 10px 0;
}

.nav-menu a::after {
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 3px;
  content: "";
  border-radius: 999px;
  background: var(--color-coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

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

.section {
  position: relative;
  padding: clamp(64px, 8vw, 106px) 0;
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.section-inner,
.hero-inner,
.footer-inner {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.hero {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-cream) 0%, #fff2f1 52%, #eef9f3 100%);
}

.hero-bg::before,
.hero-bg::after {
  position: absolute;
  content: "";
  border-radius: 999px;
  pointer-events: none;
}

.hero-bg::before {
  width: min(38vw, 420px);
  aspect-ratio: 1;
  right: -8vw;
  top: 8vh;
  border: clamp(28px, 5vw, 58px) solid rgba(251, 239, 136, 0.78);
}

.hero-bg::after {
  width: min(42vw, 520px);
  aspect-ratio: 1;
  left: -18vw;
  bottom: 4vh;
  border: clamp(24px, 4vw, 48px) solid rgba(245, 174, 186, 0.62);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: clamp(28px, 6vw, 76px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--color-coral);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: "Baloo 2", "Nunito", sans-serif;
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(2.65rem, 8vw, 5.8rem);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 5vw, 3.55rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.hero-text {
  max-width: 720px;
  color: #5d5a68;
  font-size: clamp(1.04rem, 2vw, 1.28rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 900;
  line-height: 1.15;
  box-shadow: var(--shadow-small);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  background: var(--color-coral);
  color: var(--color-white);
}

.button-secondary {
  background: var(--color-yellow);
  color: var(--color-ink);
}

.button-ghost {
  border-color: rgba(59, 58, 74, 0.12);
  background: var(--color-white);
  color: var(--color-ink);
}

.button-instagram {
  gap: 10px;
  background: linear-gradient(135deg, #f29aa8, #f2d852 52%, #86cfc1);
  color: var(--color-ink);
}

.button-instagram img {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  object-fit: contain;
}

.hero-instagram-button {
  flex-basis: 100%;
  width: fit-content;
}

.hero-visual {
  min-width: 0;
}

.image-placeholder {
  min-height: 220px;
  border: 2px dashed rgba(59, 58, 74, 0.22);
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.34)),
    repeating-linear-gradient(45deg, rgba(98, 181, 159, 0.14) 0 12px, rgba(245, 174, 186, 0.16) 12px 24px);
  color: var(--color-muted);
  text-align: center;
}

.image-placeholder span {
  color: var(--color-ink);
  font-weight: 900;
}

.image-placeholder small {
  font-size: 0.76rem;
  font-weight: 800;
}

.image-placeholder-large {
  min-height: clamp(360px, 48vw, 560px);
  border-radius: 44px;
  box-shadow: var(--shadow-soft);
}

.photo-frame {
  min-height: 220px;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-white);
  box-shadow: inset 0 0 0 1px rgba(59, 58, 74, 0.06);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-photo {
  width: 100%;
  max-width: 100%;
  height: clamp(360px, 48vw, 560px);
  min-height: 0;
  aspect-ratio: auto;
  border-radius: 44px;
  box-shadow: var(--shadow-soft);
}

.intro {
  background: var(--color-white);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.split-layout > p,
.section-heading > p,
.cta-panel p,
.feature-card p,
.contact-list,
.site-footer p {
  color: var(--color-muted);
}

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

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.cta-panel,
.reviews-widget,
.map-card {
  border: 1px solid rgba(59, 58, 74, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-small);
}

.feature-card {
  padding: 14px;
}

.feature-card .image-placeholder,
.feature-card .photo-frame {
  min-height: 176px;
  margin-bottom: 20px;
}

.feature-card h3,
.feature-card p {
  padding: 0 4px;
}

.package-card {
  display: flex;
  flex-direction: column;
}

.package-card .text-link {
  margin: auto 4px 4px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 10px 16px;
  background: var(--color-mint);
  color: var(--color-ink);
  font-weight: 900;
  transition: transform 0.2s ease;
}

.menu-band {
  background:
    radial-gradient(circle at 16% 22%, rgba(251, 239, 136, 0.64), transparent 28%),
    linear-gradient(135deg, rgba(205, 235, 224, 0.78), rgba(255, 248, 238, 0.92));
}

.cta-panel {
  padding: clamp(22px, 4vw, 38px);
}

.gallery-section {
  background: #fff6f5;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(190px, auto);
  gap: 16px;
}

.gallery-item .image-placeholder,
.gallery-item .photo-frame {
  height: 100%;
  min-height: 190px;
}

.gallery-wide {
  grid-column: span 2;
}

.reviews-section {
  background: var(--color-white);
}

.reviews-widget {
  min-height: 260px;
  padding: clamp(20px, 4vw, 34px);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(26px, 6vw, 70px);
  align-items: stretch;
}

.contact-list {
  display: grid;
  gap: 12px;
  font-style: normal;
}

.contact-list a {
  font-weight: 900;
  color: var(--color-ink);
}

.contact-list address {
  max-width: 520px;
  font-style: normal;
}

.map-card {
  min-height: 390px;
  overflow: hidden;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 390px;
  border: 0;
}

.site-footer {
  background: #363244;
  color: var(--color-white);
  padding: 34px 0 94px;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto auto;
  gap: 22px;
  align-items: start;
}

.footer-inner p,
.footer-links a {
  color: rgba(255, 255, 255, 0.76);
}

.footer-links {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.copyright {
  justify-self: end;
}

.designer-credit {
  grid-column: 1 / -1;
  justify-self: end;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
  font-weight: 800;
}

.fixed-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  display: flex;
  gap: 10px;
}

.fixed-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 12px 17px;
  color: var(--color-white);
  font-weight: 900;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease;
}

.call-button {
  background: var(--color-ink);
}

.whatsapp-button {
  background: #25d366;
}

@media (max-width: 1020px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    inset: var(--header-height) 16px auto;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    column-gap: 14px;
    max-height: calc(100svh - var(--header-height) - 28px);
    overflow-y: auto;
    border: 1px solid rgba(59, 58, 74, 0.08);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.96);
    padding: 18px;
    box-shadow: var(--shadow-soft);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-mascot {
    display: flex;
    grid-column: 1;
    grid-row: 1 / span 7;
    align-self: center;
    justify-content: center;
    padding: 6px 0;
  }

  .nav-mascot img {
    width: min(98px, 26vw);
    height: auto;
    display: block;
    filter: drop-shadow(0 14px 18px rgba(89, 74, 88, 0.16));
  }

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

  .nav-menu a {
    grid-column: 2;
    padding: 12px;
    border-radius: 14px;
  }

  .nav-menu a:hover,
  .nav-menu a:focus-visible {
    background: var(--color-cream);
  }

  .nav-menu a::after {
    display: none;
  }

  .hero-inner,
  .split-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    align-items: start;
  }

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

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

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

  .copyright {
    justify-self: start;
  }

  .designer-credit {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 74px;
  }

  .nav {
    width: min(100% - 24px, var(--container));
  }

  .brand {
    min-width: 0;
    gap: 8px;
  }

  .brand-logo {
    height: 48px;
    max-width: 148px;
  }

  .brand-name {
    font-size: 1.1rem;
  }

  .section {
    padding: 54px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  .hero-inner,
  .section-inner,
  .footer-inner {
    width: min(100% - 24px, var(--container));
  }

  h1 {
    font-size: clamp(2.5rem, 14vw, 4rem);
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 2.8rem);
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .card-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-wide {
    grid-column: span 1;
  }

  .image-placeholder-large {
    min-height: 300px;
    border-radius: var(--radius-lg);
  }

  .hero-photo {
    height: 300px;
    border-radius: var(--radius-lg);
  }

  .fixed-actions {
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: grid;
    grid-template-columns: 0.72fr 1fr;
  }

  .fixed-button {
    min-height: 52px;
  }

  .site-footer {
    padding-bottom: 112px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
