/* ============================================================
   SANLINA HOMES — Main Stylesheet
   Brand colors: #1F1F1D · #F2E9DD · #C8A36A · #8B6A3D
   Fonts: Cormorant Garamond (headings) · Montserrat (body)
============================================================ */

/* ---- Custom properties ---- */
:root {
  --black:     #1F1F1D;
  --cream:     #F2E9DD;
  --gold:      #C8A36A;
  --dark-gold: #8B6A3D;
  --white:     #FFFFFF;
  --mid-cream: #E8DAC8;
  --text-muted:#6B6158;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Montserrat', system-ui, sans-serif;

  --max-w: 1200px;
  --section-pad: 100px;
  --section-pad-sm: 60px;
  --radius: 2px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---- Reset ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  background-color: var(--cream);
  color: var(--black);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

/* ---- Utility: Label (small caps) ---- */
.label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dark-gold);
}

.label--light {
  color: var(--gold);
}

/* ---- Utility: Gold separator line ---- */
.gold-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin-top: 12px;
}

/* ---- Section header (reusable) ---- */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--black);
  margin-top: 12px;
}

.section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--dark-gold);
}

.section-sub {
  max-width: 520px;
  margin: 20px auto 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn--gold:hover {
  background: var(--dark-gold);
  border-color: var(--dark-gold);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

.btn--outline:hover {
  background: var(--black);
  color: var(--cream);
}

.btn--full {
  width: 100%;
  text-align: center;
}

/* ---- Photo placeholder (development only) ---- */
.photo-placeholder {
  background-color: var(--mid-cream);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.photo-placeholder::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark-gold);
  background: rgba(242, 233, 221, 0.6);
  /* Remove this ::after block when real photos are in place */
}

/* If background-image is set, hide the placeholder label */
.photo-placeholder[style*="url("]::after {
  display: none;
}

/* ============================================================
   NAVIGATION
============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 40px;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.nav--scrolled {
  background: rgba(242, 233, 221, 0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(31,31,29,0.08);
  padding: 0 40px;
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}

.nav__logo-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--white);
  transition: color var(--transition);
}

.nav--scrolled .nav__logo-name {
  color: var(--black);
}

.nav__logo-tagline {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-align: center;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}

.nav--scrolled .nav__links a {
  color: var(--black);
}

.nav__links a:hover {
  color: var(--gold);
}

.nav__cta {
  padding: 9px 20px;
  border: 1px solid rgba(255,255,255,0.5) !important;
  color: var(--white) !important;
  transition: background var(--transition), border-color var(--transition) !important;
}

.nav--scrolled .nav__cta {
  border-color: var(--black) !important;
  color: var(--black) !important;
}

.nav__cta:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--white) !important;
}

/* Language switch FR / EN */
.nav__lang {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.nav__lang button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 4px 3px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.nav__lang button.active { color: var(--white); }
.nav__lang button:hover { color: var(--gold); }
.nav__lang-sep { color: rgba(255,255,255,0.4); font-size: 10px; }

.nav--scrolled .nav__lang button { color: rgba(31,31,29,0.5); }
.nav--scrolled .nav__lang button.active { color: var(--black); }
.nav--scrolled .nav__lang button:hover { color: var(--dark-gold); }
.nav--scrolled .nav__lang-sep { color: rgba(31,31,29,0.3); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: background var(--transition);
}

.nav--scrolled .nav__toggle span {
  background: var(--black);
}

/* ============================================================
   HERO
============================================================ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-color: var(--black);
  background-size: cover;
  background-position: center;
  background-image: linear-gradient(135deg, #1F1F1D 0%, #2D2015 40%, #5C3D1E 100%);
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.hero--loaded .hero__bg {
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(31,31,29,0.3) 0%,
    rgba(31,31,29,0.45) 50%,
    rgba(31,31,29,0.65) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 840px;
}

.hero__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(52px, 8vw, 88px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.hero__sub {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 48px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.5);
  width: 26px;
  animation: scrollBounce 2.5s ease-in-out infinite;
}

.hero__scroll-dot {
  animation: scrollDot 2.5s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

@keyframes scrollDot {
  0%, 100% { cy: 10; opacity: 1; }
  50% { cy: 22; opacity: 0.3; }
}

/* ============================================================
   ABOUT
============================================================ */

.about {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.about__inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  align-items: start;
}

.about__label-col {
  padding-top: 14px;
}

.about__title {
  font-family: var(--font-heading);
  font-size: clamp(38px, 4.5vw, 52px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 32px;
}

.about__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--dark-gold);
}

.about__body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 560px;
}

