:root {
  --crema: #FAF8F4;
  --crema-2: #F2EDE4;
  --salvia: #8A9E7A;
  --salvia-fosc: #5A7248;
  --terra: #B07848;
  --negre: #1E1A14;
  --negre-2: #2A251D;
  --text: #2E2A22;
  --text-suau: #6B6457;
  --linia: #E4DCCF;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
}

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

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

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--text);
  background: var(--crema);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

/* Telèfon i links sense color blau per defecte */
a {
  color: inherit;
}

.info-strip .ival a,
.info-strip a {
  color: inherit;
  text-decoration: none;
}

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

.wrap {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--terra);
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(30, 26, 20, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.4s ease;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--crema);
  letter-spacing: 0.04em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo span {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--salvia);
  text-transform: uppercase;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  max-width: 170px;
  display: block;
  object-fit: contain;
  object-position: left center;
  filter: invert(1);
}

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

.nav-links a {
  color: rgba(250, 248, 244, 0.78);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--salvia);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--crema);
}

.nav-links a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 1.7rem;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-verd {
  background: var(--salvia-fosc);
  color: var(--crema);
}

.btn-verd:hover {
  background: #4a5f3a;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--crema);
  border-color: rgba(250, 248, 244, 0.4);
}

.btn-outline:hover {
  border-color: var(--crema);
  background: rgba(250, 248, 244, 0.06);
}

.btn-terra {
  background: var(--terra);
  color: var(--crema);
}

.btn-terra:hover {
  background: #9c6638;
  transform: translateY(-2px);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--crema);
  transition: 0.3s;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--crema);
  overflow: hidden;
  background: var(--negre);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(20,17,13,0.92) 0%, rgba(20,17,13,0.62) 50%, rgba(20,17,13,0.45) 100%), url('../img/hero.jpeg');
  background-size: cover;
  background-position: center;
  animation: slowzoom 22s ease-in-out infinite alternate;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../img/SALVAJE_V_transparente.png');
  background-size: 75vw auto;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.04;
  pointer-events: none;
}

@keyframes slowzoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 90px;
  text-align: center;
}

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

.hero-logo {
  max-width: clamp(250px, 85vw, 650px);
  height: auto;
  display: block;
  margin: 0 auto -0.5rem;
  object-fit: contain;
  filter: invert(1);
  clip-path: inset(0 0 22% 0);
}

.hero-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: var(--terra);
  margin-bottom: 1.2rem;
}

.hero-desc {
  max-width: 480px;
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(250, 248, 244, 0.82);
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.scroll-hint {
  display: none;
}

.scroll-hint::after {
  content: '';
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, var(--salvia), transparent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }
}

/* ============ INFO STRIP ============ */
.info-strip {
  background: var(--salvia-fosc);
  color: var(--crema);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.info-item {
  padding: 2.6rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(250, 248, 244, 0.14);
}

.info-item:last-child {
  border-right: none;
}

.info-item .ilabel {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.7);
  margin-bottom: 0.6rem;
}

.info-item .ival {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.info-item .isub {
  font-size: 0.82rem;
  color: rgba(250, 248, 244, 0.75);
  font-weight: 300;
}

/* ============ SECTION GENERIC ============ */
section {
  scroll-margin-top: 76px;
}

.pad {
  padding: 4.5rem 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 3.5rem;
}

.section-head h2 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  margin: 0.8rem 0 1.2rem;
  color: var(--negre);
}

.section-head p {
  font-size: 1.08rem;
  color: var(--text-suau);
  font-weight: 300;
}

/* ============ ABOUT ============ */
.about {
  background: var(--crema);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  line-height: 1.35;
  color: var(--negre);
  margin: 1.6rem 0 2rem;
}

.about-quote .accent {
  color: var(--terra);
}

.about-text p {
  color: var(--text-suau);
  font-size: 1.02rem;
  margin-bottom: 1.2rem;
  font-weight: 300;
}

