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

:root {
  --ah-green: #8ea98b;
  --ah-green-dark: #3d5a45;
  --ah-cream: #f5f1e8;
  --ah-gold: #c89b3c;
  --ah-gold-light: #d4a84f;
  --ah-gold-dark: #b08840;
  --ah-charcoal: #2d3a2e;

  --bg: #f9faf9;
  --bg-soft: #f3f6f3;
  --bg-pale-green: #f0f4f0;
  --bg-deep: #1a2e1d;
  --border-subtle: rgba(148, 163, 148, 0.35);

  --text-main: #111827;
  --text-muted: #5a6b5c;
  --text-soft: #e5e7eb;

  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;

  --shadow-soft: 0 8px 24px rgba(45, 58, 46, 0.1);
  --shadow-medium: 0 12px 32px rgba(45, 58, 46, 0.15);
  --shadow-strong: 0 20px 50px rgba(45, 58, 46, 0.22);

  --header-height: 90px;
}

html {
  scroll-behavior: smooth;
}

html, body {
  height: 100%;
  width: 100%;
}

body {
  font-family: 'Source Sans 3', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text-main);
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  letter-spacing: -0.02em;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

h1 {
  font-size: clamp(2.1rem, 3vw + 1rem, 3rem);
  font-weight: 600;
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.6rem, 2.1vw + 1rem, 2.2rem);
  font-weight: 600;
}

h3 {
  font-size: 1.2rem;
  font-weight: 600;
}

h4 {
  font-size: 1.05rem;
  font-weight: 600;
}

p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* ====== Header - Sticky ====== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #ffffff;
  box-shadow: 0 2px 16px rgba(45, 58, 46, 0.08);
  border-bottom: 1px solid rgba(148, 163, 148, 0.15);
  padding: 0.75rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.site-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.brand-name {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ah-gold);
  font-family: 'Source Sans 3', sans-serif;
}