.about__signature {
  font-family: var(--font-heading);
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  color: var(--dark-gold);
  line-height: 1.6;
  padding-top: 16px;
  border-top: 1px solid var(--mid-cream);
  margin-top: 8px;
}

/* ============================================================
   FEATURES
============================================================ */

.features {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 60px;
  margin-bottom: 72px;
}

.feature {
  text-align: center;
}

.feature__icon {
  width: 64px;
  height: 80px;
  margin: 0 auto 20px;
  color: var(--gold);
}

.feature__icon svg {
  width: 100%;
  height: 100%;
}

.feature__title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 10px;
}

.feature__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Stats strip */
.features__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 40px 0;
  border-top: 1px solid var(--mid-cream);
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  padding: 16px 40px;
}

.stat__number {
  display: block;
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 300;
  color: var(--black);
  line-height: 1;
  margin-bottom: 6px;
}

.stat__label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.stat__divider {
  width: 1px;
  height: 40px;
  background: var(--mid-cream);
}

/* ============================================================
   GALLERY
============================================================ */

.gallery {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.gallery__header {
  text-align: center;
  margin-bottom: 48px;
  padding: 0 40px;
}

.gallery__title {
  font-family: var(--font-heading);
  font-size: clamp(38px, 4.5vw, 52px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--black);
  margin-top: 12px;
}

.gallery__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--dark-gold);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 320px 280px;
  gap: 4px;
}

.gallery__item {
  background-color: var(--mid-cream);
  min-height: 200px;
}

.gallery__item--large {
  grid-column: span 2;
}

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

/* ============================================================
   ROOFTOP SPOTLIGHT
============================================================ */

.rooftop {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.rooftop__bg {
  position: absolute;
  inset: 0;
  background-color: var(--black);
  background-image: linear-gradient(135deg, #1F1F1D 0%, #3D2B14 60%, #2A1A08 100%);
  background-size: cover;
  background-position: center;
}

.rooftop__overlay {
  position: absolute;
  inset: 0;
  background: rgba(31,31,29,0.6);
}

.rooftop__content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 100px;
}

.rooftop__text {
  max-width: 500px;
}

.rooftop__title {
  font-family: var(--font-heading);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-top: 16px;
  margin-bottom: 28px;
}

.rooftop__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

.rooftop__body {
  font-size: 16px;
  font-weight: 300;
  line-height: 2;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
}

.rooftop__tagline {
  font-family: var(--font-heading);
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

/* ============================================================
   EXPERIENCES
============================================================ */

.experiences {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.exp__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.exp__card {
  background: var(--white);
  overflow: hidden;
  transition: transform var(--transition);
}

.exp__card:hover {
  transform: translateY(-4px);
}

.exp__card-img {
  height: 280px;
  background-color: var(--mid-cream);
  background-size: cover;
  background-position: center;
}

.exp__card-body {
  padding: 36px 40px 40px;
}

.exp__card-body .label {
  margin-bottom: 12px;
}

.exp__card-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 16px;
}

.exp__card-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.exp__card-quote {
  font-family: var(--font-heading);
  font-size: 15px;
  font-style: italic;
  font-weight: 300;
  color: var(--dark-gold);
  padding-top: 20px;
  border-top: 1px solid var(--mid-cream);
}

/* ============================================================
   STAY DETAILS
============================================================ */

.stay {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.stay__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.stay__text .label {
  margin-bottom: 12px;
}

.stay__title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 40px;
}

.stay__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--dark-gold);
}

.stay__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.stay__list li {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--cream);
}

.stay__list-icon {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.stay__list strong {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 4px;
}

.stay__list p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

.stay__image-col {
  position: relative;
}

.stay__image {
  width: 100%;
  height: 560px;
  background-color: var(--mid-cream);
  background-size: cover;
  background-position: center;
}

.stay__arch-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 120px;
  border: 1px solid var(--gold);
  border-radius: 50px 50px 0 0;
  z-index: -1;
  opacity: 0.4;
}

