:root {
  --wc-paper: #f7f0e6;
  --wc-paper-light: #fdfaf5;
  --wc-ink: #4a3f35;
  --wc-ink-soft: #7a6e62;
  --wc-ink-muted: #9a8e82;
  --wc-coral: #e8a090;
  --wc-coral-deep: #d47868;
  --wc-peach: #f0c8a8;
  --wc-sage: #a8c4a0;
  --wc-sage-deep: #7aab72;
  --wc-sky: #a8cce8;
  --wc-lavender: #c8b8d8;
  --wc-gold: #d4b878;
  --wc-wash-rust: rgba(232, 160, 144, 0.35);
  --wc-wash-sage: rgba(168, 196, 160, 0.3);
  --wc-wash-sky: rgba(168, 204, 232, 0.28);
  --wc-wash-peach: rgba(240, 200, 168, 0.4);
  --border-sketch: rgba(120, 100, 80, 0.25);
  --max: 1140px;
  --radius-organic: 255px 15px 225px 15px / 15px 225px 15px 255px;
  --radius-soft: 24px 8px 20px 12px / 12px 20px 8px 24px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 16px;
  background: var(--wc-paper);
  color: var(--wc-ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

/* Paper texture + watercolor washes */
body.watercolor {
  background-color: var(--wc-paper);
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E"),
    radial-gradient(ellipse 80% 60% at 10% 15%, var(--wc-wash-peach) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 10%, var(--wc-wash-sky) 0%, transparent 50%),
    radial-gradient(ellipse 60% 70% at 5% 85%, var(--wc-wash-sage) 0%, transparent 55%),
    radial-gradient(ellipse 75% 55% at 95% 80%, var(--wc-wash-rust) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(200, 184, 216, 0.12) 0%, transparent 60%);
}

.wc-deco {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
  opacity: 0.5;
}
.wc-deco--1 { width: 420px; height: 420px; top: -80px; right: -100px; background: var(--wc-coral); }
.wc-deco--2 { width: 360px; height: 360px; bottom: 20%; left: -120px; background: var(--wc-sage); }
.wc-deco--3 { width: 300px; height: 300px; top: 45%; right: -60px; background: var(--wc-sky); }

h1, h2, h3 { line-height: 1.3; font-weight: 600; color: var(--wc-ink); }
h1, h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 28px; position: relative; z-index: 1; }

.eyebrow {
  font-family: 'Caveat', cursive;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--wc-coral-deep);
  margin-bottom: 8px;
}
.eyebrow--light { color: var(--wc-peach); }

/* Watercolor sketch buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Caveat', cursive;
  font-weight: 700; font-size: 1.15rem;
  padding: 10px 28px;
  border-radius: var(--radius-soft);
  border: 2px solid var(--border-sketch);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  position: relative;
}
.btn--primary {
  background: linear-gradient(135deg, var(--wc-coral) 0%, var(--wc-peach) 50%, var(--wc-coral-deep) 100%);
  color: var(--wc-ink);
  border-color: rgba(212, 120, 104, 0.4);
  box-shadow: 0 4px 16px rgba(232, 160, 144, 0.35);
}
.btn--primary:hover {
  transform: translateY(-2px) rotate(-0.5deg);
  box-shadow: 0 8px 24px rgba(232, 160, 144, 0.45);
}
.btn--outline {
  background: rgba(253, 250, 245, 0.7);
  color: var(--wc-ink);
  border-color: var(--border-sketch);
  backdrop-filter: blur(4px);
}
.btn--outline:hover {
  background: rgba(255, 252, 248, 0.95);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(120, 100, 80, 0.1);
}
.btn--lg { padding: 12px 34px; font-size: 1.25rem; }
.btn--block { width: 100%; }

/* Topbar */
.topbar {
  background: linear-gradient(90deg, rgba(74, 63, 53, 0.92), rgba(90, 75, 65, 0.88));
  color: rgba(255, 252, 248, 0.9);
  font-size: 0.84rem;
  border-bottom: 2px solid rgba(232, 160, 144, 0.3);
  position: relative;
  z-index: 10;
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; height: 40px; }
.topbar__contact { display: flex; gap: 24px; }
.topbar__contact a { color: rgba(255, 252, 248, 0.95); font-weight: 500; }
.topbar__contact a:hover { color: var(--wc-peach); }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253, 250, 245, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 2px dashed var(--border-sketch);
}
.nav__inner { display: flex; align-items: center; height: 74px; gap: 28px; }
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700; font-size: 1.2rem;
  flex-shrink: 0; color: var(--wc-ink);
}
.brand__mark {
  width: 42px; height: 42px; display: grid; place-items: center;
  background: linear-gradient(145deg, var(--wc-coral), var(--wc-peach), var(--wc-sage));
  color: var(--wc-ink); font-weight: 700;
  font-family: 'Caveat', cursive; font-size: 1.4rem;
  border-radius: 50% 40% 55% 45% / 45% 55% 40% 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 3px 12px rgba(232, 160, 144, 0.3);
}
.brand__suffix { font-weight: 500; color: var(--wc-ink-soft); font-size: 0.82rem; font-family: 'Nunito', sans-serif; }
.nav__links { display: flex; gap: 26px; flex: 1; }
.nav__links a {
  font-family: 'Caveat', cursive;
  font-size: 1.1rem; font-weight: 600;
  color: var(--wc-ink-soft);
}
.nav__links a:hover { color: var(--wc-coral-deep); }
.nav__right { display: flex; align-items: center; gap: 10px; margin-left: auto; flex-shrink: 0; }
.nav__phone { display: none; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 22px; height: 2px; background: var(--wc-ink); border-radius: 2px; }

