:root {
  --terracotta: #C55830;
  --olive: #687A4E;
  --sage: #A8B593;
  --yellow: #E1B34A;
  --charcoal: #2C2C2C;
  --cream: #F7F1E7;
  --paper: #FFFDF8;
  --ink-soft: #65615B;
  --max: 1220px;
  --radius: 1.6rem;
  --display: "Bodoni Moda", Didot, "Times New Roman", serif;
  --sans: "Manrope", Arial, sans-serif;
  --shadow: 0 24px 70px rgba(44,44,44,.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  background: var(--paper);
  color: var(--charcoal);
  padding: .8rem 1rem;
  border-radius: .5rem;
}
.skip-link:focus { top: 1rem; }

.container { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.section { padding: 5.25rem 0; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.035em;
}
h1 { font-size: clamp(3.3rem, 15vw, 7rem); }
h2 { font-size: clamp(2.6rem, 10vw, 5.2rem); }
h3 { font-size: clamp(1.7rem, 6vw, 2.25rem); }
h1 em, h2 em { color: var(--terracotta); font-weight: 500; }

.section-script {
  margin: 0 0 .75rem;
  font-family: var(--display);
  font-size: 1.1rem;
  font-style: italic;
  letter-spacing: .02em;
  color: var(--olive);
}
.section-script-light { color: #F0E6C8; }
.section-heading { max-width: 52rem; margin-bottom: 2rem; }
.section-heading.centered { text-align: center; margin-inline: auto; }
.section-heading h2 { margin-bottom: .8rem; }

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.05rem 1rem;
  color: #fff;
  transition: background .25s ease, color .25s ease, box-shadow .25s ease, padding .25s ease;
}
.site-header.is-scrolled {
  background: rgba(247,241,231,.95);
  color: var(--charcoal);
  box-shadow: 0 10px 30px rgba(44,44,44,.08);
  backdrop-filter: blur(14px);
}
.brand { display: inline-flex; flex-direction: column; text-decoration: none; line-height: 1; }
.brand-main { font-family: var(--display); font-size: 1.55rem; letter-spacing: -.02em; }
.brand-sub { margin-top: .32rem; font-family: var(--display); font-size: .74rem; font-style: italic; opacity: .92; }

.menu-toggle {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: inherit;
  display: grid;
  place-content: center;
  gap: 6px;
}
.site-header.is-scrolled .menu-toggle { border-color: rgba(44,44,44,.15); background: rgba(44,44,44,.04); }
.menu-toggle span { width: 20px; height: 1.5px; background: currentColor; display: block; }

.main-nav {
  position: fixed;
  inset: 0;
  z-index: -1;
  padding: 7rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: var(--cream);
  color: var(--charcoal);
  transform: translateY(-105%);
  transition: transform .3s ease;
}
.main-nav.is-open { transform: translateY(0); }
.main-nav a { text-decoration: none; font-weight: 600; font-size: 1.15rem; }

/* Buttons */
.button {
  min-height: 52px;
  padding: .86rem 1.25rem;
  border-radius: .8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  text-decoration: none;
  font-size: .86rem;
  font-weight: 700;
  background: var(--terracotta);
  color: white;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding: .65rem 1rem; font-size: .78rem; }
.button-ghost { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.62); backdrop-filter: blur(10px); }
.button-dark { background: var(--charcoal); }
.button-whatsapp img, .mobile-wa img { width: 23px; height: 23px; object-fit: contain; }
.button-whatsapp-light { background: var(--olive); }
.button-outline-light { background: transparent; border-color: rgba(255,255,255,.58); }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--charcoal);
  color: white;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video-desktop { display: none; }
.hero-video-mobile { object-position: center 28%; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(18,16,12,.92) 0%, rgba(18,16,12,.55) 46%, rgba(18,16,12,.17) 80%),
    linear-gradient(to right, rgba(18,16,12,.28), transparent 70%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 8rem;
  padding-bottom: 6.5rem;
}
.hero-kicker {
  margin-bottom: .8rem;
  font-size: .71rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: rgba(255,255,255,.78);
}
.hero h1 { margin-bottom: .8rem; max-width: 8ch; }
.hero h1 em { color: var(--yellow); }
.hero-lead { max-width: 32rem; margin-bottom: 1.4rem; font-size: 1rem; color: rgba(255,255,255,.85); }