.brand-location {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ah-charcoal);
  font-weight: 500;
  font-family: 'Source Sans 3', sans-serif;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 1.1rem;
  font-size: 0.8rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--ah-charcoal);
  position: relative;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.18s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.3rem;
  height: 2px;
  border-radius: 999px;
  background: var(--ah-gold);
  opacity: 0;
  transform: translateY(3px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.main-nav a:hover {
  color: var(--ah-green-dark);
}

.main-nav a:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.header-ctas {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

.btn-book-header,
.btn-corporate-header {
  border: none;
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-book-header {
  background: var(--ah-gold);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(200, 155, 60, 0.35);
}

.btn-book-header:hover {
  background: var(--ah-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(200, 155, 60, 0.45);
}

.btn-corporate-header {
  background: var(--ah-gold);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(200, 155, 60, 0.35);
}

.btn-corporate-header:hover {
  background: var(--ah-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(200, 155, 60, 0.45);
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 0.8rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 960px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
  }

  .site-brand {
    order: 1;
    width: 100%;
    justify-content: center;
  }

  .site-logo {
    width: 48px;
    height: 48px;
  }

  .brand-name {
    font-size: 0.8rem;
  }

  .main-nav {
    order: 2;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem 0.9rem;
    font-size: 0.75rem;
    margin: 0;
  }

  .header-ctas {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 0.5rem;
  }

  .btn-book-header,
  .btn-corporate-header {
    font-size: 0.8rem;
    padding: 0.55rem 1rem;
  }
}

/* ====== Hero Section ====== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--ah-green-dark) 0%, var(--bg-deep) 100%);
  padding-top: var(--header-height);
}

.hero-inner {
  max-width: 1100px;
  width: 92%;
  margin: 0 auto;
  padding: 80px 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-copy {
  color: #ffffff;
}

.hero h1 {
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-lede {
  font-size: 1.1rem;
  color: rgba(245, 241, 232, 0.9);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero .btn-primary {
  background: var(--ah-gold);
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 8px 28px rgba(200, 155, 60, 0.45);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  cursor: pointer;
}

.hero .btn-primary:hover {
  background: var(--ah-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(200, 155, 60, 0.55);
}

.hero .btn-gold-outline {
  background: var(--ah-gold);
  color: #ffffff;
  border: 2px solid var(--ah-gold);
  border-radius: 999px;
  padding: 0.85rem 1.8rem;
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 8px 28px rgba(200, 155, 60, 0.45);
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  cursor: pointer;
}

.hero .btn-gold-outline:hover {
  background: var(--ah-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(200, 155, 60, 0.55);
}

.hero-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo img {
  max-width: 380px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.3));
  border-radius: var(--radius-lg);
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 60px 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .hero-logo {
    order: -1;
  }

  .hero-logo img {
    max-width: 240px;
  }

  .hero-ctas {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .hero .btn-primary,
  .hero .btn-gold-outline {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* ====== Buttons ====== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.btn-primary {
  background: var(--ah-gold);
  color: #ffffff;
  border-color: transparent;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: var(--ah-gold-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-medium);
}

.btn-view-images {
  background: transparent;
  color: var(--ah-gold);
  border: 1px solid var(--ah-gold);
  border-radius: var(--radius-pill);
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 0.75rem;
  transition: background 0.18s ease, color 0.18s ease;
}

.btn-view-images:hover {
  background: var(--ah-gold);
  color: #ffffff;
}

/* ====== Sections ====== */

section {
  padding: 5rem 0;
  scroll-margin-top: var(--header-height);
}

.section-muted {
  background: var(--bg-soft);
}

.section-cream {
  background: var(--ah-cream);
}

.section-pale {
  background: var(--bg-pale-green);
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  color: var(--ah-green-dark);
}

.section-header p {
  max-width: 650px;
  margin: 0.8rem auto 0;
}

/* ====== About Section ====== */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: flex-start;
}

.about-image {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
}

.about-content h2 {
  color: var(--ah-green-dark);
  margin-bottom: 1.5rem;
}

.about-content p {
  margin-bottom: 1rem;
  line-height: 1.75;
}

.about-content p:last-child {
  margin-bottom: 0;
}

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

  .about-image {
    position: static;
  }
}

/* ====== Floor Sections ====== */

.floor-section {
  margin-bottom: 3rem;
}

.floor-title {
  color: var(--ah-green-dark);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--ah-gold);
  display: block;
  text-align: center;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.floor-intro {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  text-align: center;
}

.amenities-title {
  max-width: 200px;
}

/* ====== Room Cards ====== */

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.room-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 148, 0.18);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.room-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.room-card .card-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.card-placeholder {
  background: linear-gradient(135deg, var(--ah-green) 0%, var(--ah-green-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}


.room-card-content {
  padding: 1.25rem 1.5rem;
}

.room-card-content h4 {
  margin-bottom: 0.35rem;
  color: var(--ah-charcoal);
}

.room-card-content p {
  font-size: 0.9rem;
}

/* ====== Amenities Grid ====== */

.amenities-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

.amenities-grid-fixed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas:
    "bedrooms bathrooms kitchen"
    "entertainment family kitchen"
    "internet heating kitchen"
    "outdoor parking laundry"
    "safety location services";
  gap: 1.5rem 2rem;
  margin-top: 1.5rem;
  align-items: start;
}

.amenities-grid-fixed .amenity-category {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .amenities-grid-fixed {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:
      "bedrooms bathrooms"
      "kitchen kitchen"
      "entertainment family"
      "internet heating"
      "outdoor parking"
      "laundry safety"
      "location services";
  }
}

@media (max-width: 600px) {
  .amenities-grid-fixed {
    grid-template-columns: 1fr;
    grid-template-areas:
      "bedrooms"
      "bathrooms"
      "kitchen"
      "entertainment"
      "family"
      "internet"
      "heating"
      "outdoor"
      "parking"
      "laundry"
      "safety"
      "location"
      "services";
  }
}

.amenity-category h4 {
  color: var(--ah-green-dark);
  margin-bottom: 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--ah-gold);
}

.amenity-category ul {
  list-style: none;
}

.amenity-category li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 0.3rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.amenity-category li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--ah-gold);
}

