:root {
  --cream:   #fdf8f3;
  --blush:   #f5ebe3;
  --rose:    #b5737a;
  --rose-dk: #8d4f55;
  --gold:    #c9a87c;
  --gold-lt: #e8d5bb;
  --ink:     #1e1714;
  --muted:   #7a6b65;
  --white:   #ffffff;

  --ff-disp: 'Cormorant Garamond', Georgia, serif;
  --ff-body: 'Jost', sans-serif;

  --ease: cubic-bezier(.22,.68,0,1.2);
  --trans: .45s var(--ease);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--ink);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  transition: background .4s, box-shadow .4s;
}
header.scrolled {
  background: rgba(253,248,243,.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--gold-lt);
}
nav {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--ff-disp);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: .04em;
  color: var(--ink);
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex; gap: 36px; align-items: center;
}
.nav-links a {
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color .3s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 20px; }

.lang-switch {
  display: flex; gap: 6px;
}
.lang-switch button {
  background: none; border: 1px solid transparent;
  border-radius: 4px; padding: 3px 8px;
  font-family: var(--ff-body); font-size: .75rem; letter-spacing: .08em;
  color: var(--muted); cursor: pointer; transition: all .3s;
}
.lang-switch button.active,
.lang-switch button:hover {
  border-color: var(--gold); color: var(--ink);
}

.btn-nav {
  background: var(--ink); color: var(--white);
  border: none; border-radius: 2px;
  padding: 10px 22px;
  font-family: var(--ff-body); font-size: .75rem;
  letter-spacing: .12em; text-transform: uppercase;
  cursor: pointer; transition: background .3s, transform .2s;
}
.btn-nav:hover { background: var(--rose-dk); transform: translateY(-1px); }

.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ink); transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; inset: 0; top: 68px;
  background: var(--cream); z-index: 99;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 36px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--ff-disp); font-size: 2rem; font-weight: 400;
  color: var(--ink); letter-spacing: .04em;
}
.mobile-menu .lang-switch { margin-top: 8px; }

#hero {
  min-height: 100svh;
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}

.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 60px 80px 80px;
  position: relative; z-index: 2;
}
.hero-tag {
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.hero-tag::before {
  content: ''; display: block;
  width: 40px; height: 1px; background: var(--gold);
}
.hero-title {
  font-family: var(--ff-disp);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 300; line-height: 1.08;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic; color: var(--rose);
}
.hero-sub {
  font-size: 1rem; color: var(--muted); max-width: 380px;
  margin-bottom: 48px; line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--rose); color: var(--white);
  border: none; border-radius: 2px;
  padding: 16px 36px;
  font-family: var(--ff-body); font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase;
  cursor: pointer; transition: background .3s, transform .2s, box-shadow .3s;
}
.btn-primary:hover {
  background: var(--rose-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(181,115,122,.35);
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: none; border: 1px solid var(--gold-lt);
  border-radius: 2px; padding: 15px 28px;
  font-family: var(--ff-body); font-size: .8rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); cursor: pointer; transition: all .3s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--ink); }

.hero-stats {
  display: flex; gap: 40px; margin-top: 64px;
  padding-top: 40px; border-top: 1px solid var(--gold-lt);
}
.hero-stat-num {
  font-family: var(--ff-disp); font-size: 2.2rem; font-weight: 300;
  color: var(--ink); line-height: 1;
}
.hero-stat-lbl {
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin-top: 4px;
}

.hero-right {
  position: relative; overflow: hidden;
}
.hero-right::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--blush) 0%, var(--gold-lt) 100%);
  z-index: 0;
}
.hero-img-wrap {
  position: absolute; inset: 0; z-index: 1;
}
.hero-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .85; mix-blend-mode: multiply;
}

.hero-blob {
  position: absolute; z-index: 1;
  width: 70%; aspect-ratio: 1;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  background: radial-gradient(ellipse at 40% 40%, var(--rose) 0%, var(--gold) 60%, var(--gold-lt) 100%);
  opacity: .45;
  animation: morphBlob 8s ease-in-out infinite alternate;
}
.hero-logo-wrap {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-logo {
  width: 320px;
  height: auto;
  object-fit: contain;
  animation: floatLogo 4s ease-in-out infinite;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,.15));
}

@keyframes floatLogo {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}
@keyframes morphBlob {
  to { border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%; }
}

.hero-deco {
  position: absolute; z-index: 2;
  font-family: var(--ff-disp); font-style: italic;
  color: rgba(255,255,255,.25);
  pointer-events: none; user-select: none;
}
.hero-deco-1 { font-size: 9rem; bottom: 8%; right: -20px; font-weight: 300; }
.hero-deco-2 { font-size: 5rem; top: 15%; right: 5%; font-weight: 300; }

