/* ===== RAÍCES CASTELLDEFELS — Sistema visual =====
   Tipografía: Outfit (display, geométrica, coherente con el logo) + Inter (cuerpo)
   Paleta: marrón cálido del logo + terracota de toldo/luces de terraza + crema cálido de fondo
*/

:root {
  --color-primary: #4a3626;
  --color-primary-dark: #2b2118;
  --color-accent: #c77b3d;
  --color-accent-light: #e8a66b;
  --color-bg: #faf6f0;
  --color-bg-alt: #f1e8dc;
  --color-text: #2b2118;
  --color-text-light: #6b5d4f;
  --color-green: #5b6b4f;
  --color-white: #ffffff;
  --shadow-soft: 0 10px 30px rgba(43, 33, 24, 0.12);
  --shadow-card: 0 4px 16px rgba(43, 33, 24, 0.08);
  --radius: 14px;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, .display {
  font-family: "Outfit", sans-serif;
  color: var(--color-primary-dark);
  font-weight: 600;
  line-height: 1.15;
}

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

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Scroll-reveal ===== */
.reveal-init {
  opacity: 0;
  transform: translateY(28px);
}

/* ===== Contadores animados ===== */
.counter {
  font-variant-numeric: tabular-nums;
}

.eyebrow {
  display: inline-block;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--color-accent);
  margin-bottom: 12px;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

.navbar.solid,
.navbar.page-header {
  background: var(--color-bg);
  padding: 12px 0;
  box-shadow: var(--shadow-card);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--color-white);
  transition: color 0.35s ease;
}

.nav-logo-img {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.navbar.solid .nav-logo,
.navbar.page-header .nav-logo {
  color: var(--color-primary-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.96rem;
  color: var(--color-white);
  transition: color 0.25s ease;
  position: relative;
}

.navbar.solid .nav-links a,
.navbar.page-header .nav-links a {
  color: var(--color-text);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-accent);
}

.nav-cta {
  background: var(--color-accent);
  color: var(--color-white) !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.25s ease, transform 0.2s ease;
}

.nav-cta:hover {
  background: var(--color-accent-light);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--color-white);
  cursor: pointer;
}

.navbar.solid .nav-toggle,
.navbar.page-header .nav-toggle {
  color: var(--color-text);
}

/* ===== Page header (non-home hero, short) ===== */
.page-hero {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  color: var(--color-white);
  padding-bottom: 56px;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43, 33, 24, 0.55) 0%, rgba(43, 33, 24, 0.78) 100%);
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: var(--color-white);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}

.page-hero p {
  color: var(--color-bg-alt);
  font-size: 1.1rem;
  margin-top: 10px;
  max-width: 520px;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--color-accent-light);
  margin-bottom: 14px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--color-white);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-dark {
  background: var(--color-primary-dark);
  color: var(--color-white);
}

.btn-dark:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
}

/* ===== Hero (home) ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: linear-gradient(180deg, rgba(20, 15, 10, 0.35) 0%, rgba(20, 15, 10, 0.72) 100%), url("exterior-noche.webp");
  background-size: cover;
  background-position: center 30%;
  color: var(--color-white);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding-top: 90px;
}

.hero .eyebrow {
  color: var(--color-accent-light);
}

.hero h1 {
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  color: var(--color-white);
  margin-bottom: 18px;
}

.hero h1 span {
  color: var(--color-accent-light);
}

.hero p {
  font-size: 1.15rem;
  color: var(--color-bg-alt);
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ===== Press strip ===== */
.press-strip {
  background: var(--color-primary-dark);
  color: var(--color-bg-alt);
  padding: 26px 0;
}

.press-strip .container {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}

.press-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 4px;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--color-bg-alt);
}

.press-item strong {
  color: var(--color-white);
}

.press-item i {
  color: var(--color-accent-light);
}

.press-item a.press-link {
  color: var(--color-white);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  transition: text-decoration-color 0.2s ease;
}

.press-item a.press-link:hover {
  text-decoration-color: var(--color-accent-light);
}

