/* Contemporary refresh – warm nature theme */

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

:root {
  --bg: #f8f6f3;
  --surface: #ffffff;
  --text: #1c1917;
  --text-muted: #57534e;
  --accent: #4d7c5a;
  --accent-hover: #3d6b4a;
  --accent-warm: #b45309;
  --accent-warm-hover: #92420a;
  --border: #e7e5e4;
  --shadow: 0 1px 3px rgba(28, 25, 23, 0.06);
  --shadow-md: 0 4px 12px rgba(28, 25, 23, 0.08);
  --radius: 12px;
  --radius-sm: 8px;
}

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

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

h1, h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

h1 {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  margin-bottom: 0.5em;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  margin-bottom: 1.25rem;
}

/* Header */
header {
  background: #fff;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  display: block;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 0;
}

.nav-logo img {
  display: block;
  height: 80px !important;
  max-height: 80px !important;
  width: auto !important;
  max-width: 280px !important;
  object-fit: contain;
  vertical-align: middle;
}

nav strong {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
}

nav div {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

nav a:hover {
  color: var(--accent);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

/* Hero */
.hero {
  text-align: center;
  padding: clamp(5rem, 12vw, 8rem) 1.5rem;
  background: #3d5240 url("images/nature-hero.png") center center / cover no-repeat;
  position: relative;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.5) 100%);
}

.hero h1,
.hero p,
.hero .button {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.hero p {
  margin-bottom: 2rem;
  font-size: 1.125rem;
  opacity: 0.95;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.hero .button {
  background: var(--accent-warm);
  color: #fff;
}

.hero .button:hover {
  background: var(--accent-warm-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Buttons */
.button {
  display: inline-block;
  padding: 0.875rem 1.5rem;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-grid img:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Cards */
.card {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}

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

.about-intro {
  max-width: none;
}

.about-intro p {
  margin-bottom: 1.25rem;
  color: var(--text-muted);
  font-size: 1.0625rem;
}

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

.about-intro .button {
  margin-top: 0.5rem;
  background: var(--accent-warm);
}

.about-intro .button:hover {
  background: var(--accent-warm-hover);
}

.about-photos {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 280px;
  flex-shrink: 0;
}

.about-photos img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

@media (max-width: 768px) {
  .about-photos {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .about-photos img {
    width: calc(50% - 0.5rem);
    max-width: 160px;
  }

  .about-photos img:last-child {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.pricing-card {
  text-align: center;
}

.pricing-card .pricing-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.pricing-card .pricing-desc {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.pricing-card .button {
  margin-top: 0;
}

.pricing-note {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

/* FAQ */
.faq-list {
  max-width: 36rem;
}

.faq-item {
  margin-bottom: 2rem;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-q {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.faq-a {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

/* Forms */
form label {
  display: block;
  margin-bottom: 1.25rem;
  color: var(--text);
  font-weight: 500;
  font-size: 0.9375rem;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-top: 0.375rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

form input:focus,
form select:focus,
form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(77, 124, 90, 0.15);
}

form textarea {
  min-height: 120px;
  resize: vertical;
}

form button {
  margin-top: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9375rem;
  font-family: inherit;
  transition: background 0.2s ease, transform 0.2s ease;
}

form button:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* Footer */
footer {
  text-align: center;
  padding: 2.5rem 1.5rem;
  margin-top: 4rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.875rem;
}