.hero-services {
  margin: 1.5rem 0 1.65rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255,255,255,.28);
  border-left: 1px solid rgba(255,255,255,.20);
  background: rgba(17,16,14,.24);
  backdrop-filter: blur(7px);
}
.hero-services a {
  min-height: 105px;
  padding: .9rem .8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
  border-right: 1px solid rgba(255,255,255,.20);
  border-bottom: 1px solid rgba(255,255,255,.20);
}
.hero-services span { font-size: .64rem; color: var(--yellow); letter-spacing: .18em; }
.hero-services strong { margin-top: .25rem; font-size: .76rem; text-transform: uppercase; letter-spacing: .03em; }
.hero-services small { margin-top: .15rem; color: rgba(255,255,255,.7); font-size: .65rem; line-height: 1.35; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.scroll-cue { display: none; }

/* Intro */
.intro { background: var(--paper); }
.intro-grid { display: grid; gap: 1.7rem; }
.intro-heading h2 { margin-bottom: 0; }
.intro-copy { max-width: 43rem; color: var(--ink-soft); }
.intro-copy p { font-size: 1rem; }
.text-arrow { display: inline-flex; gap: .7rem; align-items: center; color: var(--olive); font-weight: 700; text-decoration: none; margin-top: .4rem; }

/* Services */
.services { background: var(--cream); }
.service-grid { display: grid; gap: 1rem; }
.service-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 10px 35px rgba(44,44,44,.07);
  border: 1px solid rgba(44,44,44,.07);
}
.service-photo { aspect-ratio: 4 / 3; background-position: center; background-size: cover; }
.service-photo-healthy { background-image: url('https://images.unsplash.com/photo-1547592180-85f173990554?auto=format&fit=crop&w=1000&q=84'); }
.service-photo-dining { background-image: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=1000&q=84'); }
.service-photo-workshop { background-image: url('https://images.unsplash.com/photo-1556910103-1c02745aae4d?auto=format&fit=crop&w=1000&q=84'); }
.service-photo-catering { background-image: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1000&q=84'); }
.service-body { position: relative; padding: 1.35rem 1.25rem 1.5rem; }
.service-tag {
  width: 46px;
  height: 46px;
  margin-top: -2.5rem;
  margin-bottom: .8rem;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background: var(--olive);
  color: white;
  border: 4px solid var(--paper);
  font-size: .7rem;
  font-weight: 700;
}
.service-tag.terra { background: var(--terracotta); }
.service-tag.yellow { background: var(--yellow); color: var(--charcoal); }
.service-tag.dark { background: var(--charcoal); }
.service-card h3 { margin-bottom: .55rem; }
.service-card p { min-height: 4.6em; color: var(--ink-soft); font-size: .88rem; }
.service-card a { display: inline-flex; gap: .6rem; text-decoration: none; font-weight: 700; color: var(--olive); font-size: .86rem; }

/* Worlds */
.worlds { background: #EDE7DA; }
.worlds-heading .section-script { color: var(--terracotta); }
.world-grid { display: grid; gap: .9rem; }
.world-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border-radius: 1.35rem;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}
.world-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,20,18,.78) 0%, rgba(20,20,18,.18) 70%);
}
.world-nl { background-image: url('https://images.unsplash.com/photo-1512621776951-a57141f2eefd?auto=format&fit=crop&w=1000&q=84'); }
.world-it { background-image: url('https://images.unsplash.com/photo-1473093295043-cdd812d0e601?auto=format&fit=crop&w=1000&q=84'); }
.world-es { background-image: url('https://images.unsplash.com/photo-1533777857889-4be7c70b33f7?auto=format&fit=crop&w=1000&q=84'); }
.world-asia { background-image: url('https://images.unsplash.com/photo-1515003197210-e0cd71810b5f?auto=format&fit=crop&w=1000&q=84'); }
.world-content { position: absolute; z-index: 2; left: 1.2rem; right: 1.2rem; bottom: 1.1rem; color: white; }
.world-content span { font-family: var(--display); font-size: 2rem; }
.world-content p { margin: .15rem 0 0; color: rgba(255,255,255,.8); font-size: .78rem; }

