@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Poppins:wght@500;600;700&display=swap");

:root {
  --cream: #f7f2ec;
  --cream-soft: #fffaf8;
  --sand: #e6d6c6;
  --cocoa: #5b4437;
  --milk-cocoa: #b79a7f;
  --mint: #86bab1;
  --mint-light: #97ccc4;
  --blue: #8db9d6;
  --blue-light: #c7dfef;
  --peach: #e5a183;
  --pink: #eeb2b2;
  --lavender: #aaa8c6;
  --lavender-light: #c8c6d9;
  --white: #fffdfb;
  --shadow: 0 24px 70px rgba(91, 68, 55, 0.13);
  --line: rgba(91, 68, 55, 0.16);
  color: var(--cocoa);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--cream-soft);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: var(--cream-soft) url("./assets/wallpaper-pattern.jpg") repeat;
  background-size: 640px auto;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

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

h1,
h2,
h3,
.button,
.nav a {
  font-family: "Poppins", system-ui, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 8vw, 7.7rem);
  line-height: 0.94;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1.03;
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  line-height: 1.12;
}

p {
  color: rgba(91, 68, 55, 0.78);
  line-height: 1.65;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1.5rem;
  min-height: 76px;
  padding: 0.75rem clamp(1rem, 4vw, 4rem);
  border-bottom: 1px solid rgba(91, 68, 55, 0.08);
  background: rgba(255, 250, 248, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-grid;
  place-items: center;
  width: 84px;
  height: 84px;
  overflow: hidden;
  border: 2px solid rgba(91, 68, 55, 0.14);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(91, 68, 55, 0.16);
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.65rem, 2vw, 1.4rem);
}

.nav a {
  position: relative;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(91, 68, 55, 0.72);
}

.nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 2px;
  background: var(--mint);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: 180ms ease;
}

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

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.2rem;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta,
.button.primary {
  color: #fff;
  background: var(--mint);
  box-shadow: 0 12px 26px rgba(134, 186, 177, 0.28);
}

.nav a.nav-cta {
  color: #fff;
  min-height: 54px;
  padding: 1rem 1.55rem;
  font-size: 0.86rem;
}

.button.secondary {
  color: var(--cocoa);
  border: 1px solid var(--line);
  background: rgba(255, 250, 248, 0.72);
}

.button.small {
  min-height: 40px;
  padding: 0.7rem 1rem;
  color: #fffaf8;
  background: var(--mint);
}

.button.text-link {
  min-height: auto;
  padding: 0;
  color: var(--mint);
  background: transparent;
  box-shadow: none;
}

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

.language {
  display: flex;
  gap: 0.25rem;
  padding: 0.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--sand);
}

.language button {
  min-width: 34px;
  min-height: 30px;
  border: 0;
  border-radius: 999px;
  color: rgba(91, 68, 55, 0.66);
  background: transparent;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
}

.language .active {
  color: var(--cocoa);
  background: var(--white);
}

.menu-toggle {
  display: none;
}

.section-pad {
  padding: clamp(4rem, 8vw, 7.5rem) clamp(1rem, 5vw, 5rem);
}

.eyebrow {
  margin-bottom: 1rem;
  color: #b85f39;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lead {
  max-width: 40rem;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 1.1fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  min-height: calc(100vh - 76px);
}

.hero-copy {
  position: relative;
}

.hero h1 {
  max-width: 18ch;
  margin-bottom: 1.4rem;
  font-size: clamp(2.4rem, 5.2vw, 4.6rem);
  line-height: 1.05;
}

.hero-extra {
  max-width: 38rem;
  margin-top: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-media {
  position: relative;
  justify-self: end;
  width: min(100%, 720px);
  min-height: min(65vw, 760px);
}

.hero-main,
.story img,
.cafe img,
.split img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-main {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(100%, 690px);
  min-height: min(64vw, 740px);
  border: 12px solid rgba(255, 250, 248, 0.72);
  border-radius: 34% 66% 42% 58% / 52% 36% 64% 48%;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: min(1180px, calc(100% - 2rem));
  margin: -3rem auto 0;
  overflow: hidden;
  border: 1px solid rgba(91, 68, 55, 0.1);
  border-radius: 2rem;
  background: rgba(91, 68, 55, 0.1);
  box-shadow: 0 20px 55px rgba(91, 68, 55, 0.1);
}

.facts article {
  min-height: 150px;
  padding: clamp(1.2rem, 3vw, 2.2rem);
  background: var(--white);
}

.facts strong {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--mint);
  font-family: "Poppins", system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
}

.facts span {
  color: rgba(91, 68, 55, 0.72);
  line-height: 1.45;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(16rem, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 5vw, 4.5rem);
}

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

