:root {
  --sand: #f4e7d3;
  --sand-deep: #e6d3b3;
  --sand-soft: #fdf6ea;
  --lagon: #4cb5ae;
  --lagon-deep: #1f7c77;
  --coral: #2596be;
  --coral-soft: #a8d4e5;
  --ink: #1d2a35;
  --ink-soft: #4a5764;
  --white: #ffffff;
  --shadow: 0 8px 30px rgba(31, 124, 119, 0.10);
  --shadow-lg: 0 18px 50px rgba(31, 124, 119, 0.18);
  --radius: 14px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

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

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 0.4em;
  color: var(--ink);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); line-height: 1.05; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; margin: 0 0 0.25em; }

p { margin: 0 0 1em; }
a { color: var(--lagon-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.76rem;
  color: var(--coral);
  font-weight: 600;
  margin: 0 0 0.7em;
  font-family: 'Inter', sans-serif;
}

.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(31, 124, 119, 0.08);
}
.brand {
  display: inline-flex; align-items: center; gap: 0.7rem;
  color: var(--ink); text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand-logo {
  height: 48px; width: auto;
  display: block;
}
.brand-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; font-weight: 700;
  line-height: 1;
  color: var(--ink);
}
.brand-text span { color: var(--lagon-deep); font-style: italic; }
@media (max-width: 540px) {
  .brand-logo { height: 40px; }
  .brand-text { font-size: 1.4rem; }
}
.nav nav { display: flex; gap: 1.6rem; }
.nav nav a { color: var(--ink-soft); font-size: 0.95rem; font-weight: 500; }
.nav nav a:hover { color: var(--coral); text-decoration: none; }
.burger { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.burger span { width: 26px; height: 2px; background: var(--ink); border-radius: 2px; }
@media (max-width: 760px) {
  .burger { display: flex; }
  .nav nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0; background: var(--white); padding: 1rem 1.5rem; border-bottom: 1px solid rgba(0,0,0,0.06); }
  .nav nav.open { display: flex; }
  .nav nav a { padding: 0.7rem 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
}

.hero {
  position: relative;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem;
  align-items: center;
  padding: 4rem 1.5rem 5rem;
  background: linear-gradient(135deg, var(--sand-soft) 0%, var(--sand) 40%, #e8f4f3 100%);
  overflow: hidden;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  box-sizing: border-box;
}
.hero-text { max-width: 600px; }
.hero h1 { margin-bottom: 0.5em; }
.lead { font-size: 1.15rem; color: var(--ink-soft); margin: 1rem 0 1.8rem; }
.cta-row { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.hero-gallery {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem;
}
.hero-gallery img {
  border-radius: var(--radius);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; padding: 3rem 1.2rem 3.5rem; gap: 2rem; }
  .hero-gallery { order: -1; max-width: 420px; margin: 0 auto; }
}

.btn {
  display: inline-block; padding: 0.85rem 1.6rem;
  border-radius: 999px; font-weight: 500; font-size: 0.98rem;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform 0.15s, background 0.15s, color 0.15s;
  font-family: inherit;
}
.btn-primary { background: var(--coral); color: var(--white); }
.btn-primary:hover { background: var(--ink); transform: translateY(-1px); text-decoration: none; }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--white); text-decoration: none; }
.btn-small { padding: 0.55rem 1.1rem; font-size: 0.88rem; background: var(--lagon-deep); color: var(--white); }
.btn-small:hover { background: var(--ink); text-decoration: none; }
.btn-disabled { background: #c9d1d9; color: #4a5764; cursor: not-allowed; }
.btn-disabled:hover { background: #c9d1d9; transform: none; }

.section { width: 100%; max-width: var(--max); margin: 0 auto; padding: 5rem 1.5rem; box-sizing: border-box; }
.section-alt {
  max-width: none;
  background: linear-gradient(180deg, var(--sand-soft) 0%, #fff 100%);
  padding-left: 0; padding-right: 0;
}
.section-alt > * { width: 100%; max-width: var(--max); margin-left: auto; margin-right: auto; padding-left: 1.5rem; padding-right: 1.5rem; box-sizing: border-box; }
@media (max-width: 540px) {
  .section { padding: 3.5rem 1.1rem; }
  .section-alt > * { padding-left: 1.1rem; padding-right: 1.1rem; }
}
.section-head { text-align: center; margin-bottom: 3rem; }
.section-head p { color: var(--ink-soft); max-width: 620px; margin: 0 auto; }
.note { text-align: center; color: var(--ink-soft); font-size: 0.92rem; margin-top: 2.5rem; font-style: italic; }

.section-about { padding-top: 4rem; }
.about-narrow { max-width: 760px; margin: 0 auto; }
.about-narrow > h2 { margin-bottom: 0.6em; }
.values { list-style: none; padding: 0; margin: 1.8rem 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.values li {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--white); padding: 1.1rem 1.2rem; border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 3px solid var(--coral);
}
.val-ic {
  flex-shrink: 0;
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(37,150,190,0.10);
  color: var(--coral);
  border-radius: 50%;
}
.val-ic svg { width: 22px; height: 22px; }
.values strong { color: var(--ink); display: block; margin-bottom: 0.15em; font-size: 1rem; }
.values li > div { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.45; }
@media (max-width: 640px) {
  .values { grid-template-columns: 1fr; }
}

.collections {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.collection-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.8rem; }
.collection-head h3 { margin: 0; }
.collection-count { color: var(--ink-soft); font-size: 0.85rem; }
.collection-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.collection-grid img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  border-radius: 10px; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  background: var(--sand);
}
.collection-grid img:hover { transform: scale(1.03); box-shadow: var(--shadow); }
.collection-grid img:first-child { grid-column: span 2; aspect-ratio: 16 / 11; }

.gifts {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}
.gift {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
.gift-img {
  width: 100%; height: 200px; object-fit: cover; display: block;
  background: var(--sand);
}
.gift h3, .gift p { padding: 0 1.2rem; }
.gift h3 { padding-top: 1.1rem; }
.gift p { color: var(--ink-soft); font-size: 0.94rem; flex: 1; }
.gift button { margin: 0 1.2rem 1.2rem; align-self: flex-start; }

.boutique-group {
  margin-top: 2.5rem; margin-bottom: 1.2rem;
  font-style: italic; color: var(--lagon-deep);
  font-size: 1.4rem;
  border-bottom: 1px solid var(--sand-deep); padding-bottom: 0.4em;
}
.shops {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
@media (max-width: 540px) {
  .shops { grid-template-columns: 1fr; }
}
.shop {
  background: var(--white); border-radius: var(--radius);
  padding: 1.2rem 1.2rem 1.1rem; box-shadow: var(--shadow);
  border-top: 4px solid var(--lagon);
  display: flex; flex-direction: column;
  min-height: 200px;
}
.shop h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.5em;
  color: var(--ink);
  line-height: 1.2;
}
.shop p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.45;
  flex: 1;
}
.shop-actions {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  align-items: center;
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.shop-phone, .shop-map {
  display: inline-block;
  font-size: 0.88rem; font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  transition: background 0.15s, color 0.15s;
}
.shop-phone { color: var(--lagon-deep); background: rgba(76,181,174,0.10); }
.shop-phone:hover { color: var(--white); background: var(--lagon-deep); text-decoration: none; }
.shop-map { color: var(--coral); background: rgba(37,150,190,0.10); }
.shop-map:hover { color: var(--white); background: var(--coral); text-decoration: none; }
.shop-cta .shop-phone, .shop-cta .shop-map {
  background: rgba(255,255,255,0.18); color: var(--white);
}
.shop-cta .shop-phone:hover, .shop-cta .shop-map:hover {
  background: var(--white); color: var(--coral);
}
.shop-cta { background: var(--coral); color: var(--white); border-top-color: var(--sand-deep); }
.shop-cta h4, .shop-cta p { color: var(--white); }
.shop-cta .btn-small { background: var(--white); color: var(--coral); margin-top: 0.7rem; }
.shop-cta .btn-small:hover { background: var(--sand); color: var(--ink); }

.contact-form {
  width: 100%;
  max-width: 640px; margin: 0 auto;
  background: var(--white); padding: 2rem; border-radius: var(--radius);
  box-shadow: var(--shadow); display: grid; gap: 1rem;
  box-sizing: border-box;
}
@media (max-width: 540px) { .contact-form { padding: 1.4rem; } }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 540px) { .contact-form .row { grid-template-columns: 1fr; } }
.contact-form label {
  display: flex; flex-direction: column;
  font-size: 0.86rem; font-weight: 500; color: var(--ink-soft); gap: 0.35rem;
}
.contact-form input, .contact-form textarea, .contact-form select {
  font-family: inherit; font-size: 1rem;
  padding: 0.7rem 0.85rem;
  border: 1.5px solid #e3dccc; border-radius: 10px;
  background: #fdfaf3; color: var(--ink); transition: border-color 0.15s;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: none; border-color: var(--coral);
}
.contact-form button { justify-self: start; }
.form-status { margin: 0; font-size: 0.92rem; min-height: 1.2em; }
.form-status.ok { color: var(--lagon-deep); }
.form-status.err { color: #b3261e; }

.socials { text-align: center; margin-top: 2rem; }
.social {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.7rem 1.3rem;
  background: var(--white); border-radius: 999px;
  box-shadow: var(--shadow);
  color: var(--ink); font-weight: 500;
}
.social:hover { background: #1877f2; color: var(--white); text-decoration: none; }
.social-ic {
  width: 28px; height: 28px; border-radius: 50%;
  background: #1877f2; color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-weight: 700; font-style: italic;
}

.footer {
  background: var(--ink); color: #c9d1d9;
  padding: 2.4rem 1.5rem; text-align: center; font-size: 0.9rem;
}
.footer p { margin: 0.2rem 0; }
.footer .version { color: #6c7884; font-size: 0.78rem; margin-top: 0.5rem; }

.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.92);
  display: none; align-items: center; justify-content: center;
  z-index: 100; padding: 2rem;
}
.lightbox.open { display: flex; }
.lb-img { max-width: 95vw; max-height: 92vh; border-radius: 8px; object-fit: contain; }
.lb-close, .lb-prev, .lb-next {
  position: absolute; background: rgba(255,255,255,0.12); color: var(--white);
  border: 0; width: 48px; height: 48px; border-radius: 50%;
  font-size: 1.6rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.25); }
.lb-close { top: 1.2rem; right: 1.2rem; }
.lb-prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1.2rem; top: 50%; transform: translateY(-50%); }

/* ---------- Ambiances ---------- */
.ambiances {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
}
.ambiance {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}
.ambiance img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 320ms ease;
}
.ambiance:hover img {
  transform: scale(1.04);
}
.ambiance-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 16px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
}
