/* ============================================================
   Royal Abidal Guesthouse — Design tokens
   Concept: warm, affordable luxury — a proper rest stop in
   Emalahleni dressed in cream, ink and antique gold.
   Day / Night rate structure remains the signature motif,
   now told through two shades of gold rather than colour-blocking.
   ============================================================ */

:root {
  /* Base neutrals — warm cream, not stark white */
  --cream-950: #241d16;   /* near-black espresso — nav, footer, ink */
  --cream-900: #332a1f;
  --cream-700: #6b5c48;
  --cream-400: #b6a488;
  --cream-200: #ece2cd;   /* card / section-alt background */
  --cream-100: #f7f1e3;   /* page background */
  --cream-50:  #fbf7ee;
  --white: #fffdf8;

  /* Signal colours — antique gold family, tied to real content */
  --gold: #b6842e;
  --gold-dark: #8c631c;
  --gold-light: #d9ac5c;
  --plum: #4a3229;        /* deep warm brown-plum — the "night" counterpart to gold */
  --plum-light: #6b4a3c;

  /* Type */
  --font-display: "Big Shoulders", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --radius: 10px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --container: 1180px;

  --shadow-sm: 0 8px 20px -10px rgba(36,29,22,0.18);
  --shadow-md: 0 20px 40px -18px rgba(36,29,22,0.28);
  --shadow-lg: 0 30px 60px -20px rgba(36,29,22,0.35);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--cream-100);
  background-image:
    radial-gradient(rgba(182,132,46,0.07) 1px, transparent 1px),
    radial-gradient(rgba(182,132,46,0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  background-position: 0 0, 13px 13px;
  color: var(--cream-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.03;
  color: var(--cream-950);
}

h2 { font-size: clamp(2.4rem, 5vw, 3.7rem); margin-bottom: 0.7rem; }
h3 { font-size: 1.4rem; letter-spacing: 0.04em; }

p { color: var(--cream-700); }

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

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}
.kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold);
}
.kicker.center { justify-content: center; }
.kicker.center::before { display: none; }

/* ---------- Section dividers — a soft gold rule between sections ---------- */
.section-divider {
  display: flex;
  justify-content: center;
  padding: 0;
}
.section-divider .divider {
  height: 1px;
  width: 140px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.section-divider .divider::before {
  content: "";
}

/* ---------- Topbar / Nav ---------- */
.topbar {
  background: var(--cream-950);
  color: var(--cream-200);
  font-size: 0.78rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 9px;
  padding-bottom: 9px;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar-links { display: flex; gap: 18px; }
.topbar-links a { transition: color .15s; }
.topbar-links a:hover { color: var(--gold-light); }

nav {
  background: var(--white);
  border-bottom: 1px solid var(--cream-200);
  position: sticky;
  top: 0;
  z-index: 50;
  transition: box-shadow .25s ease, background .25s ease;
}
nav.scrolled {
  box-shadow: 0 8px 24px -14px rgba(36,29,22,0.25);
  background: rgba(255,253,248,0.92);
  backdrop-filter: blur(8px);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo .mark {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex-shrink: 0;
}
.logo .word {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1.08rem;
  color: var(--cream-950);
}
.logo .word b { font-weight: 700; color: var(--gold-dark); }

.nav-links { display: flex; gap: 30px; font-size: 0.85rem; font-weight: 600; }
.nav-links a { color: var(--cream-700); transition: color .15s; }
.nav-links a:hover { color: var(--gold-dark); }

.nav-cta {
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  transition: background .15s, transform .15s;
  box-shadow: var(--shadow-sm);
}
.nav-cta:hover { background: var(--gold-dark); transform: translateY(-1px); }
.nav-cta.desktop { display: inline-block; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span { width: 22px; height: 2px; background: var(--cream-950); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--cream-200);
  padding: 8px 24px 16px;
}
.mobile-menu a {
  padding: 12px 0;
  font-weight: 600;
  border-bottom: 1px solid var(--cream-200);
}
.mobile-menu.open { display: flex; }

@media (max-width: 860px) {
  .nav-links, .nav-cta.desktop { display: none; }
  .burger { display: flex; }
}

/* ---------- Hero — full-bleed image, dark gold-toned overlay ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  overflow: hidden;
  padding: 140px 24px 90px;
  background:
    linear-gradient(180deg, rgba(36,29,22,0.55) 0%, rgba(36,29,22,0.78) 55%, rgba(36,29,22,0.92) 100%),
    url('https://res.cloudinary.com/dopqw0sji/image/upload/f_auto,q_auto,w_1920,h_1280,c_fill,g_auto/v1785706239/WhatsApp_Image_2026-08-02_at_19.43.12_3_bky6nn.jpg')
    center / cover no-repeat;
}
.hero-content {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  animation: heroIn 1s ease both;
}
.hero .kicker.center { color: var(--gold-light); }
.hero .tagline {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-light);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(3.2rem, 9vw, 6rem);
  margin-bottom: 1.1rem;
  text-shadow: 0 12px 40px rgba(0,0,0,0.35);
}
.hero h1 em {
  font-style: normal;
  font-weight: 400;
  opacity: 0.88;
}
.hero .lead {
  color: var(--cream-100);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 2.4rem;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; margin-bottom: 60px; flex-wrap: wrap; }

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

.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 16px 34px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-solid { background: var(--gold); color: var(--white); }
.btn-solid:hover { background: var(--gold-dark); }
.btn-line { border-color: rgba(255,255,255,0.6); color: var(--white); }
.btn-line:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.hero-badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold-light);
}

/* ---------- Welcome strip ---------- */
.welcome-strip { background: var(--cream-50); padding: 46px 0; border-bottom: 1px solid var(--cream-200); }
.welcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
.welcome-item { display: flex; align-items: flex-start; gap: 14px; }
.welcome-item .w-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--cream-950);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
}
.welcome-item h4 { font-size: 0.98rem; text-transform: none; letter-spacing: 0; margin-bottom: 4px; color: var(--cream-950); }
.welcome-item p { font-size: 0.87rem; margin: 0; }

@media (max-width: 860px) {
  .welcome-grid { grid-template-columns: 1fr; gap: 22px; }
}

/* ---------- About ---------- */
.about { padding: 130px 0 100px; }
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}
.frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.frame img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.frame:hover img { transform: scale(1.04); }