.about-sign {
  margin-top: 2.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about-sign .name {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--negre);
}

.about-sign .role {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--salvia-fosc);
}

.about-historia {
  margin-top: 2rem;
  display: inline-block;
}

.about-media {
  position: relative;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 0.5rem;
  align-items: stretch;
}

.about-media img,
.about-media video {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

.about-media .badge {
  position: absolute;
  bottom: -28px;
  left: -28px;
  background: var(--negre);
  color: var(--crema);
  padding: 1.6rem 2rem;
  border-radius: 2px;
}

.about-media .badge .big {
  font-family: var(--serif);
  font-size: 2.6rem;
  color: var(--salvia);
  line-height: 1;
}

.about-media .badge .small {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.7);
  margin-top: 4px;
}

/* ============ MENU ============ */
.menu {
  background: var(--crema-2);
}

.menu-filters {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  border: 1px solid var(--linia);
  background: transparent;
  color: var(--text-suau);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter:hover {
  border-color: var(--salvia);
  color: var(--negre);
}

.filter.active {
  background: var(--negre);
  border-color: var(--negre);
  color: var(--crema);
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 4.5rem;
}

.dish {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--linia);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.dish-info {
  flex: 1;
}

.dish-top {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
}

.dish-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--negre);
}

.dish-tag {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--crema);
  background: var(--salvia);
  padding: 0.18rem 0.5rem;
  border-radius: 2px;
  font-weight: 500;
  transform: translateY(-3px);
}

.dish-tag.cor {
  background: var(--terra);
}

.dish-desc {
  font-size: 0.92rem;
  color: var(--text-suau);
  font-weight: 300;
  margin-top: 0.35rem;
  line-height: 1.6;
  max-width: 90%;
}

.dish-price {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--salvia-fosc);
  white-space: nowrap;
}

.dish.hide {
  display: none;
}

.menu-note {
  margin-top: 2.5rem;
  font-size: 0.88rem;
  color: var(--text-suau);
  font-style: italic;
  font-family: var(--sans);
}

/* ============ RESERVES ============ */
.reserves {
  position: relative;
  padding: 0;
}

.reserves-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.reserves-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #3B2A1A 0%, #2A1D10 50%, #1E1408 100%);
}

.reserves-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 50%, rgba(176, 120, 72, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 80% 80%, rgba(138, 158, 122, 0.08) 0%, transparent 55%);
}

.reserves-hero-inner {
  position: relative;
  z-index: 1;
  padding: 5rem 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Columna esquerra */
.reserves-left .eyebrow {
  color: var(--salvia);
  margin-bottom: 1rem;
}

.reserves-left h2 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--crema);
  line-height: 1.05;
  margin-bottom: 1.2rem;
}

.reserves-desc {
  font-size: 1rem;
  color: rgba(250, 248, 244, 0.65);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 2.2rem;
  max-width: 420px;
}

.reserves-info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.reserves-info li {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}

.reserves-info .ri-ico {
  color: var(--salvia);
  font-size: 1.1rem;
  width: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.reserves-info .ri-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.45);
  margin-bottom: 0.2rem;
}

.reserves-info .ri-val {
  display: block;
  font-size: 0.97rem;
  color: rgba(250, 248, 244, 0.88);
  font-weight: 300;
}

.reserves-info .ri-val a {
  color: var(--crema);
  text-decoration: none;
  border-bottom: 1px solid rgba(138, 158, 122, 0.4);
}

/* Columna dreta — card clar */
.reserves-card {
  background: var(--crema);
  border-radius: 4px;
  padding: 2.8rem;
}

.reserves-card-title {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--negre);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.reserves-card-sub {
  font-size: 0.92rem;
  color: var(--text-suau);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.reserves-card-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.reserves-card-ctas .btn {
  width: 100%;
  justify-content: center;
}

.btn-outline-dark {
  background: transparent;
  color: var(--negre);
  border: 1px solid rgba(46, 42, 34, 0.35);
}

.btn-outline-dark:hover {
  background: var(--negre);
  color: var(--crema);
  border-color: var(--negre);
}

/* ============ GALERIA ============ */
.galeria {
  background: var(--crema);
}

.mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}