/* Feature */
.feature { background: var(--paper); }
.feature-grid { display: grid; gap: 2rem; }
.feature-visual {
  min-height: 430px;
  border-radius: var(--radius);
  background:
    linear-gradient(to top, rgba(44,44,44,.10), rgba(44,44,44,0)),
    url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=1300&q=86') center/cover no-repeat;
  box-shadow: var(--shadow);
}
.feature-copy { align-self: center; }
.feature-copy p:not(.section-script) { color: var(--ink-soft); max-width: 37rem; }
.feature-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.5rem; }

/* Instagram */
.social { background: var(--cream); }
.social-head { display: grid; gap: 1.3rem; margin-bottom: 1.8rem; }
.social-head h2 { margin-bottom: .6rem; }
.social-head p:not(.section-script) { max-width: 40rem; color: var(--ink-soft); }
.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  width: fit-content;
  text-decoration: none;
  font-weight: 700;
}
.instagram-link img { width: 34px; height: 34px; object-fit: contain; }
.instagram-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .55rem; }
.instagram-grid a { display: block; border-radius: 1rem; overflow: hidden; background: var(--sage); }
.instagram-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .35s ease; }
.instagram-grid a:hover img { transform: scale(1.035); }

/* Quote */
.quote-section { background: var(--terracotta); color: white; text-align: center; }
.quote-wrap { max-width: 780px; }
.quote-mark { display: block; font-family: var(--display); font-size: 5rem; line-height: .7; color: var(--yellow); }
blockquote { margin: 1rem 0; font-family: var(--display); font-size: clamp(2.2rem, 9vw, 4.4rem); line-height: 1.08; }
.quote-wrap p { margin-bottom: 0; font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.78); }