/* ===== Section basics ===== */
section {
  padding: 96px 0;
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-dark {
  background: var(--color-primary-dark);
  color: var(--color-bg-alt);
}

.section-dark h2 {
  color: var(--color-white);
}

.section-head {
  max-width: 620px;
  margin-bottom: 52px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
}

.section-head p {
  color: var(--color-text-light);
  font-size: 1.05rem;
  margin-top: 12px;
}

/* ===== Specialty cards ===== */
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.specialty-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 34px 26px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.specialty-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.specialty-card i {
  font-size: 1.7rem;
  color: var(--color-accent);
  margin-bottom: 18px;
}

.specialty-card h3 {
  font-size: 1.12rem;
  margin-bottom: 8px;
}

.specialty-card p {
  color: var(--color-text-light);
  font-size: 0.94rem;
}

/* ===== Featured dish split ===== */
.dish-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.dish-split img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.dish-quote {
  font-family: "Outfit", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-primary-dark);
  line-height: 1.4;
  margin: 22px 0 16px;
}

.dish-quote-source {
  color: var(--color-text-light);
  font-size: 0.92rem;
}

.dish-quote-source a,
.big-quote .source a,
.testimonial-meta a {
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.dish-quote-source a:hover,
.big-quote .source a:hover,
.testimonial-meta a:hover {
  color: var(--color-accent);
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.4s ease;
}

.gallery-grid a {
  overflow: hidden;
  border-radius: 10px;
  display: block;
}

.gallery-grid a:hover img {
  transform: scale(1.06);
}

.gallery-grid .tall {
  grid-row: span 2;
}

/* ===== Big quote ===== */
.big-quote {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.big-quote i.fa-quote-left {
  font-size: 1.6rem;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.big-quote p {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.4;
}

.big-quote .source {
  margin-top: 22px;
  color: var(--color-accent-light);
  font-size: 0.95rem;
  font-weight: 600;
}

.stars {
  color: var(--color-accent-light);
  margin-top: 10px;
  letter-spacing: 3px;
}

/* ===== Testimonial cards ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.testimonial-carousel {
  position: relative;
  padding: 0 8px;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 4px 12px;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-track .testimonial-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  border: none;
  color: var(--color-primary-dark);
  font-size: 1rem;
  cursor: pointer;
  z-index: 5;
  transition: background 0.2s ease, color 0.2s ease;
}

.carousel-btn:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

.carousel-btn.prev {
  left: -14px;
}

.carousel-btn.next {
  right: -14px;
}

@media (max-width: 720px) {
  .carousel-btn {
    display: none;
  }
  .testimonial-track .testimonial-card {
    flex-basis: 84vw;
  }
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-card);
}

.testimonial-card .stars {
  color: var(--color-accent);
  margin: 0 0 14px;
  font-size: 0.9rem;
}

.testimonial-card p {
  font-size: 0.98rem;
  color: var(--color-text);
  margin-bottom: 18px;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-primary-dark);
}

.testimonial-name a {
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.testimonial-name a:hover {
  color: var(--color-accent);
}

.testimonial-meta {
  font-size: 0.82rem;
  color: var(--color-text-light);
}

/* ===== Ambience split ===== */
.ambience {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}

.ambience-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.ambience-photos img {
  width: 100%;
  border-radius: var(--radius);
  height: 220px;
  object-fit: cover;
  box-shadow: var(--shadow-card);
}

.ambience-photos img:first-child {
  grid-row: span 2;
  height: 454px;
}

.check-list {
  list-style: none;
  margin-top: 24px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--color-text-light);
}

.check-list i {
  color: var(--color-accent);
  margin-top: 4px;
}

/* ===== CTA band ===== */
.cta-band {
  background: linear-gradient(120deg, var(--color-primary-dark), var(--color-primary));
  color: var(--color-white);
  text-align: center;
}

.cta-band h2 {
  color: var(--color-white);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 14px;
}

.cta-band p {
  color: var(--color-bg-alt);
  margin-bottom: 30px;
}

.cta-band .hero-actions {
  justify-content: center;
}

/* ===== Footer ===== */
footer {
  background: var(--color-primary-dark);
  color: var(--color-bg-alt);
  padding: 70px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 18px;
}

.footer-grid h4 {
  color: var(--color-white);
  font-size: 1rem;
  margin-bottom: 18px;
}

.footer-grid p, .footer-grid a {
  color: var(--color-bg-alt);
  font-size: 0.92rem;
  opacity: 0.85;
}

.footer-grid ul {
  list-style: none;
}

.footer-grid ul li {
  margin-bottom: 11px;
}

.footer-grid ul li a:hover {
  color: var(--color-accent-light);
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.footer-social a:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.84rem;
  opacity: 0.75;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a {
  color: var(--color-accent-light);
  opacity: 1;
}

/* ===== WhatsApp floating pill ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1200;
  background: #25d366;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.94rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
}

.whatsapp-float i {
  font-size: 1.3rem;
}

/* ===== Carta (menu) page ===== */
.menu-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 46px;
}

.menu-tab {
  padding: 11px 22px;
  border-radius: 100px;
  border: 1.5px solid var(--color-bg-alt);
  background: var(--color-white);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--color-text-light);
}

.menu-tab:hover {
  border-color: var(--color-accent);
  color: var(--color-primary-dark);
}

.menu-tab.active {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white);
}