/* Language switcher */
.lang-switch { position: relative; }
.lang-switch__btn {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  background: rgba(255, 252, 248, 0.8);
  border: 2px dashed var(--border-sketch);
  border-radius: var(--radius-soft);
  font-size: 0.88rem; font-weight: 700; color: var(--wc-ink); cursor: pointer; min-width: 78px;
}
.lang-switch__btn:hover { border-style: solid; border-color: var(--wc-coral); }
.lang-switch__flag { font-size: 1.05rem; }
.lang-switch__label { letter-spacing: 0.04em; }
.lang-switch__arrow { color: var(--wc-ink-muted); }
.lang-switch__menu {
  display: none; position: absolute; top: calc(100% + 6px); right: 0;
  min-width: 165px;
  background: rgba(253, 250, 245, 0.96);
  border: 2px solid var(--border-sketch);
  border-radius: var(--radius-soft);
  list-style: none;
  box-shadow: 0 8px 28px rgba(120, 100, 80, 0.12);
  z-index: 200;
  backdrop-filter: blur(8px);
}
.lang-switch__menu.open { display: block; }
.lang-switch__menu li {
  padding: 11px 15px; font-size: 0.88rem; font-weight: 600;
  cursor: pointer; border-bottom: 1px dashed var(--border-sketch);
}
.lang-switch__menu li:last-child { border-bottom: none; }
.lang-switch__menu li:hover, .lang-switch__menu li.active {
  background: var(--wc-wash-peach);
  color: var(--wc-ink);
}

/* Hero */
.hero {
  padding: 84px 0 92px;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 90% 70% at 30% 40%, var(--wc-wash-peach) 0%, transparent 65%);
  pointer-events: none;
}
.hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; position: relative; }
.hero__copy h1 { font-size: clamp(2.1rem, 4vw, 2.9rem); margin-bottom: 22px; }
.hero__sub { color: var(--wc-ink-soft); font-size: 1.08rem; margin-bottom: 32px; max-width: 520px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.hero__badges { display: flex; gap: 10px; flex-wrap: wrap; }
.hero__badges span {
  font-family: 'Caveat', cursive;
  font-size: 1rem; font-weight: 600; color: var(--wc-ink);
  padding: 6px 18px;
  background: rgba(255, 252, 248, 0.75);
  border: 2px dashed var(--border-sketch);
  border-radius: 50px 20px 50px 20px / 20px 50px 20px 50px;
}
.hero__image {
  position: relative;
}
.hero__image::before {
  content: '';
  position: absolute; inset: -8px;
  background: linear-gradient(135deg, var(--wc-wash-coral, var(--wc-wash-rust)), var(--wc-wash-sage));
  border-radius: 30% 70% 60% 40% / 50% 40% 60% 50%;
  z-index: -1;
  filter: blur(8px);
  opacity: 0.6;
}
.hero__image img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 28% 72% 55% 45% / 45% 55% 72% 28%;
  border: 3px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 12px 40px rgba(120, 100, 80, 0.15);
  filter: saturate(0.92) contrast(0.95);
}

/* Watercolor card mixin */
.wc-card {
  background: rgba(253, 250, 245, 0.82);
  border: 2px solid var(--border-sketch);
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 24px rgba(120, 100, 80, 0.08);
}