/* ============================================================
   LOCATION
============================================================ */

.location {
  background: var(--cream);
}

.location__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}

.location__image-col {
  position: relative;
  overflow: hidden;
}

.location__image {
  position: absolute;
  inset: 0;
  background-color: var(--mid-cream);
  background-size: cover;
  background-position: center;
}

.location__text-col {
  padding: 80px 64px;
}

.location__text-col .label {
  margin-bottom: 12px;
}

.location__title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 28px;
}

.location__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--dark-gold);
}

.location__body {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 400px;
}

.location__list {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.location__list li {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.location__list span {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  color: var(--gold);
  min-width: 64px;
}

.location__map {
  margin-top: 32px;
}

.location__map iframe {
  width: 100%;
  height: 260px;
  border: none;
  border-radius: var(--radius);
  display: block;
}

.location__map-placeholder {
  width: 100%;
  height: 180px;
  background: var(--mid-cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-gold);
}

.location__map-placeholder .small {
  font-size: 9px;
  color: var(--text-muted);
  text-transform: none;
  letter-spacing: 0;
  text-align: center;
  max-width: 260px;
}

/* ============================================================
   BOOKING
============================================================ */

.booking {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.booking__channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--mid-cream);
  border: 1px solid var(--mid-cream);
}

.booking__channel {
  background: var(--white);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.booking__channel-icon {
  width: 40px;
  height: 40px;
}

.booking__channel-icon svg {
  width: 100%;
  height: 100%;
}

.booking__channel h3 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
}

.booking__channel p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.booking__channel .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* ============================================================
   CONTACT FORM
============================================================ */

.contact {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.contact__inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}

.contact__text .label {
  margin-bottom: 12px;
}

.contact__title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 50px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 24px;
}

.contact__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--dark-gold);
}

.contact__body {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-gold);
  transition: color var(--transition);
}

.contact__whatsapp:hover {
  color: var(--black);
}

.contact__whatsapp svg {
  width: 18px;
  height: 18px;
}

/* Form styles */
.contact__form {
  background: var(--white);
  padding: 48px;
}

.form__row {
  margin-bottom: 20px;
}

.form__row--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}

.form__row .form__group {
  margin-bottom: 0;
}

.form__group label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
}

.form__group input,
.form__group select,
.form__group textarea {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--black);
  background: var(--cream);
  border: 1px solid var(--mid-cream);
  padding: 12px 14px;
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  width: 100%;
}

.form__group input::placeholder,
.form__group textarea::placeholder {
  color: var(--text-muted);
  font-weight: 300;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--gold);
}

.form__group input.error,
.form__group select.error,
.form__group textarea.error {
  border-color: #c0392b;
}

.form__group textarea {
  resize: vertical;
}

.form__group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238B6A3D' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 36px;
  cursor: pointer;
}

.form__submit {
  margin-top: 8px;
}

.form__success {
  margin-top: 24px;
  padding: 20px 24px;
  background: #f0f7f0;
  border-left: 3px solid #4a9f4a;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #2d5a2d;
  font-size: 13px;
  line-height: 1.6;
}

.form__success svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #4a9f4a;
  margin-top: 1px;
}

.form__error {
  margin-top: 24px;
  padding: 16px 20px;
  background: #fdf0f0;
  border-left: 3px solid #c0392b;
  color: #6b1f1f;
  font-size: 13px;
  line-height: 1.6;
}

.form__privacy {
  margin-top: 16px;
  font-size: 10px;
  color: var(--text-muted);
  line-height: 1.6;
  letter-spacing: 0.04em;
}

/* ============================================================
   FOOTER
============================================================ */

.footer {
  background: var(--black);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 20px;
}

.footer__logo-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--white);
}

.footer__logo-tagline {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--gold);
}

.footer__baseline {
  font-family: var(--font-heading);
  font-size: 15px;
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 20px;
  line-height: 1.5;
}

.footer__address {
  font-size: 12px;
  line-height: 1.9;
}

.footer__address a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer__address a:hover {
  color: var(--gold);
}

