/* =============================================
   AJALA HOMES — style.css
   Brand: Warm & Friendly | Blue + Gold
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── TOKENS ───────────────────────────────── */
:root {
  --navy:       #1A2E4A;
  --navy-deep:  #0F1E30;
  --gold:       #C9952A;
  --gold-light: #E8B84B;
  --cream:      #FAF7F2;
  --white:      #FFFFFF;
  --text:       #2C2C2C;
  --text-muted: #6B6B6B;
  --border:     #E2DDD6;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-card: 0 4px 24px rgba(26,46,74,0.10);
  --shadow-hover: 0 8px 40px rgba(26,46,74,0.18);
}

/* ── RESET ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY ───────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
p  { font-size: 1rem; line-height: 1.75; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

/* ── LAYOUT ───────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.section--cream { background: var(--cream); }
.section--navy  { background: var(--navy-deep); color: var(--white); }

/* ── NAVIGATION ───────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease-out);
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(26,46,74,0.10); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo-mark {
  width: 36px; height: 36px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.nav__logo-mark svg { width: 20px; height: 20px; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--gold); }
.nav__cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  transition: background 0.2s var(--ease-out), transform 0.2s var(--ease-out) !important;
}
.nav__cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

/* ── BUTTONS ──────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s var(--ease-out);
  text-decoration: none;
}
.btn--primary {
  background: var(--gold);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,149,42,0.35);
}
.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ── HERO ─────────────────────────────────── */
.hero {
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, #1e3a5f 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 40%, rgba(201,149,42,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(201,149,42,0.07) 0%, transparent 60%);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__content { color: var(--white); }
.hero__content .eyebrow { color: var(--gold-light); }
.hero__title { color: var(--white); margin-bottom: 1.25rem; }
.hero__title span { color: var(--gold-light); }
.hero__lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.hero__image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__badge {
  position: absolute;
  bottom: -16px; left: -16px;
  background: var(--gold);
  color: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}
.hero__badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.hero__badge-label {
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.9;
}

/* ── TRUST BAR ────────────────────────────── */
.trust-bar {
  background: var(--navy);
  padding: 28px 0;
}
.trust-bar__inner {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ── SECTION HEADERS ──────────────────────── */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { color: var(--navy); margin-bottom: 1rem; }
.section-header p { color: var(--text-muted); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }
.section-header--light h2 { color: var(--white); }
.section-header--light p { color: rgba(255,255,255,0.7); }

/* ── ROOM CARDS ───────────────────────────── */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.room-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.room-card__img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.room-card__body { padding: 24px; }
.room-card__type {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.room-card__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.room-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.6;
}
.room-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 18px;
}
.room-card__amount {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--navy);
}
.room-card__unit {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.room-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--navy);
  background: var(--cream);
  padding: 5px 10px;
  border-radius: 100px;
}
.feature-tag svg { color: var(--gold); }

/* ── WHY CHOOSE US ────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.why-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: border-color 0.3s, box-shadow 0.3s var(--ease-out);
}
.why-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-card);
}
.why-card__icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--navy) 0%, #2a4a7a 100%);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.why-card__icon svg { color: var(--gold); }
.why-card h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.1rem; }
.why-card p  { font-size: 0.9rem; color: var(--text-muted); }

/* ── TESTIMONIALS ─────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: border-color 0.3s var(--ease-out);
}
.testimonial-card:hover { border-color: var(--gold); }
.testimonial-card__stars {
  display: flex; gap: 4px;
  margin-bottom: 16px;
}
.testimonial-card__stars svg { color: var(--gold); }
.testimonial-card__quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-card__author {
  display: flex; align-items: center; gap: 12px;
}
.testimonial-card__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-card__name {
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
}
.testimonial-card__role {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* ── ABOUT STRIP ──────────────────────────── */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-hover);
  position: relative;
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-gold-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
}
.about-content .eyebrow { margin-bottom: 12px; }
.about-content h2 { color: var(--navy); margin-bottom: 1.25rem; }
.about-content p  { color: var(--text-muted); margin-bottom: 1rem; }
.about-list { margin: 1.5rem 0; display: flex; flex-direction: column; gap: 12px; }
.about-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.95rem; color: var(--text);
}
.about-list li svg { color: var(--gold); flex-shrink: 0; }