.marquee-section {
  overflow: hidden;
  background: var(--ink); color: var(--gold-lt);
  padding: 16px 0;
}
.marquee-track {
  display: flex; width: max-content;
  animation: marqueeScroll 22s linear infinite;
}
.marquee-item {
  padding: 0 40px;
  font-family: var(--ff-disp); font-style: italic;
  font-size: 1.1rem; letter-spacing: .04em;
  white-space: nowrap;
}
.marquee-dot { color: var(--rose); margin: 0 4px; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

section { padding: 100px 0; }
.section-tag {
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-tag::before {
  content: ''; display: block;
  width: 30px; height: 1px; background: var(--gold);
}
.section-title {
  font-family: var(--ff-disp);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300; line-height: 1.15;
  color: var(--ink); margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--rose); }
.section-sub {
  font-size: .95rem; color: var(--muted); max-width: 480px; line-height: 1.8;
}

#serveis { background: var(--blush); }
.services-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: end; margin-bottom: 64px;
}
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.service-card {
  background: var(--white);
  padding: 44px 36px;
  position: relative; overflow: hidden;
  transition: transform .4s var(--ease);
}
.service-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.service-card:hover { transform: translateY(-6px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  font-size: 2rem; margin-bottom: 20px;
}
.service-name {
  font-family: var(--ff-disp); font-size: 1.4rem; font-weight: 400;
  color: var(--ink); margin-bottom: 10px;
}
.service-desc {
  font-size: .85rem; color: var(--muted); line-height: 1.75;
}
.service-price {
  margin-top: 20px;
  font-family: var(--ff-disp); font-size: 1.1rem;
  color: var(--rose);
}

#galeria { background: var(--cream); }
.gallery-header { margin-bottom: 56px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 260px;
  gap: 6px;
}
.gallery-item {
  overflow: hidden; position: relative;
  cursor: pointer;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-img-inner {
  width: 100%; height: 100%;
  background: var(--gold-lt);
  overflow: hidden; position: relative;
  transition: transform .5s var(--ease);
}
.gallery-item:hover .gallery-img-inner { transform: scale(1.04); }
.gallery-img-inner img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity .4s;
}
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.gallery-placeholder-1 { background: linear-gradient(135deg,#e8c5c8,#f5e0d3); }
.gallery-placeholder-2 { background: linear-gradient(135deg,#d4b896,#e8d5bb); }
.gallery-placeholder-3 { background: linear-gradient(135deg,#c9a0a5,#dfc0c4); }
.gallery-placeholder-4 { background: linear-gradient(135deg,#b58a8e,#cca8ac); }
.gallery-placeholder-emoji { font-size: 3.5rem; opacity: .5; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(30,23,20,.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .4s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-txt {
  font-family: var(--ff-disp); font-style: italic;
  font-size: 1.1rem; color: var(--white); letter-spacing: .04em;
}

.gallery-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.gallery-full .gallery-item { aspect-ratio: 1; }
.gallery-intro {
  font-size: .95rem; color: var(--muted);
  max-width: 540px; margin-top: 16px; line-height: 1.8;
}
.gallery-back {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 8px; font-size: .8rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); transition: color .3s;
}
.gallery-back:hover { color: var(--rose); }
.page-offset { padding-top: 140px; }

@media (max-width: 960px) {
  .gallery-full { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .gallery-full { grid-template-columns: 1fr; }
  .gallery-full .gallery-item { aspect-ratio: 4/3; }
}

#sobre {
  background: var(--ink); color: var(--white);
  overflow: hidden; position: relative;
}
#sobre::before {
  content: 'Gretty';
  position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
  font-family: var(--ff-disp); font-size: 22vw; font-weight: 300;
  color: rgba(255,255,255,.03); pointer-events: none; line-height: 1;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  position: relative; z-index: 1;
}
.about-img-wrap {
  position: relative;
}
.about-img-frame {
  aspect-ratio: 3/4; overflow: hidden;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--rose-dk), var(--gold));
  display: flex; align-items: center; justify-content: center;
}
.about-img-frame img {
  width: 100%; height: 100%; object-fit: cover; opacity: .85;
}
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  width: 110px; height: 110px;
  background: var(--gold); border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.about-badge-num {
  font-family: var(--ff-disp); font-size: 2rem;
  font-weight: 300; color: var(--ink); line-height: 1;
}
.about-badge-txt {
  font-size: .6rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink); text-align: center; line-height: 1.3; margin-top: 2px;
}
.about-content { color: rgba(255,255,255,.85); }
.about-content .section-tag { color: var(--gold); }
.about-content .section-title { color: var(--white); }
.about-body { font-size: .95rem; line-height: 1.85; margin-bottom: 36px; }
.about-perks { display: flex; flex-direction: column; gap: 14px; }
.about-perk {
  display: flex; align-items: center; gap: 14px;
  font-size: .875rem;
}
.about-perk-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(201,168,124,.15); border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; flex-shrink: 0;
}

#ressenyes { background: var(--blush); }
.reviews-header { margin-bottom: 56px; }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.review-card {
  background: var(--white); padding: 36px 32px;
  border-radius: 2px;
}
.review-stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; }
.review-text {
  font-family: var(--ff-disp); font-style: italic;
  font-size: 1.1rem; line-height: 1.6; color: var(--ink);
  margin-bottom: 20px;
}
.review-author {
  font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted);
}

#contacte { background: var(--cream); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-detail {
  display: flex; gap: 16px; align-items: flex-start;
}
.contact-detail-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--blush); border: 1px solid var(--gold-lt);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0; margin-top: 2px;
}
.contact-detail-lbl {
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 4px;
}
.contact-detail-val {
  font-size: .95rem; color: var(--ink);
}
.contact-detail-val a:hover { color: var(--rose); }