.mosaic figure {
  overflow: hidden;
  border-radius: 2px;
  position: relative;
  margin: 0;
}

.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.mosaic figure:hover img {
  transform: scale(1.07);
}

.mosaic figure::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 26, 20, 0.25), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mosaic figure:hover::after {
  opacity: 1;
}

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

.m-wide {
  grid-column: span 2;
}

/* ============ RESSENYES ============ */
.ressenyes {
  background: var(--crema);
}

.reviews-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.reviews-head h2 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  margin: 0.8rem 0 1.4rem;
  color: var(--negre);
}

.reviews-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.7rem 1.4rem;
  border: 1px solid var(--linia);
  border-radius: 100px;
  background: var(--crema);
}

.reviews-rating .score {
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--negre);
  line-height: 1;
}

.reviews-rating .stars {
  color: var(--terra);
  letter-spacing: 0.1em;
  font-size: 1rem;
}

.reviews-rating .src {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-suau);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.review-card {
  background: var(--crema);
  border: 1px solid var(--linia);
  border-radius: 3px;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
}

.review-card .stars {
  color: var(--terra);
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  margin-bottom: 1.1rem;
}

.review-card .quote {
  font-family: var(--serif);
  font-size: 1.28rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--negre);
  margin-bottom: 1.6rem;
  flex: 1;
}

.review-card .author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.review-card .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--salvia);
  color: var(--crema);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  flex-shrink: 0;
}

.review-card .au-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--negre);
}

.review-card .au-meta {
  font-size: 0.76rem;
  color: var(--text-suau);
}

/* ============ CONTACTE ============ */
.contacte {
  background: var(--crema-2);
}

.contacte-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.map-wrap {
  position: relative;
  display: block;
  border-radius: 3px;
  overflow: hidden;
  height: 100%;
  min-height: 420px;
  border: 1px solid var(--linia);
  background: #e8e4da;
  text-decoration: none;
}

.tilemap {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1280px;
  height: 1280px;
  display: grid;
  grid-template-columns: repeat(5, 256px);
  grid-template-rows: repeat(5, 256px);
  transform: translate(-678px, -591px);
}

.tilemap img {
  display: block;
  width: 256px;
  height: 256px;
}

.map-wrap .map-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 22px;
  transform: translate(-50%, -100%);
}

.map-wrap .map-pin::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--terra);
  border: 3px solid var(--crema);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 4px 10px rgba(30, 26, 20, 0.4);
}

.map-wrap .map-pin::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 110%;
  width: 14px;
  height: 5px;
  background: rgba(30, 26, 20, 0.25);
  border-radius: 50%;
  transform: translateX(-50%);
  filter: blur(1px);
}

.map-wrap .map-chip {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, calc(-100% - 26px));
  background: var(--negre);
  color: var(--crema);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.8rem;
  border-radius: 2px;
  white-space: nowrap;
  font-weight: 400;
}

.map-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--salvia-fosc);
  text-decoration: none;
  border-bottom: 1px solid var(--salvia);
  padding-bottom: 2px;
  transition: color 0.2s ease;
}

.map-link:hover {
  color: var(--terra);
  border-color: var(--terra);
}

.contact-data {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin: 2rem 0 2.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-item .ci-ico {
  font-family: var(--sans);
  color: var(--terra);
  font-size: 1.1rem;
  width: 28px;
  line-height: 1.4;
}

.contact-item .ci-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-suau);
}

.contact-item .ci-val {
  font-size: 1rem;
  color: var(--negre);
  font-weight: 300;
}

.contact-item a {
  color: var(--negre);
  text-decoration: none;
  border-bottom: 1px solid var(--salvia);
}

