:root {
  --primary: #7a9a8d;
  --primary-dark: #5f7e72;
  --secondary: #eef4f1;
  --background: #f8fbf9;
  --surface: #ffffff;
  --text: #273330;
  --muted: #5f6e68;
  --border: rgba(39, 51, 48, 0.08);
  --shadow: 0 20px 50px rgba(27, 39, 35, 0.08);
  --radius: 24px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  color: var(--text);
  background: var(--background);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(248, 251, 249, 0.88);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  flex-shrink: 1;
  min-width: 0;
}

.brand-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  transition: width 0.3s ease, height 0.3s ease, transform 0.3s ease;
}

.site-header.scrolled .brand-logo {
  width: 56px;
  height: 56px;
  background-color: rgba(248, 251, 249, 0.88);
}

.brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
}

.main-nav a {
  color: var(--muted);
  font-weight: 500;
}

.main-nav a:hover {
  color: var(--text);
}

/* Hamburger button */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1f3a24;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(122, 154, 141, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(122, 154, 141, 0.35);
  background: var(--primary-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-dark);
  border: 1px solid rgba(122, 154, 141, 0.3);
  box-shadow: none;
}

.btn-secondary:hover {
  background: rgba(122, 154, 141, 0.08);
}

.btn-small {
  padding: 0.75rem 1.25rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 5rem;
  background:
    radial-gradient(circle at top right, rgba(122, 154, 141, 0.18), transparent 40%),
    linear-gradient(180deg, #ffffff 0%, #f4f9f6 100%);
  background-image: url('hero_image.png');
  background-size: cover;      /* makes the image fill the container */
  background-position: center; /* keeps it centered */
  background-repeat: no-repeat;/* prevents tiling */
}


.hero::after,
.section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 120px;
  background: linear-gradient(to bottom, rgba(248, 251, 249, 0), var(--background));
  pointer-events: none;
}

.hero-grid,
.split-layout,
.contact-box {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  line-height: 1.15;
  font-family: 'Playfair Display', serif;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: 1.35rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 60ch;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  color: var(--muted);
  font-weight: 500;
}

.hero-card,
.card,
.info-panel,
.testimonial,
.contact-box {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card,
.info-panel,
.contact-box {
  padding: 2rem;
}

.about-profile-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-top: 20px;
}

.credentials-text {
  flex: 1;
  margin: 0;
}

.about-content {
  display: flex;
  flex-direction: column;
}

.about-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-self: start;
}

.split-layout {
  align-items: start;
}

.photo-placeholder {
  flex-shrink: 0;
}

.photo-placeholder img {
  width: 220px;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.hero-card ul,
.info-panel ul {
  margin: 0;
  padding-left: 1.25rem;
}

.info-panel {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
  width: 100%;
}

.info-panel h3,
.info-panel ul {
  text-align: left;
}

.info-panel li {
  margin-bottom: 0.5rem;
}

.info-panel li:last-child {
  margin-bottom: 0;
}

.section {
  position: relative;
  padding: 50px 20px;
}

/* Prevent sticky header from covering anchored sections */
section[id] {
  scroll-margin-top: 120px;
}

.section-alt {
  background: var(--secondary);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-heading p:last-child {
  color: var(--muted);
}

.card-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card,
.testimonial {
  padding: 2rem;
}

.card p,
.testimonial p,
.info-panel li {
  color: var(--muted);
}

.testimonial footer {
  margin-top: 1rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.contact {
  padding-bottom: 7rem;
}

.site-footer {
  padding: 2rem 0;
  background: #eef4f1;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Booking Form Section */
#booking .section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.booking-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-form input,
.booking-form textarea {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid #d0e0d8;
  border-radius: 6px;
  background-color: #fff;
  transition: border-color 0.2s ease;
}

.booking-form input:focus,
.booking-form textarea:focus {
  border-color: #7a9a8d;
  outline: none;
}

.booking-form textarea {
  min-height: 140px;
  resize: vertical;
}

.booking-form button.btn {
  align-self: flex-start;
}


/* Tablet and mobile */
@media (max-width: 600px) {
  .site-header {
    position: sticky;
  }

  .site-header .nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* Show hamburger icon */
  .menu-toggle {
    display: flex;
  }

  /* Hide desktop menu by default */
  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 16px;
    padding: 16px 24px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav a {
    padding: 8px 0;
    text-decoration: none;
  }

  /* Hide call button on mobile */
  .site-header .btn-small {
    display: none;
  }

  .brand-logo {
    width: 64px;
    height: 64px;
  }

  .site-header.scrolled .brand-logo {
    width: 48px;
    height: 48px;
  }

  .brand-text {
    font-size: 1.25rem;
    line-height: 1.2;
  }

  .hero-grid,
  .split-layout,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 4rem;
  }
}



@media (max-width: 400px) {
  .about-profile-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .credentials-text {
    text-align: center;
  }

  .photo-placeholder img {
    width: 180px;
  }
}

@media (max-width: 400px) {
  .container {
    width: min(var(--max-width), calc(100% - 1.25rem));
  }

  .site-header {
    backdrop-filter: blur(8px);
  }

  .brand-logo {
    width: 56px;
    height: 56px;
  }

  .site-header.scrolled .brand-logo {
    width: 40px;
    height: 40px;
  }

  .brand-text {
    font-size: 1rem;
  }

  .nav {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 0.75rem;
  }

  h1 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  h2 {
    font-size: clamp(1.7rem, 8vw, 2.3rem);
  }

  .lead {
    font-size: 1rem;
  }

  .hero-card,
  .card,
  .info-panel,
  .testimonial,
  .contact-box {
    padding: 1.5rem;
  }

  .hero-actions,
  .contact-actions,
  .trust-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .section,
  .hero {
    padding: 4rem 0;
  }
  

}

  /* Mobile-only hero override */
  @media only screen and (max-width: 400px)
 {
  .hero {
    background-image: url('hero_image_mobile.png');
    background-size: cover;
    background-position: center;
    height: 60vh;
  }
  
  .hero-card {
    display: block !important;
    visibility: visible !important;
  }
}