/* =========================================================
   Ki Baleares — Corporate Website
   Stylesheet für Hauptseite, Aviso Legal, Política de Privacidad
   Dunkelrot / Schwarz / Weiß · Minimal
   ========================================================= */

:root {
  --red: #8B1A1A;
  --red-dark: #5C1010;
  --red-hover: #6B1414;
  --black: #0A0A0A;
  --ink: #1A1A1A;
  --muted: #5E5E5E;
  --muted-2: #8A8A8A;
  --bg: #FFFFFF;
  --bg-alt: #F5F3F0;
  --bg-dark: #0A0A0A;
  --line: rgba(10,10,10,0.1);
  --line-dark: rgba(255,255,255,0.12);
  --maxw: 1280px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.serif { font-family: 'Fraunces', 'Playfair Display', Georgia, serif; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* =========================================================
   NAVIGATION
   ========================================================= */
header.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
  background: transparent;
}
header.nav.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 14px 40px;
  border-bottom: 1px solid var(--line);
}
.nav-logo { height: 50px; display: flex; align-items: center; }
.nav-logo img { height: 100%; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 40px; }
.nav-menu a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: color 0.2s;
}
.nav-menu a:hover { color: var(--red); }
.lang-switch {
  display: flex;
  gap: 4px;
  align-items: center;
  padding-left: 30px;
  border-left: 1px solid var(--line);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}
.lang-switch a { color: var(--muted-2); padding: 4px 8px; }
.lang-switch a.active { color: var(--red); }
.lang-switch a:hover { color: var(--red); }
.nav-cta {
  background: var(--red);
  color: #fff;
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--red-dark); color: #fff; }

.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   GENERIC: Section + headings
   ========================================================= */
section { scroll-margin-top: 80px; }
.inner { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: '';
  width: 36px; height: 1px;
  background: var(--red);
  display: inline-block;
}
h1, h2, h3, h4 { color: var(--black); letter-spacing: -0.5px; }
h1 { font-size: clamp(42px, 6.2vw, 84px); font-weight: 800; line-height: 1.02; letter-spacing: -2.5px; }
h2 { font-size: clamp(34px, 4.2vw, 56px); font-weight: 700; line-height: 1.1; letter-spacing: -1.5px; }
h3 { font-size: clamp(22px, 2.2vw, 30px); font-weight: 700; line-height: 1.2; }
h4 { font-size: 18px; font-weight: 600; }
.italic {
  font-family: 'Fraunces', 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-style: italic;
  color: var(--red);
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  padding: 17px 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); color: #fff; }
.btn-secondary {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--black);
}
.btn-secondary:hover { background: var(--black); color: #fff; }
.btn-ghost { background: transparent; color: var(--red); padding: 12px 0; }
.btn-ghost:hover { color: var(--red-dark); }
.btn svg { width: 16px; height: 16px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  padding: 140px 60px 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero-content { position: relative; z-index: 2; padding-right: 60px; max-width: 720px; }
.hero h1 { margin-bottom: 36px; color: var(--black); }
.hero-lead {
  font-size: 19px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 48px;
  max-width: 560px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-pills {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.hero-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.4px;
}
.hero-pill .dot { width: 5px; height: 5px; background: var(--red); }
.hero-visual {
  position: relative;
  z-index: 1;
  height: calc(100vh - 220px);
  max-height: 720px;
  min-height: 480px;
}
.hero-visual .img-main {
  position: absolute;
  inset: 0;
  background: url('../img/hero/hero-main.jpg') center/cover no-repeat;
  filter: saturate(0.92) contrast(1.04);
}
.hero-visual .img-accent {
  position: absolute;
  bottom: -40px;
  left: -60px;
  width: 45%;
  aspect-ratio: 3/4;
  background: url('../img/hero/hero-accent.jpg') center/cover no-repeat;
  border: 10px solid var(--bg);
  filter: saturate(0.92) contrast(1.04);
}
.hero-visual .img-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  background: #fff;
  padding: 14px 22px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--red);
  text-transform: uppercase;
  border-left: 3px solid var(--red);
}

/* =========================================================
   ABOUT (Sobre nosotros)
   ========================================================= */
.about {
  padding: 140px 0;
  background: var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 100px;
  align-items: start;
}
.about-grid .text-col .eyebrow { margin-bottom: 28px; }
.about-lead {
  font-size: 22px;
  line-height: 1.55;
  color: var(--black);
  font-weight: 400;
  margin-bottom: 40px;
  letter-spacing: -0.3px;
}
.about-body p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
  margin-top: 60px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-stats .stat { background: var(--bg); padding: 32px 24px; }
.about-stats .stat .num {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 400;
  color: var(--red);
  line-height: 1;
  margin-bottom: 10px;
}
.about-stats .stat .lbl {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

/* =========================================================
   UNITS (Geschäftsbereiche Teaser)
   ========================================================= */
.units { padding: 140px 60px; background: var(--bg-alt); }
.units-inner { max-width: var(--maxw); margin: 0 auto; }
.units-head { text-align: center; max-width: 780px; margin: 0 auto 80px; }
.units-head p { font-size: 18px; color: var(--muted); max-width: 620px; margin: 20px auto 0; }

.units-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--line);
}
.unit-card {
  background: var(--bg);
  padding: 56px 48px;
  position: relative;
  transition: background 0.3s;
}
.unit-card:hover { background: var(--black); }
.unit-card:hover .num,
.unit-card:hover h3,
.unit-card:hover .link { color: #fff; }
.unit-card:hover .link span:last-child { color: var(--red); }
.unit-card:hover .tag { background: rgba(255,255,255,0.08); color: #fff; }
.unit-card:hover p { color: rgba(255,255,255,0.85); }
.unit-card .num {
  font-family: 'Fraunces', serif;
  font-size: 64px;
  font-style: italic;
  color: var(--red);
  line-height: 1;
  margin-bottom: 28px;
  font-weight: 400;
  transition: color 0.3s;
}
.unit-card h3 { margin-bottom: 18px; transition: color 0.3s; }
.unit-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
  transition: color 0.3s;
}
.unit-card .tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.unit-card .tag {
  background: var(--bg-alt);
  color: var(--black);
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s;
}
.unit-card .link {
  color: var(--red);
  font-weight: 600;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: gap 0.2s, color 0.3s;
}
.unit-card:hover .link { gap: 16px; }

/* =========================================================
   FOOD (Premium Food Distribution)
   ========================================================= */
.food {
  background: var(--bg);
  padding: 140px 0;
}
.food-head {
  max-width: 780px;
  margin: 0 auto 80px;
  text-align: center;
  padding: 0 40px;
}
.food-head p { font-size: 18px; color: var(--muted); margin-top: 24px; }
.food-banner {
  width: 100%;
  aspect-ratio: 21/9;
  background: url('../img/food/flavors-banner.jpg') center/cover no-repeat;
  margin: 0 0 100px;
  position: relative;
  filter: saturate(0.95) contrast(1.02);
}
.food-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,10,10,0.4) 100%);
}
.food-banner .overlay {
  position: absolute;
  bottom: 40px;
  left: 40px;
  color: #fff;
  z-index: 2;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.food-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.food-text h2 { margin-bottom: 24px; }
.food-text > p { font-size: 17px; color: var(--muted); margin-bottom: 28px; line-height: 1.75; }
.food-features { list-style: none; margin-top: 36px; }
.food-features li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  font-size: 15px;
  color: var(--ink);
}
.food-features li:last-child { border-bottom: 1px solid var(--line); }
.food-features li::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--red);
  margin-top: 9px;
  flex-shrink: 0;
}
.food-features li strong { color: var(--black); font-weight: 600; margin-right: 8px; }