/* ============ FOOTER ============ */
footer {
  background: var(--negre);
  color: var(--crema);
  padding: 3rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(250, 248, 244, 0.1);
}

.footer-brand .logo {
  font-size: 2.4rem;
}

.footer-brand-logo-img {
  max-width: 200px;
  height: auto;
  display: block;
  filter: invert(1);
}

.footer-boar-deco {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 350px;
  height: auto;
  overflow: hidden;
  pointer-events: none;
}

.footer-boar-deco img {
  position: absolute;
  right: -20px;
  bottom: -20px;
  max-width: 350px;
  height: auto;
  opacity: 0.06;
}

.footer-brand p {
  color: rgba(250, 248, 244, 0.6);
  font-size: 0.92rem;
  font-weight: 300;
  max-width: 300px;
  margin-top: 1rem;
  line-height: 1.7;
}

.footer-cols {
  display: flex;
  gap: 4.5rem;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--salvia);
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.footer-col a,
.footer-col p {
  display: block;
  color: rgba(250, 248, 244, 0.72);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 300;
  margin-bottom: 0.7rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--crema);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(250, 248, 244, 0.45);
  font-weight: 300;
}

.footer-cookies {
  font-size: 0.75rem;
  color: rgba(250, 248, 244, 0.35);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.2s ease;
}

.footer-cookies:hover {
  color: var(--salvia);
}

.footer-credit {
  font-size: 0.75rem;
  color: rgba(250, 248, 244, 0.35);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.2s ease;
}

.footer-credit:hover {
  color: var(--salvia);
}

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: var(--negre-2);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1.2rem 32px;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-body {
  flex: 1;
  min-width: 220px;
}

.cookie-body p {
  font-size: 0.88rem;
  color: rgba(250, 248, 244, 0.78);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 0.3rem;
}

.cookie-policy {
  font-size: 0.75rem;
  color: var(--salvia);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(138, 158, 122, 0.35);
  padding-bottom: 1px;
  transition: color 0.2s;
}

.cookie-policy:hover {
  color: var(--crema);
  border-color: var(--crema);
}

.cookie-btns {
  display: flex;
  gap: 0.8rem;
  flex-shrink: 0;
}

.btn-cookie-reject {
  background: transparent;
  color: rgba(250, 248, 244, 0.55);
  border: 1px solid rgba(250, 248, 244, 0.2);
}

.btn-cookie-reject:hover {
  color: var(--crema);
  border-color: rgba(250, 248, 244, 0.5);
}

@media (max-width: 640px) {
  .cookie-inner {
    padding: 1rem 16px;
    gap: 0.8rem;
  }

  .cookie-btns {
    width: 100%;
    justify-content: flex-end;
  }

  .cookie-btns .btn {
    flex: 1;
    justify-content: center;
    padding: 0.75rem 1rem;
  }
}

.footer-bottom .socials {
  display: flex;
  gap: 1.4rem;
}