/* Sections */
.section { padding: 84px 0; position: relative; }
.section--warm {
  background: linear-gradient(180deg, transparent 0%, var(--wc-wash-peach) 30%, transparent 100%);
}
.section--warm::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 40% at 70% 50%, var(--wc-wash-sage) 0%, transparent 60%);
  pointer-events: none; opacity: 0.5;
}
.section--dark {
  background: linear-gradient(160deg, #5a4a42 0%, #4a3f35 40%, #3d3530 100%);
  color: #f5efe6;
  position: relative;
}
.section--dark::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 20% 30%, rgba(232, 160, 144, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 80% 70%, rgba(168, 196, 160, 0.12) 0%, transparent 55%);
  pointer-events: none;
}
.section--dark h2 { color: #fdfaf5; }
.section--dark .contact__info > p { color: rgba(253, 250, 245, 0.75); }
.section--dark .contact__list a { color: #fdfaf5; }
.section--dark .contact__label { color: rgba(253, 250, 245, 0.5); }
.section__head { margin-bottom: 52px; }
.section__head--center { text-align: center; max-width: 660px; margin-left: auto; margin-right: auto; margin-bottom: 52px; }
.section__head h2 { font-size: clamp(1.7rem, 3vw, 2.25rem); margin-bottom: 16px; }
.section__head p { color: var(--wc-ink-soft); font-size: 1.05rem; }

/* Service grid */
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 52px; }
.service-card {
  padding: 36px 26px;
  border-radius: var(--radius-organic);
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:nth-child(1) { background: rgba(253, 250, 245, 0.85); border: 2px solid rgba(232, 160, 144, 0.35); }
.service-card:nth-child(2) { background: rgba(253, 252, 248, 0.85); border: 2px solid rgba(168, 196, 160, 0.4); border-radius: 15px 255px 15px 225px / 225px 15px 255px 15px; }
.service-card:nth-child(3) { background: rgba(252, 250, 255, 0.85); border: 2px solid rgba(168, 204, 232, 0.4); border-radius: 225px 15px 255px 15px / 15px 255px 15px 225px; }
.service-card:nth-child(4) { background: rgba(255, 252, 248, 0.85); border: 2px solid rgba(212, 184, 120, 0.4); }
.service-card:hover {
  transform: translateY(-4px) rotate(0.5deg);
  box-shadow: 0 14px 36px rgba(120, 100, 80, 0.12);
}
.service-card__icon { font-size: 2.4rem; display: block; margin-bottom: 16px; filter: saturate(0.85); }
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; margin-bottom: 10px; color: var(--wc-ink); font-weight: 700;
}
.service-card p { font-size: 0.9rem; color: var(--wc-ink-soft); line-height: 1.6; }

/* Gallery */
.gallery { display: grid; gap: 28px; }
.gallery--2 { grid-template-columns: 1fr 1fr; }
.gallery__item { margin: 0; }
.gallery__item img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover;
  border-radius: 20px 60px 25px 55px / 55px 25px 60px 20px;
  border: 3px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 8px 28px rgba(120, 100, 80, 0.12);
  filter: saturate(0.9);
}
.gallery__item:nth-child(2) img {
  border-radius: 55px 20px 60px 25px / 25px 60px 20px 55px;
}
.gallery__item figcaption {
  font-family: 'Caveat', cursive;
  font-size: 1.05rem; color: var(--wc-ink-muted);
  margin-top: 12px; text-align: center;
}

/* Catering */
.platform__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.platform__image img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 45% 55% 50% 50% / 50% 45% 55% 50%;
  border: 3px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 32px rgba(120, 100, 80, 0.14);
  filter: saturate(0.88);
}
.platform__copy h2 { font-size: 1.9rem; margin-bottom: 18px; }
.platform__copy > p { color: var(--wc-ink-soft); margin-bottom: 26px; font-size: 1.02rem; }
.checklist { list-style: none; display: grid; gap: 14px; }
.checklist li {
  position: relative; padding-left: 28px;
  font-size: 0.96rem; color: var(--wc-ink-soft);
}
.checklist li::before {
  content: '✿';
  position: absolute; left: 0;
  color: var(--wc-coral-deep);
  font-size: 0.9rem;
}

/* Location */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-item {
  padding: 36px 26px;
  border-radius: var(--radius-soft);
  text-align: center;
  transition: transform 0.25s;
}
.why-item:nth-child(1) { background: rgba(253, 250, 245, 0.8); border: 2px dashed rgba(232, 160, 144, 0.4); }
.why-item:nth-child(2) { background: rgba(250, 253, 248, 0.8); border: 2px dashed rgba(168, 196, 160, 0.45); }
.why-item:nth-child(3) { background: rgba(252, 250, 255, 0.8); border: 2px dashed rgba(200, 184, 216, 0.45); }
.why-item:nth-child(4) { background: rgba(255, 252, 246, 0.8); border: 2px dashed rgba(212, 184, 120, 0.45); }
.why-item:hover { transform: translateY(-3px) rotate(-0.3deg); }
.why-item__icon { font-size: 2.4rem; display: block; margin-bottom: 16px; }
.why-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; margin-bottom: 10px; font-weight: 700;
}
.why-item p { font-size: 0.9rem; color: var(--wc-ink-soft); }