.social-links { display: flex; gap: 14px; margin-top: 8px; }
.social-link {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--gold-lt);
  border-radius: 2px;
  font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); transition: all .3s;
}
.social-link:hover { border-color: var(--rose); color: var(--rose); }

.booking-form {
  background: var(--blush);
  padding: 48px 44px; border-radius: 2px;
}
.form-title {
  font-family: var(--ff-disp); font-size: 1.8rem;
  font-weight: 300; color: var(--ink); margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: .7rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 13px 16px;
  background: var(--white); border: 1px solid var(--gold-lt);
  border-radius: 2px; font-family: var(--ff-body);
  font-size: .9rem; color: var(--ink);
  transition: border-color .3s, box-shadow .3s;
  outline: none; appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,124,.12);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  width: 100%; padding: 16px;
  background: var(--rose); color: var(--white);
  border: none; border-radius: 2px;
  font-family: var(--ff-body); font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase;
  cursor: pointer; transition: background .3s, transform .2s;
}
.form-submit:hover { background: var(--rose-dk); transform: translateY(-2px); }
.form-note {
  font-size: .75rem; color: var(--muted); margin-top: 12px; text-align: center;
}
.form-success {
  display: none; text-align: center; padding: 32px;
  font-family: var(--ff-disp); font-size: 1.3rem; color: var(--rose);
}

.map-section {
  height: 380px; overflow: hidden;
  border-top: 1px solid var(--gold-lt);
}
.map-section iframe {
  width: 100%; height: 100%; border: none;
  filter: grayscale(30%) contrast(1.05);
}

footer {
  background: var(--ink); color: rgba(255,255,255,.6);
  padding: 60px 0 32px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 60px; margin-bottom: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand-name {
  font-family: var(--ff-disp); font-size: 2rem;
  color: var(--white); font-weight: 300; margin-bottom: 12px;
}
.footer-brand-name span { color: var(--gold); }
.footer-tagline { font-size: .875rem; line-height: 1.7; max-width: 280px; }
.footer-col-title {
  font-size: .7rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .875rem; transition: color .3s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .75rem;
}

.lightbox {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,.92);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw; max-height: 90vh;
  object-fit: contain; border-radius: 2px;
}
.lightbox-close {
  position: absolute; top: 20px; right: 28px;
  background: none; border: none; color: white;
  font-size: 2rem; cursor: pointer; transition: opacity .3s;
}
.lightbox-close:hover { opacity: .6; }

.toast {
  position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(80px);
  background: var(--ink); color: var(--white);
  padding: 14px 28px; border-radius: 40px;
  font-size: .85rem; letter-spacing: .04em;
  transition: transform .4s var(--ease), opacity .4s;
  opacity: 0; pointer-events: none; z-index: 300;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

@media (max-width: 960px) {
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 120px 32px 40px; }
  .hero-right {
    display: block; position: relative;
    min-height: 340px; overflow: visible;
  }
  .hero-right::before { display: none; }
  .hero-deco { display: none; }
  .hero-blob { width: 280px; max-width: 80vw; }
  .hero-logo { width: 200px; max-width: 55vw; }
  .services-header { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-wrap { display: block; max-width: 360px; margin: 0 auto; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:nth-child(1) { grid-column: 1; grid-row: 1; }
  .gallery-item:nth-child(4) { grid-column: 1; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .btn-nav { display: none; }
}
@media (max-width: 600px) {
  section { padding: 70px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .hero-right { min-height: 280px; }
  .hero-blob { width: 230px; }
  .hero-logo { width: 160px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) { grid-column: 1; grid-row: auto; }
  .gallery-img-inner { height: 240px; }
  .booking-form { padding: 32px 24px; }
}