.footer-bottom .socials a {
  color: rgba(250, 248, 244, 0.6);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-bottom .socials a:hover {
  color: var(--salvia);
}

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* ============ RESPONSIVE ============ */
.mobile-menu {
  display: none;
}

@media (max-width: 900px) {

  /* --- NAV --- */
  .wrap {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .burger {
    display: flex;
  }

  .nav-cta .lang-switch {
    display: none;
  }

  .nav-cta .btn-verd {
    display: none;
  }

  /* --- MOBILE MENU --- */
  .mobile-menu {
    display: block;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--negre-2);
    z-index: 99;
    padding: 1.5rem 20px 3rem;
    transform: translateY(-110%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
    overflow-y: auto;
  }

  .mobile-menu.open {
    transform: translateY(0);
    visibility: visible;
  }

  .mobile-menu a {
    display: block;
    color: var(--crema);
    text-decoration: none;
    padding: 1rem 0;
    font-size: 1.1rem;
    letter-spacing: 0.04em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .mobile-menu .btn {
    display: block;
    width: 100%;
    margin-top: 1.4rem;
    text-align: center;
    border-bottom: none;
    padding: 1rem;
  }

  .mobile-lang {
    margin-top: 1.6rem;
  }

  /* Burger → X */
  .burger span {
    display: block;
  }

  .burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* --- HERO --- */
  .hero {
    min-height: 100svh;
  }

  .hero-logo {
    max-width: clamp(200px, 90vw, 450px);
    margin: 0 auto -0.4rem;
    clip-path: inset(0 0 22% 0);
  }

  .hero-tagline {
    margin-bottom: 0.8rem;
  }

  .hero-desc {
    margin: 0 auto 1.6rem;
    max-width: 90%;
  }

  .hero-bg::after {
    background-size: 100vw auto;
  }

  .hero-btns {
    flex-direction: column;
    gap: 0.8rem;
  }

  .footer-boar-deco {
    width: 200px;
  }

  .footer-boar-deco img {
    max-width: 200px;
    right: -10px;
    bottom: -10px;
  }

  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .scroll-hint {
    display: none;
  }

  .nav-logo-img {
    height: 34px;
  }

  .footer-boar-deco {
    width: 240px;
    height: 140px;
  }

  .footer-boar-deco img {
    height: 140px;
  }

  .footer-brand-logo-img {
    max-width: 160px;
  }

  /* --- INFO STRIP --- */
  .info-grid {
    grid-template-columns: 1fr 1fr;
  }

  .info-item:nth-child(2) {
    border-right: none;
  }

  .info-item:nth-child(1),
  .info-item:nth-child(2) {
    border-bottom: 1px solid rgba(250, 248, 244, 0.14);
  }

  .info-strip a {
    color: inherit;
    text-decoration: none;
  }

  /* --- SECTIONS GENÈRIQUES --- */
  .pad {
    padding: 2.5rem 0;
  }

  .section-head {
    margin-bottom: 2rem;
  }

  /* --- SOBRE --- */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-media {
    grid-template-columns: 1fr;
  }

  .about-media img,
  .about-media video {
    height: 260px;
  }

  .about-media .badge {
    left: 1rem;
    bottom: 1rem;
    padding: 1.2rem 1.5rem;
  }

  /* --- CARTA --- */
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .menu-filters {
    gap: 0.4rem;
    margin-bottom: 2rem;
  }

  .filter {
    padding: 0.55rem 1rem;
    font-size: 0.72rem;
  }

  /* --- RESERVES --- */
  .reserves-hero {
    min-height: auto;
  }

  .reserves-hero-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
  }

  .reserves-hero-inner::before {
    display: none;
  }

  .reserves-left {
    padding: 2.8rem 20px 2.4rem;
  }

  .reserves-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }

  .reserves-desc {
    font-size: 0.95rem;
    margin-bottom: 1.6rem;
    max-width: 100%;
  }

  .reserves-info {
    gap: 1.1rem;
  }

  .reserves-info .ri-val {
    font-size: 0.9rem;
  }

  /* Card centrada amb marge dins el fons fosc */
  .reserves-card {
    background: var(--crema);
    border: none;
    border-radius: 6px;
    padding: 2rem;
    width: calc(100% - 40px);
    margin: 0 20px 2.5rem;
  }

  .reserves-card-title {
    font-size: 1.6rem;
    color: var(--negre);
  }

  .reserves-card-sub {
    color: var(--text-suau);
  }

  .reserves-card-ctas {
    gap: 0.7rem;
  }

  .reserves-card-ctas .btn {
    padding: 0.9rem 1rem;
    font-size: 0.8rem;
  }

  .reserves-card-ctas .btn-outline-dark {
    color: var(--negre);
    border-color: rgba(46, 42, 34, 0.35);
  }

  /* --- GALERIA --- */
  .mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }

  .m-tall {
    grid-row: span 1;
  }

  .m-wide {
    grid-column: span 2;
  }

  /* --- RESSENYES --- */
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  /* --- CONTACTE --- */
  .contacte-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .map-embed-wrap {
    min-height: 260px;
  }

  .map-embed-wrap iframe {
    min-height: 260px;
  }

  /* --- FOOTER --- */
  .footer-top {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-cols {
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
}

@media (max-width: 480px) {
  .wrap {
    padding: 0 16px;
  }

  .info-grid {
    grid-template-columns: 1fr 1fr;
  }

  .info-item {
    padding: 1.8rem 1rem;
  }

  .mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .m-wide {
    grid-column: span 1;
  }

  .reserves-left {
    padding: 2.2rem 16px 2rem;
  }

  .reserves-card {
    padding: 1.8rem 16px;
  }
}

/* Language switch */
.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(250, 248, 244, 0.28);
  border-radius: 100px;
  overflow: hidden;
}

.lang-switch button {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.42rem 0.7rem;
  background: transparent;
  color: rgba(250, 248, 244, 0.6);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-switch button.active {
  background: var(--salvia);
  color: var(--negre);
}

.lang-switch button:not(.active):hover {
  color: var(--crema);
}

.mobile-lang {
  margin-top: 1.4rem;
}

.mobile-lang .lang-switch {
  border-color: rgba(250, 248, 244, 0.3);
}

/* WhatsApp flotant */
.whatsapp-btn {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.3);
}

/* Instagram widget */
.ig-handle {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--terra);
  letter-spacing: 0.04em;
  text-decoration: none;
  margin-top: 0.4rem;
  transition: opacity 0.2s;
}