/* About */
.about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about__copy h2 { font-size: 1.9rem; margin-bottom: 18px; }
.about__copy p { color: var(--wc-ink-soft); margin-bottom: 24px; font-size: 0.98rem; line-height: 1.8; }
.about__list { list-style: none; display: grid; gap: 12px; }
.about__list li {
  position: relative; padding-left: 22px;
  font-size: 0.94rem; color: var(--wc-ink-soft);
}
.about__list li::before {
  content: '~';
  position: absolute; left: 0; top: 0;
  color: var(--wc-coral-deep);
  font-family: 'Caveat', cursive; font-size: 1.2rem; font-weight: 700;
}
.about__image img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 60px 20px 55px 25px / 25px 55px 20px 60px;
  border: 3px solid rgba(255, 255, 255, 0.55);
  filter: saturate(0.9);
}

/* Contact */
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact__info h2 { font-size: 1.9rem; margin-bottom: 16px; }
.contact__info > p { margin-bottom: 32px; line-height: 1.8; font-size: 1.02rem; }
.contact__list { list-style: none; display: grid; gap: 22px; }
.contact__label {
  display: block; font-family: 'Caveat', cursive;
  font-size: 0.95rem; font-weight: 700;
  letter-spacing: 0.06em; margin-bottom: 6px;
}
.contact__list a:hover { color: var(--wc-peach); }
.contact__form {
  background: rgba(255, 252, 248, 0.08);
  border: 2px dashed rgba(253, 250, 245, 0.25);
  border-radius: var(--radius-soft);
  padding: 36px;
  backdrop-filter: blur(4px);
}
.field { margin-bottom: 16px; }
.field label {
  display: block; font-family: 'Caveat', cursive;
  font-size: 1rem; font-weight: 600;
  margin-bottom: 7px; color: rgba(253, 250, 245, 0.92);
}
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 16px;
  border: 2px solid rgba(253, 250, 245, 0.2);
  border-radius: var(--radius-soft);
  background: rgba(253, 250, 245, 0.1);
  color: #fdfaf5;
  font-size: 0.94rem; font-family: inherit; outline: none;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--wc-peach);
  background: rgba(253, 250, 245, 0.15);
}
.field select option { color: var(--wc-ink); background: var(--wc-paper-light); }
.contact__note { font-size: 0.84rem; color: rgba(253, 250, 245, 0.5); margin-top: 14px; text-align: center; }

/* Footer */
.footer {
  background: linear-gradient(180deg, #5a4a42, #4a3f35);
  color: rgba(253, 250, 245, 0.82);
  padding: 56px 0;
  border-top: 3px solid rgba(232, 160, 144, 0.4);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 60px;
  background: linear-gradient(180deg, rgba(232, 160, 144, 0.08), transparent);
  pointer-events: none;
}
.footer .brand { color: #fdfaf5; }
.footer .brand__mark {
  background: linear-gradient(145deg, var(--wc-coral), var(--wc-peach));
  color: var(--wc-ink);
}
.footer__inner { display: flex; justify-content: space-between; gap: 40px; position: relative; }
.footer__brand p { font-size: 0.9rem; margin-top: 14px; line-height: 1.7; }
.footer__legal { font-family: 'Caveat', cursive; font-size: 0.95rem; color: rgba(253, 250, 245, 0.5); margin-top: 8px; }
.footer__copy { font-size: 0.82rem; color: rgba(253, 250, 245, 0.4); margin-top: 8px; }
.footer__links { display: flex; gap: 26px; flex-wrap: wrap; align-items: flex-start; }
.footer__links a {
  font-family: 'Caveat', cursive;
  font-size: 1.05rem; font-weight: 600;
  color: rgba(253, 250, 245, 0.72);
}
.footer__links a:hover { color: var(--wc-peach); }

/* Responsive */
@media (max-width: 960px) {
  .service-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .nav__links { display: none; }
  .nav__links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 74px; left: 0; right: 0;
    background: rgba(253, 250, 245, 0.96);
    padding: 22px 28px; gap: 18px;
    border-bottom: 2px dashed var(--border-sketch);
    box-shadow: 0 8px 24px rgba(120, 100, 80, 0.1);
    backdrop-filter: blur(12px);
  }
  .nav__toggle { display: flex; }
  .nav__phone { display: inline-flex; }
  .hero__inner, .platform__inner, .about__inner, .contact__inner { grid-template-columns: 1fr; }
  .hero__image, .platform__image { order: -1; }
  .gallery--2 { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; }
  .wc-deco { opacity: 0.35; }
}
@media (max-width: 520px) {
  .service-grid, .why-grid { grid-template-columns: 1fr; }
  .topbar__inner { flex-direction: column; height: auto; padding: 8px 0; gap: 4px; }
  .nav__right .btn--primary { display: none; }
}
