:root {
  --primary: #2E6B7A;
  --primary-dark: #1A4A56;
  --primary-light: #5BA3B5;
  --earth: #8B7355;
  --earth-light: #C4A882;
  --moss: #5C7A5C;
  --text: #1E2D2F;
  --text-light: #4A5E60;
  --bg: #F8FAFB;
  --bg-alt: #EEF4F6;
  --white: #FFFFFF;
  --border: #D4E0E3;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--primary-dark);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.3s;
}

/* Hero */
.hero {
  position: relative;
  height: 75vh;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,45,47,0.6), rgba(30,45,47,0.2));
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-align: center;
  max-width: 700px;
  padding: 0 24px;
}

.hero-content h1 {
  font-size: 3.2rem;
  margin-bottom: 16px;
  line-height: 1.15;
  font-weight: 300;
  letter-spacing: -1px;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 32px;
  opacity: 0.9;
  font-weight: 300;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.3s, transform 0.2s;
}

.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

/* Sections */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 12px;
  color: var(--primary-dark);
  font-weight: 300;
  letter-spacing: -0.5px;
}

.section-subtitle {
  text-align: center;
  font-size: 1rem;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto 48px;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item .gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}

.gallery-caption h4 {
  font-size: 0.95rem;
  font-weight: 500;
}

.gallery-caption p {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Featured large */
.gallery-featured {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

/* Standard grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  align-items: center;
}

/* Cards */
.card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 24px;
}

.card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--primary-dark);
  font-weight: 600;
}

.card-body p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.card-price {
  display: inline-block;
  margin-top: 10px;
  font-size: 1rem;
  color: var(--earth);
  font-weight: 600;
}

/* About / split */
.about-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 350px;
}

.about-text h2 {
  font-size: 1.8rem;
  color: var(--primary-dark);
  margin-bottom: 16px;
  font-weight: 300;
}

.about-text p {
  margin-bottom: 16px;
  color: var(--text-light);
}

/* Stats strip */
.stats-strip {
  background: var(--primary-dark);
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--primary-light);
}

.stat-item p {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Article */
.article-hero {
  height: 45vh;
  min-height: 320px;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.article-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-hero .hero-overlay {
  background: linear-gradient(to top, rgba(30,45,47,0.85), transparent 70%);
}

.article-hero h1 {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-size: 2.4rem;
  font-weight: 300;
  padding: 32px 24px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.article-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 24px;
}

.article-content h2 {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin: 40px 0 14px;
  font-weight: 400;
}

.article-content p {
  margin-bottom: 18px;
  color: var(--text-light);
}

.article-content img {
  width: 100%;
  border-radius: 8px;
  margin: 28px 0;
}

.article-content blockquote {
  border-left: 3px solid var(--primary-light);
  padding: 16px 24px;
  margin: 28px 0;
  background: var(--bg-alt);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--text);
}

/* Print sizes */
.print-sizes {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.print-size {
  padding: 6px 14px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.82rem;
  color: var(--text-light);
}

/* Footer */
footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  opacity: 0.75;
  margin-top: 12px;
  font-size: 0.9rem;
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 16px;
  color: var(--primary-light);
  font-weight: 500;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact p {
  opacity: 0.7;
  font-size: 0.88rem;
  margin-bottom: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  text-align: center;
  opacity: 0.5;
  font-size: 0.82rem;
}

/* Responsive */
@media (max-width: 968px) {
  .grid-3, .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-featured {
    grid-column: span 2;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.active {
    display: flex;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .grid-3, .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-featured {
    grid-column: span 1;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}