.stat-row { display: flex; gap: 44px; margin-top: 2.2rem; }
.stat .num { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: var(--gold-dark); }
.stat .label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--cream-700); font-weight: 600; }

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- Rates — the ledger IS the signature element ---------- */
.rates { background: var(--cream-950); padding: 130px 0; color: var(--cream-100); text-align: center; }
.rates .kicker { color: var(--gold-light); justify-content: center; }
.rates .kicker::before { display: none; }
.rates h2 { color: var(--white); }
.rates-intro { max-width: 500px; margin: 0 auto 3.8rem; color: var(--cream-400); }

.ledger {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  max-width: 740px;
  margin: 0 auto;
}
.ledger-card {
  background: var(--cream-900);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  text-align: left;
  box-shadow: var(--shadow-md);
  transition: transform .25s ease, box-shadow .25s ease;
}
.ledger-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ledger-card:first-child { border-top: 3px solid var(--gold); }
.ledger-card:last-child { border-top: 3px solid var(--plum-light); }
.ledger-card h3 {
  display: flex; align-items: center; gap: 10px;
  color: var(--white);
  margin-bottom: 22px;
  font-size: 1.08rem;
}
.ledger-card:first-child h3 svg { color: var(--gold-light); }
.ledger-card:last-child h3 svg { color: var(--plum-light); }
.ledger-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ledger-row:last-child { border-bottom: none; }
.ledger-row .label { color: var(--cream-400); font-size: 0.92rem; font-weight: 500; }
.ledger-row .price { font-family: var(--font-display); font-size: 1.65rem; color: var(--white); }

.rates-note { margin-top: 2.4rem; font-size: 0.8rem; color: var(--cream-400); }

@media (max-width: 640px) {
  .ledger { grid-template-columns: 1fr; }
}

/* ---------- Gallery ---------- */
#gallery { padding: 130px 0; background: var(--cream-100); }
.gallery-intro { max-width: 480px; margin: 0 auto 3rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 130px;
  grid-auto-flow: dense;
  gap: 10px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.gallery-grid .g-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  grid-column: span 2;
  grid-row: span 1;
}
/* Bento rhythm — a few tiles break scale to keep the wall from feeling flat */
.gallery-grid .g-item.g-big { grid-column: span 3; grid-row: span 2; }
.gallery-grid .g-item.g-tall { grid-column: span 2; grid-row: span 2; }
.gallery-grid .g-item.g-wide { grid-column: span 4; grid-row: span 1; }