.ig-handle:hover {
  opacity: 0.7;
}

.ig-widget-wrap {
  margin-top: 2.5rem;
}

/* Elfsight Google Reviews widget */
.elfsight-wrap {
  margin: 0 auto;
  max-width: 1100px;
}

.reviews-rating .stars-row {
  color: var(--terra);
  letter-spacing: 0.1em;
  font-size: 1rem;
}

/* Google CTA button */
.google-cta {
  text-align: center;
  margin-top: 3rem;
}

.btn-google {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1.8rem;
  background: #fff;
  color: #3c4043;
  border: 1px solid #dadce0;
  border-radius: 4px;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  transition: box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.btn-google:hover {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.14);
  background: #f8f9fa;
}

/* Star picker */
.star-picker {
  display: flex;
  gap: 0.3rem;
  margin-top: 0.4rem;
}

.star-picker button {
  background: none;
  border: none;
  font-size: 2rem;
  color: rgba(250, 248, 244, 0.2);
  cursor: pointer;
  padding: 0 0.1rem;
  transition: color 0.15s, transform 0.15s;
  line-height: 1;
}

.star-picker button:hover,
.star-picker button.active {
  color: var(--terra);
  transform: scale(1.15);
}

/* ============ MODAL RESERVA ============ */
.reserva-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(20, 17, 13, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
}

.reserva-modal.open {
  display: flex;
}

.reserva-modal-inner {
  background: var(--negre-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  width: 90%;
  max-width: 860px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.reserva-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--crema);
}

.reserva-modal-close {
  background: none;
  border: none;
  color: rgba(250, 248, 244, 0.5);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0.3rem 0.5rem;
  transition: color 0.2s;
}

.reserva-modal-close:hover {
  color: var(--crema);
}

.reserva-modal-body {
  flex: 1;
  overflow: hidden;
}

.reserva-modal-body iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: none;
}

.reserva-modal-footer {
  padding: 1rem 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: flex-end;
}

/* Botó i text alternatiu */
.btn-reserva-modal {
  width: 100%;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.reserva-alt {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-suau);
  text-align: center;
}

.reserva-alt a {
  color: var(--terra);
  text-decoration: none;
}

/* Confirmació */
.reserva-confirm {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(20, 17, 13, 0.9);
  align-items: center;
  justify-content: center;
}