.food-img {
  aspect-ratio: 3/4;
  background: url('../img/food/lifestyle-pool.jpg') center/cover no-repeat;
  filter: saturate(0.92) contrast(1.04);
}

/* Flavor Gallery */
.flavors { padding: 120px 40px; background: var(--bg-alt); }
.flavors-inner { max-width: var(--maxw); margin: 0 auto; }
.flavors-head { text-align: center; margin-bottom: 60px; }
.flavors-head p { color: var(--muted); font-size: 17px; max-width: 560px; margin: 20px auto 0; }
.flavors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.flavor-card {
  background: var(--bg);
  transition: transform 0.3s;
}
.flavor-card:hover { transform: translateY(-6px); }
.flavor-img {
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
}
.flavor-card .info { padding: 24px 20px; }
.flavor-card .info h4 { color: var(--black); margin-bottom: 4px; font-size: 16px; }
.flavor-card .info .sub {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* =========================================================
   GASTRONOMY (For B2B Customers)
   ========================================================= */
.gastro {
  background: var(--black);
  color: #fff;
  padding: 140px 60px;
}
.gastro-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.gastro h2 { color: #fff; margin-bottom: 24px; }
.gastro .eyebrow { color: #D86B4A; }
.gastro .eyebrow::before { background: #D86B4A; }
.gastro > .gastro-inner > .text > p {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 40px;
}
.gastro-targets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.12);
  margin-bottom: 48px;
}
.gastro-target {
  background: var(--black);
  padding: 24px 20px;
  text-align: left;
}
.gastro-target strong {
  display: block;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 6px;
}
.gastro-target span {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.gastro .btn-primary { background: var(--red); }
.gastro .btn-primary:hover { background: var(--red-dark); }
.gastro .btn-secondary { color: #fff; border-color: #fff; }
.gastro .btn-secondary:hover { background: #fff; color: var(--black); }

.gastro-visual {
  aspect-ratio: 4/5;
  background: url('../img/food/beach-club.jpg') center/cover no-repeat;
  filter: saturate(0.85) contrast(1.05);
}

/* =========================================================
   PROPERTY SERVICES
   ========================================================= */
.property { padding: 140px 60px; background: var(--bg); }
.property-inner { max-width: var(--maxw); margin: 0 auto; }
.property-head { text-align: center; max-width: 780px; margin: 0 auto 80px; }
.property-head p { font-size: 18px; color: var(--muted); margin-top: 20px; }

.property-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
  margin-bottom: 80px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.property-service {
  background: var(--bg);
  padding: 48px 36px;
  transition: background 0.3s;
}
.property-service:hover { background: var(--bg-alt); }
.property-service .icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: #fff;
  margin-bottom: 28px;
}
.property-service .icon svg { width: 22px; height: 22px; stroke: #fff; }
.property-service h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--black);
}
.property-service p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.property-pitch {
  background: var(--bg-alt);
  padding: 60px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.property-pitch .headline {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--black);
  letter-spacing: -0.5px;
}
.property-pitch .headline .italic { color: var(--red); }
.property-pitch p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 24px;
}
.property-pitch .cta { display: inline-flex; align-items: center; gap: 10px; color: var(--red); font-weight: 600; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  background: var(--bg);
  padding: 140px 60px;
  border-top: 1px solid var(--line);
}
.contact-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact-left h2 { margin-bottom: 24px; }
.contact-left p { font-size: 17px; color: var(--muted); line-height: 1.75; margin-bottom: 48px; }
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-item {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.contact-item .lbl {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 8px;
}
.contact-item .val {
  font-size: 17px;
  color: var(--black);
  font-weight: 500;
}
.contact-item .val a { color: var(--black); border-bottom: 1px solid var(--line); transition: border-color 0.2s; }
.contact-item .val a:hover { border-color: var(--red); }

/* Form */
.contact-form {
  background: var(--bg-alt);
  padding: 48px;
}
.contact-form h3 { margin-bottom: 32px; }
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  border-color: var(--red);
}
.form-row textarea { min-height: 120px; resize: vertical; }
.contact-form .btn-primary { width: 100%; justify-content: center; }
.contact-form .privacy-note {
  margin-top: 20px;
  font-size: 12px;
  color: var(--muted);
}
.contact-form .privacy-note a { color: var(--red); border-bottom: 1px solid var(--red); }

/* =========================================================
   FOOTER
   ========================================================= */
footer.footer {
  background: var(--black);
  color: rgba(255,255,255,0.75);
  padding: 80px 60px 30px;
}
.footer-inner { max-width: var(--maxw); margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand img { height: 54px; margin-bottom: 24px; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.6; max-width: 320px; }
.footer-col h5 {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { color: rgba(255,255,255,0.6); font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--red); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  flex-wrap: wrap;
  gap: 20px;
  color: rgba(255,255,255,0.4);
  font-size: 12px;
}
.footer-bottom .legal-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--red); }

/* =========================================================
   LEGAL PAGES (Aviso Legal, Privacidad)
   ========================================================= */
.legal {
  padding: 160px 40px 100px;
  max-width: 820px;
  margin: 0 auto;
  min-height: 70vh;
}
.legal h1 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 12px; }
.legal .legal-meta {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.legal h2 {
  font-size: 22px;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--black);
}
.legal h3 { font-size: 16px; margin-top: 24px; margin-bottom: 10px; }
.legal p, .legal li { font-size: 15px; line-height: 1.75; color: var(--ink); margin-bottom: 14px; }
.legal ul, .legal ol { padding-left: 20px; margin-bottom: 16px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--red); border-bottom: 1px solid var(--red); }
.legal .data-box {
  background: var(--bg-alt);
  padding: 24px 28px;
  margin: 20px 0;
  border-left: 3px solid var(--red);
}
.legal .data-box strong { display: block; margin-bottom: 4px; color: var(--black); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .hero, .units, .gastro, .property, .contact { padding-left: 30px; padding-right: 30px; }
  .inner { padding: 0 30px; }
  .about-grid, .food-grid, .gastro-inner, .contact-inner, .property-pitch { gap: 60px; }
  .flavors-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  header.nav { padding: 14px 20px; }
  header.nav.scrolled { padding: 12px 20px; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 14px 20px; width: 100%; }
  .nav-menu .lang-switch { border-left: none; border-top: 1px solid var(--line); padding: 14px 20px; margin-top: 10px; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }

  .hero { grid-template-columns: 1fr; padding: 120px 20px 60px; }
  .hero-content { padding-right: 0; margin-bottom: 60px; }
  .hero-visual { height: 460px; }
  .hero-visual .img-accent { width: 38%; left: -20px; }

  .about, .food, .gastro, .property, .contact, .units { padding-top: 80px; padding-bottom: 80px; padding-left: 20px; padding-right: 20px; }
  .inner { padding: 0 20px; }
  .about-grid, .food-grid, .gastro-inner, .contact-inner, .property-pitch { grid-template-columns: 1fr; }
  .units-grid { grid-template-columns: 1fr; }
  .property-services { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .flavors-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .gastro-targets { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 32px 24px; }

  h1 { font-size: 42px !important; letter-spacing: -1.5px !important; }
  h2 { font-size: 34px !important; letter-spacing: -1px !important; }
}