/* Contact */
.contact { background: var(--cream); }
.contact-card {
  padding: 2.2rem 1.3rem;
  border-radius: calc(var(--radius) + .35rem);
  display: grid;
  gap: 1.6rem;
  background: var(--olive);
  color: white;
  box-shadow: var(--shadow);
}
.contact-card h2 { margin-bottom: .8rem; }
.contact-card h2 em { color: #F0D47A; }
.contact-card p:not(.section-script) { max-width: 42rem; color: rgba(255,255,255,.78); }
.contact-actions { display: flex; flex-wrap: wrap; gap: .7rem; align-self: end; }

/* Footer */
.site-footer { padding: 3rem 0 3.5rem; background: var(--charcoal); color: rgba(255,255,255,.7); }
.footer-grid { display: grid; gap: 1.5rem; }
.footer-brand { display: flex; flex-direction: column; }
.footer-brand strong { font-family: var(--display); font-size: 1.6rem; color: white; }
.footer-brand span { font-family: var(--display); font-size: .8rem; font-style: italic; }
.footer-links, .footer-meta { display: flex; flex-wrap: wrap; gap: .75rem 1rem; }
.footer-links a, .footer-meta a { text-decoration: none; }

.mobile-cta {
  position: static;
  z-index: auto;
  width: min(calc(100% - 2rem), 34rem);
  margin: 1.25rem auto 1.5rem;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  padding: .35rem;
  border-radius: 999px;
  background: rgba(44,44,44,.97);
  box-shadow: 0 12px 34px rgba(0,0,0,.18);
}
.mobile-cta a { min-height: 48px; padding: .7rem 1rem; display: flex; align-items: center; justify-content: center; gap: .55rem; border-radius: 999px; color: white; text-decoration: none; font-weight: 700; font-size: .82rem; }
.mobile-cta a:last-child { background: var(--terracotta); }

@media (min-width: 700px) {
  .container { width: min(calc(100% - 4rem), var(--max)); }
  .section { padding: 7rem 0; }
  .site-header { padding: 1.15rem 2rem; }
  .intro-grid { grid-template-columns: .85fr 1.15fr; gap: 4rem; align-items: start; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .world-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1.05fr .95fr; align-items: center; gap: 4rem; }
  .social-head { grid-template-columns: 1fr auto; align-items: end; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-card { grid-template-columns: 1fr auto; padding: 3.8rem; gap: 3rem; }
  .footer-grid { grid-template-columns: 1.1fr 1fr auto; align-items: end; }
}

@media (min-width: 960px) {
  .site-header { padding-inline: 3rem; }
  .brand-main { font-size: 1.8rem; }
  .brand-sub { font-size: .8rem; }
  .menu-toggle { display: none; }
  .main-nav {
    position: static;
    inset: auto;
    z-index: auto;
    padding: 0;
    flex-direction: row;
    align-items: center;
    gap: 1.4rem;
    background: transparent;
    color: inherit;
    transform: none;
  }
  .main-nav a { font-size: .78rem; }
  .hero-video-mobile { display: none; }
  .hero-video-desktop { display: block; object-position: center center; }
  .hero-content { padding-bottom: 4.5rem; }
  .hero h1 { max-width: 9ch; }
  .hero-lead { font-size: 1.05rem; }
  .hero-services { grid-template-columns: repeat(4, 1fr); max-width: 780px; }
  .hero-services a { min-height: 110px; }
  .hero-services strong { font-size: .8rem; }
  .scroll-cue {
    display: block;
    position: absolute;
    z-index: 2;
    right: 2.2rem;
    bottom: 2rem;
    color: rgba(255,255,255,.68);
    text-decoration: none;
    font-size: .68rem;
    letter-spacing: .18em;
    text-transform: uppercase;
  }
  .service-grid { grid-template-columns: repeat(4, 1fr); }
  .service-card { display: flex; flex-direction: column; }
  .service-body { flex: 1; display: flex; flex-direction: column; }
  .service-card a { margin-top: auto; }
  .world-grid { grid-template-columns: repeat(4, 1fr); }
  .world-card { min-height: 330px; }
  .instagram-grid { grid-template-columns: repeat(6, 1fr); }
  .mobile-cta { display: none; }
  .site-footer { padding-bottom: 3rem; }
}

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

/* V3 refinements: more editorial hero and stronger branded service navigation */
.hero-title-block { max-width: 39rem; }
.hero-title-block h1 span { color: #fff; }
.hero-rule { display: flex; align-items: center; gap: .65rem; max-width: 25rem; margin-top: .2rem; color: var(--yellow); }
.hero-rule::before, .hero-rule::after { content: ""; height: 1px; background: linear-gradient(90deg, var(--yellow), rgba(225,179,74,.08)); flex: 1; }
.hero-rule::before { max-width: 1rem; }
.hero-rule span { font-family: Georgia, serif; font-size: .95rem; }
.hero-services { border: 0; background: transparent; backdrop-filter: none; gap: 0; }
.hero-services a { position: relative; align-items: center; text-align: center; border: 0; padding: .85rem .55rem; }
.hero-services a:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 17%; height: 66%; width: 1px; background: rgba(255,255,255,.32); }
.hero-service-icon { width: 2.65rem; height: 2.65rem; display: grid; place-items: center; margin-bottom: .35rem; border: 1px solid rgba(225,179,74,.85); border-radius: 50%; color: var(--yellow) !important; font-family: Georgia, serif; font-size: 1.35rem !important; line-height: 1; letter-spacing: 0 !important; background: rgba(20,18,13,.22); }
.hero-services strong { color: #fff; font-size: .72rem; letter-spacing: .015em; }
.hero-services small { color: rgba(255,255,255,.82); }
.button-whatsapp img, .mobile-wa img { flex: 0 0 auto; width: 25px; height: 25px; border-radius: 50%; object-fit: cover; background: #fff; }
.instagram-link img { flex: 0 0 auto; width: 36px; height: 36px; border-radius: .6rem; object-fit: cover; }

@media (max-width: 699px) {
  .hero-content.container { width: min(calc(100% - 3.25rem), var(--max)); }
  .hero-content { padding-bottom: 7rem; }
  .hero-kicker { display: none; }
  .hero h1 { font-size: clamp(3rem, 14vw, 4.3rem); }
  .hero-lead { margin-bottom: .65rem; }
  .hero-services { margin-top: 1.05rem; grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgba(225,179,74,.42); border-bottom: 1px solid rgba(225,179,74,.22); }
  .hero-services a { min-height: 116px; }
  .hero-services a:nth-child(2)::after { display: none; }
  .hero-services a:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.18); }
  .hero-actions .button { flex: 1 1 10rem; }
}

@media (min-width: 960px) {
  .hero-content { padding-left: clamp(1rem, 3vw, 3rem); }
  .hero-services { max-width: 820px; border-top: 1px solid rgba(225,179,74,.45); }
  .hero-services a { min-height: 126px; }
  .hero-service-icon { width: 3rem; height: 3rem; font-size: 1.55rem !important; }
}


/* Local social icons */
.social-icon,
.button-whatsapp img,
.mobile-wa img,
.instagram-link img {
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
}

.button-whatsapp img,
.mobile-wa img {
  width: 26px;
  height: 26px;
  border-radius: 0;
  background: transparent;
}

.instagram-link img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: transparent;
}

/* v3.1 - social icon loading/fallback */
.icon-local {
  display: inline-block;
  flex: 0 0 auto;
  object-fit: contain !important;
  max-width: none;
}
.icon-whatsapp { width: 26px; height: 26px; }
.icon-instagram { width: 38px; height: 38px; border-radius: 8px; }
.icon-fallback {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  line-height: 0;
}
.icon-fallback svg { display: block; width: 100%; height: 100%; }
.button-whatsapp .icon-fallback { width: 26px; height: 26px; }
.instagram-link .icon-fallback { width: 38px; height: 38px; }

/* V5 mobile navigation + compact bottom CTA fixes */
@media (max-width: 959px) {
  /* On mobile the header belongs to the hero and scrolls away with it. */
  .site-header,
  .site-header.is-scrolled {
    position: absolute;
    background: transparent;
    color: #fff;
    box-shadow: none;
    backdrop-filter: none;
    padding: 1.05rem 1rem;
  }

  .site-header.is-scrolled .menu-toggle {
    border-color: rgba(255,255,255,.35);
    background: rgba(255,255,255,.10);
  }

  /* Keep the menu completely out of the layout until it is explicitly opened. */
  .main-nav {
    display: none;
    position: absolute;
    inset: calc(100% + .35rem) 1rem auto 1rem;
    z-index: 120;
    padding: 1rem;
    gap: .25rem;
    background: rgba(247,241,231,.98);
    color: var(--charcoal);
    border: 1px solid rgba(44,44,44,.08);
    border-radius: 1.15rem;
    box-shadow: 0 18px 55px rgba(20,18,14,.18);
    transform: none;
  }

  .main-nav.is-open { display: flex; }
  .main-nav a {
    padding: .72rem .75rem;
    border-radius: .7rem;
    font-size: .95rem;
  }
  .main-nav a:not(.button):hover { background: rgba(104,122,78,.08); }
  .main-nav .button-small {
    margin-top: .35rem;
    min-height: 44px;
    padding: .7rem 1rem;
    font-size: .84rem;
  }

  body.menu-open { overflow: visible; }

  /* Compact end-of-page CTA: no floating bar and no oversized imagery. */
  .mobile-cta {
    width: min(calc(100% - 2rem), 22rem);
    margin: 1rem auto 1.25rem;
    grid-template-columns: 1fr 1fr;
    gap: .3rem;
    padding: .3rem;
    border-radius: 1rem;
    background: rgba(44,44,44,.96);
    box-shadow: 0 10px 28px rgba(0,0,0,.14);
  }

  .mobile-cta a {
    min-height: 42px;
    padding: .55rem .7rem;
    border-radius: .75rem;
    gap: .4rem;
    font-size: .76rem;
    line-height: 1;
  }

  .mobile-cta .icon-whatsapp,
  .mobile-cta .icon-fallback-whatsapp {
    width: 18px !important;
    height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
  }
}

@media (max-width: 430px) {
  .mobile-cta { width: min(calc(100% - 1.5rem), 20rem); }
  .mobile-cta a { font-size: .72rem; }
}