/* ── ENQUIRY FORM ─────────────────────────── */
.enquiry-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.enquiry-info h2 { color: var(--white); margin-bottom: 1rem; }
.enquiry-info p  { color: rgba(255,255,255,0.7); margin-bottom: 2rem; }
.contact-detail {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px;
}
.contact-detail__icon {
  width: 44px; height: 44px;
  background: rgba(201,149,42,0.15);
  border: 1px solid rgba(201,149,42,0.3);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail__icon svg { color: var(--gold); }
.contact-detail__label { font-size: 0.78rem; color: rgba(255,255,255,0.5); display: block; }
.contact-detail__value { font-size: 0.95rem; color: var(--white); font-weight: 500; }

.enquiry-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s var(--ease-out);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,149,42,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}
.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* ── FOOTER ───────────────────────────────── */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand { }
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.footer__logo-mark {
  width: 32px; height: 32px;
  background: var(--gold);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.footer__logo-mark svg { width: 18px; height: 18px; color: var(--white); }
.footer__tagline { font-size: 0.9rem; line-height: 1.6; max-width: 260px; }
.footer__heading {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--gold); }
.footer__contact-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.footer__contact-item svg { color: var(--gold); flex-shrink: 0; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p { font-size: 0.82rem; }
.footer__credit {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.footer__credit a {
  color: var(--gold);
  transition: color 0.2s;
}
.footer__credit a:hover { color: var(--gold-light); }

/* ── SCROLL REVEAL ────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.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; }

/* ── PAGE HERO (inner pages) ──────────────── */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,149,42,0.1) 0%, transparent 70%);
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p  { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }

/* ── CONTACT PAGE ─────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { color: var(--navy); margin-bottom: 1rem; }
.contact-info p  { color: var(--text-muted); margin-bottom: 2rem; }
.contact-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 16px;
  display: flex; align-items: flex-start; gap: 16px;
}
.contact-card__icon {
  width: 48px; height: 48px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card__icon svg { color: var(--gold); }
.contact-card__label { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 4px; }
.contact-card__value { font-size: 0.95rem; font-weight: 500; color: var(--navy); }
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

/* ── THANK YOU PAGE ───────────────────────── */
.thankyou-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  text-align: center;
  color: var(--white);
}
.thankyou-icon {
  width: 80px; height: 80px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
}
.thankyou-icon svg { color: var(--white); }
.thankyou-section h1 { color: var(--white); margin-bottom: 1rem; font-size: 2.5rem; }
.thankyou-section p  { color: rgba(255,255,255,0.75); max-width: 500px; margin: 0 auto 2rem; font-size: 1.05rem; }
.thankyou-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: 600px;
  margin: 40px auto 0;
  text-align: left;
}
.thankyou-step {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 20px;
}
.thankyou-step__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.thankyou-step p { font-size: 0.88rem; color: rgba(255,255,255,0.7); }

/* ── PRIVACY / TERMS ──────────────────────── */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.4rem;
  color: var(--navy);
  margin: 2.5rem 0 0.75rem;
}
.legal-content h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin: 1.5rem 0 0.5rem;
}
.legal-content p  { color: var(--text-muted); margin-bottom: 1rem; }
.legal-content ul { margin: 0.75rem 0 1rem 1.5rem; list-style: disc; }
.legal-content ul li { color: var(--text-muted); margin-bottom: 0.5rem; font-size: 0.95rem; }
.legal-date { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 2rem; }

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 900px) {
  .hero__inner     { grid-template-columns: 1fr; }
  .hero__image-wrap { display: none; }
  .about-inner     { grid-template-columns: 1fr; }
  .enquiry-wrap    { grid-template-columns: 1fr; }
  .contact-grid    { grid-template-columns: 1fr; }
  .footer__grid    { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    gap: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  }
  .trust-bar__inner { gap: 24px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 120px 0 72px; }
  .enquiry-form-card { padding: 24px; }
  .contact-form-wrap { padding: 24px; }
}

@media (max-width: 640px) {
  /* gallery grid on rooms page */
  div[style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; }
}