.soft-card {
  min-height: 230px;
  padding: clamp(1.2rem, 2.6vw, 2rem);
  border: 1px solid rgba(91, 68, 55, 0.1);
  border-radius: 1.5rem;
  background: var(--cream);
}

.soft-card:nth-child(2) {
  background: var(--blue-light);
}

.soft-card:nth-child(3) {
  background: #f6ded6;
}

.soft-card h3 {
  margin-bottom: 1rem;
}

.story {
  display: grid;
  grid-template-columns: minmax(18rem, 0.9fr) minmax(18rem, 1fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}

.story img {
  max-height: 660px;
  border-radius: 2rem 8rem 2rem 2rem;
}

.story-copy p:not(.eyebrow) {
  margin: 1.4rem 0 1.8rem;
  font-size: 1.08rem;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto clamp(2rem, 5vw, 4rem);
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  margin-top: 1rem;
  font-size: 1.08rem;
}

.section-heading.compact {
  max-width: 640px;
}

.split {
  display: grid;
  grid-template-columns: minmax(16rem, 0.8fr) minmax(18rem, 1.2fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto;
}

.zone-cards {
  display: grid;
  gap: 1rem;
}

.zone-cards .soft-card p {
  margin-top: 0.7rem;
}

.zone-cards .soft-card p:first-of-type {
  margin-top: 0;
}

.zone-cards .soft-card:nth-child(2) {
  background: var(--blue-light);
}

.zone-cards .soft-card:nth-child(3) {
  background: #f6ded6;
}

.split img {
  max-height: 620px;
  border-radius: 6rem 2rem 2rem 2rem;
}

.price-blocks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 1180px;
  margin: clamp(2.5rem, 5vw, 4rem) auto 0;
}

.price-block {
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 1px solid rgba(91, 68, 55, 0.1);
  border-radius: 1.5rem;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(91, 68, 55, 0.06);
}

.price-block h3 {
  margin-bottom: 0.75rem;
}

.price-block > p {
  margin-bottom: 1.4rem;
}

.price-list {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.1rem;
  border-radius: 1rem;
  background: var(--cream);
}

.price-list span {
  color: var(--cocoa);
  font-weight: 700;
}

.price-list strong {
  color: var(--mint);
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 1.1rem;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

.birthday-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(16rem, 0.85fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.birthday-copy p {
  margin-bottom: 1rem;
}

.birthday-copy strong {
  color: var(--cocoa);
}

.feature-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.4rem 0 2rem;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 0.85rem 1.1rem 0.85rem 2.5rem;
  border: 1px solid rgba(91, 68, 55, 0.09);
  border-radius: 1rem;
  background: var(--white);
  color: var(--cocoa);
  font-weight: 700;
}

.feature-list li::before {
  position: absolute;
  top: 50%;
  left: 1rem;
  color: var(--mint);
  font-weight: 700;
  content: "✓";
  transform: translateY(-50%);
}

.photo-corner-card {
  display: grid;
  gap: 1.2rem;
  align-content: start;
  padding: 1.5rem;
  border: 1px solid rgba(91, 68, 55, 0.1);
  border-radius: 2rem;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(91, 68, 55, 0.08);
}

.photo-corner-card img {
  width: 100%;
  height: 220px;
  border-radius: 1.5rem;
  object-fit: cover;
  box-shadow: none;
}

.photo-corner-card h3 {
  margin-bottom: 0.6rem;
}

.photo-corner-card p {
  margin-bottom: 0.8rem;
}

.cafe {
  display: grid;
  grid-template-columns: minmax(18rem, 0.9fr) minmax(18rem, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.cafe img {
  max-height: 640px;
  border-radius: 2rem 2rem 2rem 8rem;
}

.cafe-copy p:not(.eyebrow) {
  margin: 1.3rem 0 2rem;
  font-size: 1.08rem;
}

.mini-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.mini-menu span {
  padding: 0.8rem 1rem;
  border: 1px solid rgba(91, 68, 55, 0.1);
  border-radius: 999px;
  background: var(--cream);
  color: var(--cocoa);
  font-weight: 700;
}

.cafe-tagline {
  margin-top: 1.6rem;
  color: var(--mint);
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.gallery-cta {
  margin-top: 1.6rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
  scroll-margin-top: 96px;
}

.filters button {
  min-height: 42px;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(91, 68, 55, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 248, 0.65);
  color: rgba(91, 68, 55, 0.78);
  cursor: pointer;
  font-weight: 700;
}

.filters .active {
  border-color: var(--mint);
  color: var(--white);
  background: var(--mint);
}

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

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 1.5rem;
  background: var(--sand);
  box-shadow: 0 12px 30px rgba(91, 68, 55, 0.08);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform 280ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.04);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(18rem, 0.85fr) minmax(18rem, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(1.4rem, 4vw, 3rem);
  border: 1px solid rgba(91, 68, 55, 0.1);
  border-radius: 2rem;
  background: rgba(255, 253, 251, 0.82);
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  margin-bottom: 1rem;
}

.contact-details {
  display: grid;
  gap: 0.8rem;
  margin-top: 2rem;
}

.contact-details span {
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: var(--cream);
  color: var(--cocoa);
  font-weight: 700;
}

.signature {
  margin-top: 1.6rem;
  color: var(--mint);
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 700;
}

form {
  display: grid;
  gap: 1rem;
}

.hidden-field {
  display: none;
}

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

.form-note {
  margin-top: -0.3rem;
  color: rgba(91, 68, 55, 0.65);
  font-size: 0.85rem;
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--cocoa);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(91, 68, 55, 0.16);
  border-radius: 1rem;
  background: var(--cream);
  color: var(--cocoa);
  outline: 0;
}

input,
select {
  min-height: 54px;
  padding: 0 1rem;
}

textarea {
  resize: vertical;
  padding: 1rem;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 4px rgba(134, 186, 177, 0.18);
}

.form-status {
  padding: 1rem;
  border-radius: 1rem;
  background: var(--blue-light);
  color: var(--cocoa);
  font-weight: 700;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1rem, 5vw, 5rem);
  color: var(--cream-soft);
  background: var(--cocoa);
}

footer img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

footer p {
  color: rgba(255, 250, 248, 0.78);
}

footer a {
  font-weight: 700;
}

.mobile-cta {
  display: none;
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-media {
    justify-self: stretch;
    width: 100%;
    min-height: 680px;
  }

  .intro-grid,
  .story,
  .split,
  .cafe,
  .contact-panel,
  .birthday-layout {
    grid-template-columns: 1fr;
  }

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

  .price-blocks {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  body {
    padding-bottom: 72px;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 68px;
  }

  .brand {
    width: 66px;
    height: 66px;
  }

  .menu-toggle {
    display: grid;
    gap: 5px;
    width: 46px;
    height: 46px;
    place-content: center;
    border: 1px solid rgba(91, 68, 55, 0.14);
    border-radius: 50%;
    background: var(--white);
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--cocoa);
  }

  .nav {
    position: fixed;
    top: 68px;
    right: 1rem;
    left: 1rem;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 1rem;
    border: 1px solid rgba(91, 68, 55, 0.1);
    border-radius: 1.5rem;
    background: rgba(255, 253, 251, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.75rem);
    transition: 180ms ease;
  }

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

  .nav a {
    padding: 0.9rem;
    border-bottom: 1px solid rgba(91, 68, 55, 0.08);
  }

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

  .nav-cta {
    margin-top: 0.8rem;
  }

  .language {
    justify-self: start;
    margin-top: 0.8rem;
  }

  .hero-media {
    min-height: 560px;
  }

  .hero-main {
    width: 100%;
    min-height: 560px;
  }

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

  .gallery-grid img {
    min-height: 430px;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }

  .mobile-cta {
    position: fixed;
    z-index: 25;
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    display: grid;
    grid-template-columns: 1fr 0.58fr;
    gap: 0.5rem;
    padding: 0.5rem;
    border: 1px solid rgba(91, 68, 55, 0.12);
    border-radius: 999px;
    background: rgba(255, 253, 251, 0.92);
    box-shadow: 0 16px 40px rgba(91, 68, 55, 0.18);
    backdrop-filter: blur(18px);
  }

  .mobile-cta a {
    display: grid;
    min-height: 48px;
    place-items: center;
    border-radius: 999px;
    font-family: "Poppins", system-ui, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
  }

  .mobile-cta a:first-child {
    color: var(--white);
    background: var(--mint);
  }

  .mobile-cta a:last-child {
    background: var(--cream);
  }
}

@media (max-width: 560px) {
  .hero h1 {
    max-width: 15ch;
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }

  .section-pad {
    padding: 3.5rem 1rem;
  }

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

  .hero {
    gap: 1.4rem;
    padding-top: 2.5rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-media {
    min-height: 430px;
  }

  .hero-main {
    width: 100%;
    min-height: 430px;
    border-width: 8px;
    border-radius: 2rem 5rem 2rem 4rem;
  }

  .facts {
    margin-top: -1.5rem;
  }

  .facts article {
    min-height: auto;
  }

  .story img,
  .split img,
  .cafe img {
    max-height: 480px;
    border-radius: 1.5rem 1.5rem 4rem 1.5rem;
  }

  .soft-card,
  .price-block,
  .photo-corner-card,
  .contact-panel {
    border-radius: 1.3rem;
  }

  .contact-panel {
    padding: 1rem;
  }
}