.gallery-grid img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  opacity: 0;
  transition: transform .5s ease, opacity .5s ease;
}
.gallery-grid img.loaded { opacity: 1; }
.gallery-grid .g-item:hover img { transform: scale(1.08); }
.gallery-grid .g-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(36,29,22,0.6) 100%);
  opacity: 0;
  transition: opacity .3s ease;
}
.gallery-grid .g-item:hover::after { opacity: 1; }
.gallery-grid .g-caption {
  position: absolute; left: 14px; bottom: 12px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  display: flex; align-items: center; gap: 7px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
  z-index: 1;
}
.gallery-grid .g-item:hover .g-caption { opacity: 1; transform: translateY(0); }
.gallery-grid .g-caption svg { width: 14px; height: 14px; }

@media (max-width: 860px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 110px; }
  .gallery-grid .g-item { grid-column: span 2; grid-row: span 1; }
  .gallery-grid .g-item.g-big { grid-column: span 4; grid-row: span 2; }
  .gallery-grid .g-item.g-tall { grid-column: span 2; grid-row: span 2; }
  .gallery-grid .g-item.g-wide { grid-column: span 4; grid-row: span 1; }
}

.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(36,29,22,0.96);
  z-index: 100;
  flex-direction: column;
  align-items: center; justify-content: center;
  touch-action: none;
}
.lightbox.open { display: flex; }
.lightbox-stage {
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 90px 90px 30px;
}
.lightbox img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  user-select: none;
  -webkit-user-drag: none;
}
.lightbox-close {
  position: absolute; top: 20px; right: 22px;
  z-index: 3;
  background: rgba(255,255,255,0.1); border: none; color: var(--white);
  width: 42px; height: 42px; border-radius: 50%;
  font-size: 1.7rem; cursor: pointer; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.lightbox-close:hover { background: var(--gold); }
.lightbox-nav {
  position: absolute; top: 44%; transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,0.14); border: none; color: var(--white);
  width: 50px; height: 50px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, transform .2s ease;
}
.lightbox-nav:hover { background: var(--gold); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-counter {
  color: var(--cream-400); font-size: 0.82rem;
  margin-top: 2px;
}
.lightbox-thumbs {
  display: flex;
  gap: 8px;
  max-width: 92vw;
  overflow-x: auto;
  padding: 14px 6px 22px;
  scrollbar-width: thin;
}
.lightbox-thumbs img {
  width: 54px; height: 54px; object-fit: cover;
  border-radius: 7px;
  cursor: pointer;
  opacity: 0.45;
  border: 2px solid transparent;
  transition: opacity .2s ease, border-color .2s ease;
  flex-shrink: 0;
}
.lightbox-thumbs img.active { opacity: 1; border-color: var(--gold-light); }

@media (max-width: 640px) {
  .lightbox-stage { padding: 70px 20px 12px; }
  .lightbox-nav { width: 42px; height: 42px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

/* ---------- Amenities ---------- */
#amenities {
  position: relative;
  background: var(--cream-200);
  padding: 130px 0;
  overflow: hidden;
}
/* Logo watermark — sits behind the content, tinted to grayscale so the
   green brand mark doesn't fight the cream/gold palette. Bump/lower the
   opacity value below to taste. */
#amenities::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('royaladidal_logo.jpeg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 640px;
  opacity: 0.06;
  filter: grayscale(1);
  pointer-events: none;
  z-index: 0;
}
#amenities > .container {
  position: relative;
  z-index: 1;
}
@media (max-width: 860px) {
  #amenities::before { background-size: 380px; }
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: var(--container);
  margin: 0 auto;
}
.amenity-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1px solid rgba(36,29,22,0.06);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.amenity-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.amenity-card .icon {
  width: 46px; height: 46px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.amenity-card h4 { font-size: 1.02rem; text-transform: none; letter-spacing: 0; margin-bottom: 7px; color: var(--cream-950); }
.amenity-card p { font-size: 0.89rem; }
.note {
  display: block;
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 8px;
}

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

/* ---------- Locations ---------- */
.locations { padding: 130px 0; }
.locations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.loc-card { background: var(--white); border: 1px solid var(--cream-200); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow .2s ease; }
.loc-card:hover { box-shadow: var(--shadow-md); }
.loc-inner { padding: 26px; }
.addr { color: var(--cream-700); font-size: 0.9rem; margin-bottom: 18px; }
.map-wrap { border-radius: var(--radius); overflow: hidden; margin-bottom: 18px; }
.map-wrap iframe { width: 100%; height: 220px; border: 0; display: block; }
.directions { font-weight: 700; color: var(--gold-dark); font-size: 0.85rem; }

@media (max-width: 860px) { .locations-grid { grid-template-columns: 1fr; } }

/* ---------- Reviews ---------- */
#reviews { background: var(--cream-200); padding: 130px 0; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  position: relative;
  border: 1px solid rgba(36,29,22,0.06);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.quotemark { font-family: var(--font-display); font-size: 2.6rem; color: var(--cream-200); position: absolute; top: 14px; right: 22px; }
.stars { color: var(--gold); margin-bottom: 14px; letter-spacing: 2px; }
.quote { font-size: 0.93rem; margin-bottom: 20px; }
.who { display: flex; align-items: center; gap: 12px; }
.who .avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--cream-950); color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 700;
  flex-shrink: 0;
}
.who .name { font-weight: 700; font-size: 0.88rem; color: var(--cream-950); }
.placeholder-tag {
  display: inline-block; margin-top: 12px;
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--gold-dark); background: rgba(182,132,46,0.12);
  padding: 4px 9px; border-radius: 4px;
}