.footer__nav h4,
.footer__book h4,
.footer__social h4 {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

.footer__nav ul li,
.footer__book ul li {
  margin-bottom: 10px;
}

.footer__nav a,
.footer__book a {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer__nav a:hover,
.footer__book a:hover {
  color: var(--gold);
}

.footer__social-links {
  display: flex;
  gap: 16px;
}

.footer__social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5);
  transition: border-color var(--transition), color var(--transition);
}

.footer__social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer__social-links svg {
  width: 16px;
  height: 16px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.25);
}

.footer__bottom a {
  color: rgba(255,255,255,0.55);
  border-bottom: 1px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

.footer__bottom a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.footer__domain {
  font-family: var(--font-heading);
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}

/* ============================================================
   RESPONSIVE — Tablet
============================================================ */

@media (max-width: 1024px) {
  :root {
    --section-pad: 80px;
  }

  .container {
    padding: 0 32px;
  }

  .about__inner {
    grid-template-columns: 180px 1fr;
    gap: 48px;
  }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 48px;
  }

  .stay__inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .stay__image {
    height: 400px;
  }

  .location__text-col {
    padding: 60px 40px;
  }

  .contact__inner {
    grid-template-columns: 300px 1fr;
    gap: 60px;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* ============================================================
   RESPONSIVE — Mobile
============================================================ */

@media (max-width: 768px) {
  :root {
    --section-pad: var(--section-pad-sm);
  }

  .container {
    padding: 0 24px;
  }

  /* Nav mobile */
  .nav {
    padding: 0 24px;
  }

  .nav--scrolled {
    padding: 0 24px;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(242, 233, 221, 0.98);
    backdrop-filter: blur(8px);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__links li {
    width: 100%;
    border-bottom: 1px solid var(--mid-cream);
  }

  .nav__links a {
    display: block;
    padding: 14px 0;
    color: var(--black) !important;
    font-size: 11px;
  }

  .nav__cta {
    border: none !important;
    padding: 14px 0 !important;
  }

  .nav__lang-item { padding: 14px 0; }
  .nav__lang button { color: rgba(31,31,29,0.55); font-size: 13px; padding: 4px 6px; }
  .nav__lang button.active { color: var(--black); }
  .nav__lang button:hover { color: var(--dark-gold); }
  .nav__lang-sep { color: rgba(31,31,29,0.3); }

  /* Hero mobile */
  .hero__title {
    font-size: 44px;
  }

  .hero__sub {
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  /* About mobile */
  .about__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about__label-col {
    padding-top: 0;
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .gold-line {
    margin-top: 0;
  }

  /* Features mobile */
  .features__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .features__stats {
    flex-wrap: wrap;
    gap: 0;
  }

  .stat {
    width: 50%;
    padding: 20px 16px;
  }

  .stat__divider {
    display: none;
  }

  /* Gallery mobile */
  .gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery__item {
    min-height: 240px;
  }

  .gallery__item--large,
  .gallery__item--wide {
    grid-column: span 1;
  }

  /* Rooftop mobile */
  .rooftop__content {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  /* Experiences mobile */
  .exp__grid {
    grid-template-columns: 1fr;
  }

  /* Location mobile */
  .location__split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .location__image-col {
    height: 300px;
    position: relative;
  }

  .location__image {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .location__text-col {
    padding: 48px 24px;
  }

  /* Contact mobile */
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact__form {
    padding: 32px 24px;
  }

  .form__row--two {
    grid-template-columns: 1fr;
  }

  /* Footer mobile */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* Booking mobile */
  .booking__channels {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 36px;
  }

  .contact__title {
    font-size: 36px;
  }
}

/* ============================================================
   ANIMATIONS — Scroll reveal
============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }
.reveal--delay-5 { transition-delay: 0.5s; }
.reveal--delay-6 { transition-delay: 0.6s; }


/* === Emblème Sanlina (logo réel) — override layout wordmark === */
.nav__logo { flex-direction: row; align-items: center; gap: 13px; }
.nav__logo-mark { height: 54px; width: auto; display: block; flex: 0 0 auto; }
.nav__logo-text { display: flex; flex-direction: column; line-height: 1; gap: 2px; }
.footer__logo { flex-direction: row; align-items: center; gap: 15px; }
.footer__logo-mark { height: 66px; width: auto; display: block; flex: 0 0 auto; }
.footer__logo-text { display: flex; flex-direction: column; gap: 2px; }
