:root {
  --charcoal: #1f1f1f;
  --cream: #f7f4ef;
  --sage: #7f8c7b;
  --clay: #a06d5a;
  --sand: #e6ddcf;
  --white: #ffffff;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

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

body {
  font-family: "Inter", sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
}

.announcement {
  background: var(--charcoal);
  color: var(--white);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

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

.site-header {
  position: fixed;
  top: 2.2rem;
  width: 100%;
  z-index: 10;
  background: rgba(247, 244, 239, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 3vw;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--charcoal);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--clay);
}

.btn {
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--clay);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(160, 109, 90, 0.25);
}

.btn-ghost {
  border-color: var(--white);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 90vh;
  display: grid;
  place-items: center;
  color: var(--white);
  text-align: center;
  padding: 6rem 1rem 4rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("charltonranch.jpg") center/cover no-repeat;
  filter: contrast(1.08) saturate(1.05) brightness(1.02);
  transform: scale(1.01);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.25));
  z-index: 1;
}

.hero-content {
  position: relative;
  max-width: 700px;
  z-index: 2;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.section {
  padding: 5rem 0;
}

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

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

.section-header h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 0.6rem;
}

.grid {
  display: grid;
  gap: 2rem;
}

.two-col {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.three-col {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.info-card ul {
  list-style: none;
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
}

.info-card li::before {
  content: "•";
  color: var(--clay);
  margin-right: 0.5rem;
}

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

.gallery-card {
  background: linear-gradient(135deg, rgba(127, 140, 123, 0.25), rgba(160, 109, 90, 0.3));
  border-radius: 18px;
  min-height: 180px;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 600;
  color: var(--charcoal);
  padding: 1rem;
}

.image-card {
  padding: 0;
  overflow: hidden;
  background: none;
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  display: block;
  filter: contrast(1.08) saturate(1.05) brightness(1.02);
}

.note {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.95rem;
}

.calendar-embed {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  min-height: 420px;
}

.calendar-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.section-contact {
  background: var(--charcoal);
  color: var(--white);
}

.section-contact .card {
  color: var(--charcoal);
}

.contact-details {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.label {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.7rem;
  color: var(--sage);
}

.form {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}

input,
select,
textarea {
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-family: inherit;
  font-size: 0.95rem;
}

button {
  cursor: pointer;
}

.form-note {
  font-size: 0.8rem;
  color: #666;
}

.site-footer {
  background: #141414;
  color: var(--white);
  padding: 3rem 0;
}

.footer-content {
  display: grid;
  gap: 1.5rem;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

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

.footer-links a:hover {
  opacity: 1;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .site-header {
    position: static;
  }

  .announcement {
    position: static;
  }

  .hero {
    min-height: 70vh;
  }
}