@media (max-width: 860px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ---------- Contact ---------- */
.contact { padding: 130px 0 100px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; }
.contact-intro { margin-bottom: 30px; }
.contact-methods { display: flex; flex-direction: column; gap: 14px; }
.contact-method {
  display: flex; align-items: center; gap: 14px;
  background: var(--white); border: 1px solid var(--cream-200);
  border-radius: var(--radius); padding: 17px 19px;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.contact-method:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.contact-method .icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--gold); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-method .label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--cream-700); font-weight: 700; }
.contact-method .value { font-weight: 600; color: var(--cream-950); }

form { background: var(--cream-200); border-radius: var(--radius-lg); padding: 34px; }
form h3 { margin-bottom: 22px; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 6px; color: var(--cream-700); }
.field label .optional-tag { text-transform: none; letter-spacing: 0; font-weight: 500; color: var(--cream-400); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 13px;
  border: 1px solid var(--cream-400); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.92rem;
  background: var(--white);
  transition: border-color .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
}
.field textarea { min-height: 90px; resize: vertical; }
form .btn { background: var(--gold); color: var(--white); width: 100%; text-align: center; margin-top: 4px; }
form .btn:hover { background: var(--gold-dark); }
form .btn:disabled { opacity: 0.65; cursor: not-allowed; transform: none; box-shadow: none; }
form small { display: block; margin-top: 12px; color: var(--cream-700); font-size: 0.75rem; }

.form-status { min-height: 1.3em; margin-top: 12px; font-size: 0.85rem; font-weight: 700; }
.form-status.success { color: #3a7a4a; }
.form-status.error { color: #b03a2e; }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .row-2 { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
footer {
  position: relative;
  background: var(--cream-950);
  color: var(--cream-400);
  padding: 56px 0 26px;
  overflow: hidden;
}
/* Logo watermark — fills the footer, inverted/lightened so it reads on
   the dark espresso background instead of disappearing into it. */
footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('royaladidal_logo.jpeg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.08;
  filter: grayscale(1) invert(1) brightness(1.4);
  pointer-events: none;
  z-index: 0;
}
footer > .container {
  position: relative;
  z-index: 1;
}
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; color: var(--white); font-size: 1.25rem; margin-bottom: 10px; }
.footer-desc { font-size: 0.88rem; line-height: 1.6; max-width: 320px; }
.footer-col h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold-light); margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 0.88rem; }
.footer-links a { transition: color .15s; }
.footer-links a:hover { color: var(--white); }
.footer-hours { display: flex; flex-direction: column; gap: 8px; font-size: 0.88rem; }
.footer-hours .row { display: flex; justify-content: space-between; gap: 16px; }
.footer-hours .note-inline { color: var(--gold-light); font-size: 0.78rem; font-weight: 600; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.footer-social a:hover { background: var(--gold); }
.bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 0.78rem; padding-top: 22px; }

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ---------- Floating WhatsApp ---------- */
.float-wa {
  position: fixed; bottom: 24px; right: 24px;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 40;
  transition: transform .2s ease;
}
.float-wa:hover { transform: scale(1.08); }

.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--cream-950);
  color: var(--gold-light);
  border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease;
}
.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); color: var(--white); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-content { animation: none; }
  html { scroll-behavior: auto; }
}