/* ====== Cards ====== */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.3rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 148, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.card h3 {
  margin-bottom: 0.35rem;
  color: var(--ah-charcoal);
}

.card p {
  font-size: 0.88rem;
}

/* ====== Features list ====== */

.features-list {
  list-style: none;
  margin-top: 1.5rem;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.features-list li::before {
  content: "✓";
  color: var(--ah-gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* ====== Corporate Section ====== */

.corporate-subheading {
  white-space: nowrap;
  max-width: none;
}

@media (max-width: 900px) {
  .corporate-subheading {
    white-space: normal;
  }
}

.corporate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
  margin-top: 2rem;
}

.corporate-content .features-list {
  margin-bottom: 2rem;
}

.corporate-content h3 {
  margin-bottom: 0.5rem;
  color: var(--ah-green-dark);
}

.corporate-content p {
  margin-bottom: 1rem;
}

.corporate-cta-wrapper {
  margin-top: 1.5rem;
  display: flex;
  align-items: flex-end;
  min-height: 50px;
}

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

/* ====== Wedding/Corporate Sections ====== */

.wedding-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
  margin-top: 2rem;
}

.wedding-content .features-list {
  margin-bottom: 1.5rem;
}

.wedding-content .btn {
  margin-top: 0.5rem;
}

.wedding-content h3 {
  margin-bottom: 0.5rem;
  color: var(--ah-green-dark);
}

.wedding-content p {
  margin-bottom: 1rem;
}

.ideal-for-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

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

/* ====== Weddings Layout ====== */

.weddings-layout {
  margin-top: 2rem;
}

.weddings-top-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
}

.wedding-text-block h3 {
  color: var(--ah-green-dark);
  margin-bottom: 0.75rem;
}

.wedding-text-block p {
  margin-bottom: 1rem;
  line-height: 1.75;
}

.wedding-hero-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.weddings-image-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.wedding-image-tall img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.wedding-highlight {
  font-style: italic;
  color: var(--ah-gold-dark);
  font-size: 1.05rem;
  margin-top: 1.25rem;
  margin-bottom: 0;
}

.wedding-cards-block {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto 1.5rem;
}

.wedding-cards-block .card {
  padding: 1.25rem 1rem;
}

.wedding-cards-block .card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.wedding-cards-block .card p {
  font-size: 0.9rem;
}

.wedding-cta-block {
  text-align: center;
  margin-top: 2.5rem;
}

@media (max-width: 768px) {
  .weddings-top-row {
    grid-template-columns: 1fr;
  }

  .weddings-image-row {
    grid-template-columns: 1fr;
  }

  .wedding-image-tall img {
    height: 300px;
  }
}

@media (max-width: 900px) {
  .wedding-cards-block {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .wedding-cards-block {
    grid-template-columns: 1fr;
  }
}

/* ====== Corporate Rates Panel ====== */

.business-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.corporate-rates-panel {
  background: linear-gradient(135deg, var(--ah-green-dark) 0%, #4a6b52 100%);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.6rem;
  color: #ffffff;
  box-shadow: var(--shadow-medium);
}

.corporate-rates-panel h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--ah-gold-light);
}

.corporate-rates-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.corporate-rates-panel li {
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
  padding-left: 1.2rem;
  position: relative;
  color: rgba(255, 255, 255, 0.92);
}

.corporate-rates-panel li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--ah-gold-light);
}

/* ====== Location ====== */

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: flex-start;
  margin-top: 2rem;
}

.location-content p {
  margin-top: 1.5rem;
  line-height: 1.7;
}

.location-address {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: var(--ah-green-dark);
}

.map-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 75%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(148, 163, 148, 0.2);
}

.map-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

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

  .map-wrapper {
    padding-bottom: 65%;
  }
}

/* ====== Reviews Section ====== */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.review-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 148, 0.18);
  border-left: 4px solid var(--ah-gold);
}

.review-text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.review-date {
  font-size: 0.8rem;
  color: var(--ah-gold-dark);
  font-weight: 600;
}

