:root {
  --brown-dark: #3b2c26;
  --brown: #6b4f3f;
  --brown-light: #a9826a;
  --tan: #cbb59b;
  --gray-dark: #2e2c2b;
  --gray: #6f6a66;
  --gray-light: #ddd8d3;
  --cream: #f5f1ec;
  --white: #fffdfb;

  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--gray-dark);
  background: var(--cream);
  line-height: 1.6;
}

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

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--brown-dark);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--brown-light);
  margin-bottom: 0.5rem;
}

.btn {
  display: inline-block;
  background: var(--brown);
  color: var(--white);
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 2px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.25s ease;
}

.btn:hover {
  background: var(--brown-dark);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brown-dark);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.logo span {
  color: var(--brown-light);
}

.site-nav {
  display: flex;
  gap: 2rem;
}

.site-nav a {
  color: var(--gray-dark);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--brown);
}

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

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--brown-dark);
  display: block;
}

/* Hero */
.hero {
  height: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(160deg, var(--brown-dark), var(--brown) 60%, var(--brown-light));
  color: var(--cream);
  padding: 4rem 1.5rem;
}

.hero-content .eyebrow {
  color: var(--tan);
}

.hero h1 {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.hero .tagline {
  font-size: 1.15rem;
  color: var(--gray-light);
  max-width: 34rem;
  margin: 0 auto 2rem;
}

/* Section heading */
.section-heading {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
}

.section-sub {
  color: var(--gray);
  margin-top: 0.5rem;
}

/* Gallery */
.gallery {
  padding: 5rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 1 / 1;
  background: var(--gray-light);
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(59, 44, 38, 0.08);
}

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

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

/* Services */
.services {
  background: var(--white);
  padding: 5rem 1.5rem;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.service-card {
  padding: 2rem 1.5rem;
  text-align: center;
  background: var(--cream);
  border: 1px solid var(--gray-light);
  border-radius: 4px;
}

.service-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
}

.service-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* About */
.about {
  padding: 5rem 1.5rem;
}

.about-inner {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.about-inner p:not(.eyebrow) {
  margin-top: 1.25rem;
  color: var(--gray);
  font-size: 1.05rem;
}

/* Contact */
.contact {
  background: var(--brown-dark);
  color: var(--cream);
  padding: 5rem 1.5rem;
}

.contact .eyebrow {
  color: var(--tan);
}

.contact h2 {
  color: var(--white);
}

.contact .section-sub {
  color: var(--gray-light);
}

.contact-form {
  max-width: 32rem;
  margin: 0 auto;
}

.form-row {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-row label {
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--tan);
}

.form-row input,
.form-row textarea {
  font-family: var(--font-body);
  padding: 0.75rem;
  border: 1px solid var(--brown-light);
  border-radius: 2px;
  background: var(--cream);
  color: var(--gray-dark);
  font-size: 1rem;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid var(--tan);
}

.form-note {
  margin-top: 1rem;
  color: var(--tan);
  font-size: 0.9rem;
  min-height: 1.2em;
}

/* Footer */
.site-footer {
  background: var(--gray-dark);
  color: var(--gray-light);
  text-align: center;
  padding: 1.5rem;
  font-size: 0.85rem;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 15, 12, 0.92);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
}

/* Responsive nav */
@media (max-width: 720px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-bottom: 1px solid var(--gray-light);
  }

  .site-nav.open {
    max-height: 20rem;
  }

  .site-nav a {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--gray-light);
  }
}