.reserva-confirm.show {
  display: flex;
}

.rc-inner {
  text-align: center;
  color: var(--crema);
  animation: rcFadeIn 0.4s ease;
}

.rc-ico {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--salvia-fosc);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}

.rc-inner p {
  font-family: var(--serif);
  font-size: 1.8rem;
}

@keyframes rcFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ============ CONTACTE REDISSENY ============ */
.map-embed-wrap {
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
  min-height: 420px;
}

.map-embed-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

.contact-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 2rem;
}

.btn-outline-dark {
  background: transparent;
  color: var(--negre);
  border: 1px solid var(--negre);
  font-family: var(--sans);
}

.btn-outline-dark:hover {
  background: var(--negre);
  color: var(--crema);
}

@media (max-width: 900px) {
  .map-embed-wrap {
    min-height: 280px;
  }

  .map-embed-wrap iframe {
    min-height: 280px;
  }
}

/* ===================================================================
   SALVAJE — AÑADIDOS: Galería de fotos reales + Reel de vídeo
   Pega este bloque AL FINAL de tu css/styles.css
   =================================================================== */

/* ---------- GALERÍA DE FOTOS (mosaic grid) ---------- */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 10px;
  margin-top: 2.5rem;
}

.ig-grid .ig-item {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  background: var(--stone, #e8dfd0);
}

.ig-grid .ig-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(.2, .6, .2, 1);
}

.ig-grid .ig-item:hover img {
  transform: scale(1.06);
}

.ig-grid .ig-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 17, 13, 0.28), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
}

.ig-grid .ig-item:hover::after {
  opacity: 1;
}

/* Piezas destacadas (más grandes) */
.ig-grid .ig-item.tall {
  grid-row: span 2;
}

.ig-grid .ig-item.wide {
  grid-column: span 2;
}

@media (max-width: 860px) {
  .ig-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .ig-grid .ig-item.wide {
    grid-column: span 2;
  }
}

/* ---------- GALERIA — graella 3×2 ---------- */
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}

.gitem {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 2px;
}

.gitem picture,
.gitem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.gitem:hover img {
  transform: scale(1.05);
}

@media (max-width: 640px) {
  .galeria-grid {
    gap: 3px;
  }

  .pad {
    padding: 2rem 0;
  }

  .section-head {
    margin-bottom: 1.5rem;
  }

  .section-head h2 {
    font-size: 2rem;
  }

  .galeria-bridge {
    margin: 1.8rem 0 1.5rem;
  }
}

/* ---------- GALERIA — pont + feed en viu ---------- */
.galeria-bridge {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  margin: 2.5rem 0 2rem;
}

.bridge-line {
  flex: 1;
  height: 1px;
  background: var(--linia);
}

.bridge-ig {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-suau);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}

.bridge-ig:hover {
  color: var(--terra);
}

.ig-live-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  padding: 3rem;
  border: 1px dashed var(--linia);
  border-radius: 2px;
  text-align: center;
}

.ig-live-placeholder p {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--text-suau);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- REEL DE VÍDEO (emplatado) ---------- */
.reel-block {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3.5rem;
  padding-top: 3.5rem;
  border-top: 1px solid var(--stone, #e8dfd0);
}

.reel-phone {
  position: relative;
  width: 320px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(20, 17, 13, 0.28);
  background: #000;
  aspect-ratio: 9 / 16;
}

.reel-phone video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reel-text .eyebrow {
  color: var(--terra);
}

.reel-text h3 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--negre, #14110d);
  line-height: 1.2;
  margin: 0.4rem 0 1rem;
}

.reel-text p {
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 300;
  color: var(--text-mid, #6b5c48);
  max-width: 440px;
}

@media (max-width: 760px) {
  .reel-block {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    justify-items: center;
    text-align: center;
  }

  .reel-phone {
    width: 260px;
  }

  .reel-text p {
    margin: 0 auto;
  }
}