/* ====== Contact / Enquiry ====== */

.enquiry-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item h3 {
  margin-bottom: 0.4rem;
  color: var(--ah-green-dark);
}

.contact-item p {
  font-size: 0.95rem;
}

.contact-item a {
  color: var(--ah-green-dark);
  text-decoration: none;
  transition: color 0.18s ease;
}

.contact-item a:hover {
  color: var(--ah-gold);
  text-decoration: underline;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.social-icon {
  width: 18px;
  height: 18px;
}

.enquiry-form {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.8rem;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(148, 163, 148, 0.2);
}

.enquiry-form h3 {
  margin-bottom: 1rem;
  color: var(--ah-green-dark);
}

.enquiry-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-muted);
}

.enquiry-form input,
.enquiry-form textarea,
.enquiry-form select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 148, 0.45);
  padding: 0.65rem 0.8rem;
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
  font-family: inherit;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus,
.enquiry-form select:focus {
  outline: none;
  border-color: var(--ah-green);
  box-shadow: 0 0 0 3px rgba(142, 169, 139, 0.15);
}

.enquiry-form textarea {
  min-height: 90px;
  resize: vertical;
}

.enquiry-form button {
  width: 100%;
  margin-top: 0.5rem;
}

.corporate-fields {
  background: rgba(142, 169, 139, 0.08);
  border: 1px solid rgba(142, 169, 139, 0.25);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  margin: 0.5rem 0 1rem;
}

.corporate-fields label:first-child {
  margin-top: 0;
}

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

/* ====== Footer ====== */

footer {
  background: linear-gradient(135deg, var(--ah-green-dark) 0%, var(--bg-deep) 100%);
  color: rgba(226, 232, 226, 0.85);
  padding: 2rem 0;
  font-size: 0.85rem;
  text-align: center;
}

.footer-inner p {
  color: rgba(226, 232, 226, 0.7);
}

/* ====== Lightbox ====== */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.5rem;
  transition: opacity 0.2s ease;
}

.lightbox-close:hover {
  opacity: 0.7;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
  padding: 1rem;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
  left: 1.5rem;
}

.lightbox-next {
  right: 1.5rem;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox-image-wrapper {
  position: relative;
  display: inline-block;
  max-width: 100%;
  max-height: 75vh;
}

.lightbox-image-wrapper img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  display: block;
}

.lightbox-caption {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  max-width: 90%;
  white-space: nowrap;
  z-index: 10;
}

.lightbox-thumbnails {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  overflow-x: auto;
  padding: 0.5rem;
}

.lightbox-thumbnails img {
  width: 60px;
  height: 45px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.lightbox-thumbnails img:hover,
.lightbox-thumbnails img.active {
  opacity: 1;
}

@media (max-width: 600px) {
  .lightbox-prev,
  .lightbox-next {
    padding: 0.5rem;
    font-size: 1.5rem;
  }
}
.form-status {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-success {
  background: rgba(61, 90, 69, 0.1);
  color: var(--ah-green-dark);
  border: 1px solid rgba(61, 90, 69, 0.25);
}

.form-error {
  background: rgba(180, 60, 60, 0.08);
  color: #8b2020;
  border: 1px solid rgba(180, 60, 60, 0.2);
}

/* Mobile Safari: prevent header logo clipping WITHOUT changing layout */
@media (max-width: 960px) {
  .site-header {
    padding: 8px 0 !important;       /* keep header compact like before */
    height: auto !important;
    min-height: 0 !important;        /* do NOT force tall header */
  }

  /* Ensure the logo area never clips */
  .site-logo,
  .site-brand,
  .header-inner {
    overflow: visible !important;
    align-items: center !important;
  }

  /* Make logo slightly smaller so it fits inside header on iPhone */
  .site-logo img {
    display: block !important;
    height: auto !important;
    width: auto !important;
    max-height: 40px !important;     /* key fix */
  }

  /* Push hero below the fixed header height */
  #top.hero,
  .hero {
    padding-top: 220px !important;
  }
}
