:root {
  --navy: #00003c;
  --navy-dark: #000024;
  --sky: #2f8ee0;
  --sky-light: #eaf4ff;
  --charcoal: #2b2b2b;
  --white: #ffffff;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.55;
}
h1, h2, h3 {
  font-family: Georgia, 'Fraunces', serif;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 12px;
}
a { color: var(--sky); }
.stroke-divider {
  width: 64px;
  height: 6px;
  background: var(--sky);
  border-radius: 3px;
  margin: 12px 0 20px;
}
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* Header */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid #eee;
}
header .logo-wrap { display: flex; align-items: center; gap: 10px; }
header .logo-wrap img { height: 44px; width: auto; }
header .logo-wrap span { font-weight: 700; font-size: 1.1rem; color: var(--navy); }
header nav a {
  margin-left: 18px;
  text-decoration: none;
  color: var(--charcoal);
  font-size: 0.92rem;
}
#lang-toggle {
  margin-left: 18px;
  background: var(--navy);
  color: white;
  border: none;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.85rem;
}

/* Hero */
.hero {
  background: url('images/hero-kitchen.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 80px 24px;
  text-align: center;
}
.hero h1 { color: white; font-size: 2.4rem; max-width: 720px; margin: 0 auto 16px; }
.hero p { font-size: 1.15rem; max-width: 600px; margin: 0 auto 28px; opacity: 0.9; }
.hero .stroke-divider { margin: 0 auto 20px; }
.cta-btn {
  display: inline-block;
  background: var(--sky);
  color: white;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
}

/* Story / team */
.story { padding: 72px 24px; background: var(--sky-light); }
.story .container { display: flex; gap: 40px; flex-wrap: wrap; align-items: center; }
.story .text { flex: 1; min-width: 280px; }
.team-photos { display: flex; gap: 16px; flex: 1; min-width: 280px; flex-wrap: wrap; }
.team-photos img {
  width: 160px; height: 160px; object-fit: cover; border-radius: 12px;
  border: 3px solid var(--white); box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.team-caption { font-size: 0.85rem; color: #555; margin-top: 8px; text-align: center; }

/* Services */
.services { padding: 72px 24px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 24px;
}
.service-card {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 24px;
  transition: transform 0.15s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}
.service-card:hover { transform: translateY(-4px); border-color: var(--sky); }
.service-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.service-card .learn-more { color: var(--sky); font-weight: 600; font-size: 0.9rem; }

/* City cards */
.cities { padding: 72px 24px; background: var(--sky-light); }
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.city-card {
  background: white;
  border-radius: 10px;
  padding: 16px 18px;
  border-left: 5px solid var(--sky);
}
.city-card h3 { font-size: 1rem; margin-bottom: 0; }

/* Instagram / gallery */
.instagram { padding: 64px 24px; text-align: center; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin: 24px 0;
}
.gallery-grid .placeholder {
  aspect-ratio: 1;
  background: var(--sky-light);
  border: 2px dashed #b8d8f5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7ba8d0;
  font-size: 0.8rem;
  text-align: center;
  padding: 8px;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Quote form */
#quote-form-section { background: var(--navy-dark); padding: 64px 24px; }
#quote-form-section h2 { color: white; text-align: center; }
#quote-form-section .stroke-divider { margin: 0 auto 30px; }
.form-box { max-width: 520px; margin: 0 auto; background: white; padding: 32px; border-radius: 10px; }
.form-box label { display: block; font-weight: 600; margin-bottom: 4px; }
.form-box input, .form-box select, .form-box textarea {
  width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 6px; box-sizing: border-box; margin-bottom: 14px;
}
.form-box button {
  background: var(--navy); color: #fff; border: none; padding: 12px 24px;
  border-radius: 6px; font-size: 1rem; font-weight: 600; cursor: pointer; width: 100%;
}

/* Service detail pages */
.service-hero { background: var(--sky-light); padding: 56px 24px; text-align: center; }
.breadcrumb { font-size: 0.85rem; padding: 12px 24px; color: #666; }
.breadcrumb a { color: var(--sky); text-decoration: none; }
.detail-section { padding: 56px 24px; }
.detail-section ul { padding-left: 20px; }
.detail-section li { margin-bottom: 8px; }

footer { background: var(--charcoal); color: #ccc; text-align: center; padding: 32px 24px; font-size: 0.85rem; }
footer a { color: #9cc7f0; }

.social-icons { display: flex; justify-content: center; gap: 18px; margin: 16px 0; }
.social-icons a { color: var(--navy); transition: color 0.15s ease; }
.social-icons a:hover { color: var(--sky); }
.social-icons svg { width: 28px; height: 28px; display: block; fill: currentColor; }
footer .social-icons a { color: #ccc; }
footer .social-icons a:hover { color: #9cc7f0; }

[data-es] { display: none; }
body.es [data-en] { display: none; }
body.es [data-es] { display: inline; }

@media (max-width: 640px) {
  .hero h1 { font-size: 1.8rem; }
  header nav { display: none; }
}