.menu-panel {
  display: none;
}

.menu-panel.active {
  display: block;
  animation: fadein 0.4s ease;
}

@keyframes fadein {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.menu-note {
  color: var(--color-text-light);
  font-size: 0.92rem;
  margin-bottom: 30px;
  font-style: italic;
}

.menu-list {
  list-style: none;
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-bg-alt);
}

.menu-list li .item-name {
  font-weight: 600;
  color: var(--color-primary-dark);
  font-size: 1.02rem;
}

.menu-list li .item-desc {
  color: var(--color-text-light);
  font-size: 0.88rem;
  margin-top: 4px;
  font-weight: 400;
}

.menu-list li .item-price {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  color: var(--color-accent);
  white-space: nowrap;
  font-size: 1.05rem;
}

.menu-price-block {
  text-align: right;
  min-width: 60px;
}

.set-menu-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-card);
  margin-bottom: 30px;
}

.set-menu-card h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.set-menu-price {
  color: var(--color-accent);
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 22px;
}

.set-menu-card h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  margin: 20px 0 10px;
}

.set-menu-card ul {
  list-style: none;
  color: var(--color-text);
  font-size: 0.98rem;
}

.set-menu-card ul li {
  padding: 4px 0;
}

.allergy-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-top: 20px;
}

.allergy-box i {
  color: var(--color-accent);
  font-size: 1.6rem;
  margin-top: 4px;
}

/* ===== Reservas page ===== */
.reserva-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: flex-start;
}

.reserva-form {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--color-bg-alt);
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-size: 0.96rem;
  background: var(--color-bg);
  color: var(--color-text);
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.reserva-info-card {
  background: var(--color-primary-dark);
  color: var(--color-bg-alt);
  border-radius: var(--radius);
  padding: 36px;
  margin-bottom: 24px;
}

.reserva-info-card h3 {
  color: var(--color-white);
  margin-bottom: 16px;
  font-size: 1.15rem;
}

.reserva-info-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.reserva-info-row i {
  color: var(--color-accent-light);
  margin-top: 3px;
  width: 18px;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  height: 320px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== Contacto page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
}

.contact-card {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 36px;
}

.contact-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-bg-alt);
}

.contact-row:last-child {
  border-bottom: none;
}

.contact-row i {
  color: var(--color-accent);
  font-size: 1.2rem;
  margin-top: 3px;
  width: 22px;
}

.contact-row h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-row p, .contact-row a {
  color: var(--color-text-light);
  font-size: 0.94rem;
}

.hours-table {
  width: 100%;
  margin-top: 14px;
}

.hours-table tr td {
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--color-text-light);
  border-bottom: 1px dashed var(--color-bg-alt);
}

.hours-table tr td:first-child {
  font-weight: 600;
  color: var(--color-text);
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .specialties-grid { grid-template-columns: repeat(2, 1fr); }
  .dish-split { grid-template-columns: 1fr; }
  .dish-split img { height: 320px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .ambience { grid-template-columns: 1fr; }
  .ambience-photos img:first-child { height: 220px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .reserva-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 78%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-bg);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    gap: 28px;
    transition: right 0.35s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,0.15);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a { color: var(--color-text) !important; font-size: 1.1rem; }

  .nav-toggle { display: block; z-index: 1100; }

  .navbar .container { padding: 0 20px; }

  section { padding: 64px 0; }

  .specialties-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .press-strip .container { justify-content: flex-start; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 16px; border-radius: 50%; }
}
