/* ===== VARIABLES ===== */
:root {
  --brown:   #7B5535;
  --camel:   #C4956A;
  --cream:   #F5F0E8;
  --warm-white: #FDFAF5;
  --dark:    #2C2016;
  --mid:     #6B5744;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', system-ui, sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--warm-white); color: var(--dark); font-family: var(--font-sans); font-weight: 300; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; }

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 2.5rem;
  background: rgba(253, 250, 245, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 149, 106, 0.2);
}
.logo {
  font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600;
  letter-spacing: 0.25em; color: var(--dark);
}
.nav-cta {
  font-family: var(--font-sans); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--brown); border-bottom: 1px solid var(--camel);
  padding-bottom: 2px; transition: color 0.2s;
}
.nav-cta:hover { color: var(--camel); }

/* ===== LABEL ===== */
.label {
  display: block;
  font-family: var(--font-sans); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--camel); margin-bottom: 1rem;
}

/* ===== HERO ===== */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
}
.hero-img-wrap {
  position: absolute; inset: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(44, 32, 22, 0.15) 0%,
    rgba(44, 32, 22, 0.55) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; color: #fff;
  padding: 0 1.5rem; max-width: 700px;
}
.hero-pre {
  font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); margin-bottom: 1.25rem;
}
.hero h1 {
  font-family: var(--font-serif); font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300; line-height: 1.05; margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; font-weight: 300; }
.hero-sub {
  font-size: clamp(0.9rem, 2vw, 1.05rem); font-weight: 300;
  color: rgba(255,255,255,0.85); line-height: 1.6; margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--brown); color: #fff;
  padding: 0.85rem 2rem; font-size: 0.8rem;
  letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--camel); }

.btn-secondary {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.6); color: #fff;
  padding: 0.85rem 2rem; font-size: 0.8rem;
  letter-spacing: 0.12em; text-transform: uppercase; font-weight: 400;
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

.btn-outline {
  display: inline-block;
  border: 1px solid var(--brown); color: var(--brown);
  padding: 0.75rem 1.75rem; font-size: 0.75rem;
  letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500;
  margin-top: 1.5rem; transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--brown); color: #fff; }

/* ===== CONCEPT ===== */
.concept {
  background: var(--cream);
  padding: 6rem 2rem;
  text-align: center;
}
.concept-inner { max-width: 600px; margin: 0 auto; }
.concept h2 {
  font-family: var(--font-serif); font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300; line-height: 1.1; margin-bottom: 1.5rem;
}
.concept p {
  font-size: 1rem; line-height: 1.75; color: var(--mid);
}

/* ===== GALLERY ===== */
.gallery { padding: 5rem 2rem; background: var(--warm-white); }
.gallery-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}
.gallery-item { aspect-ratio: 4/3; overflow: hidden; }
.gallery-item img { transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.03); }
.gallery-item.main { grid-row: 1 / 3; aspect-ratio: unset; }
.gallery-text {
  padding: 2rem 1rem 1rem;
  display: flex; flex-direction: column; justify-content: center;
}
.gallery-text h3 {
  font-family: var(--font-serif); font-size: 2rem; font-weight: 300;
  line-height: 1.2; margin-bottom: 1rem;
}
.gallery-text p { font-size: 0.95rem; line-height: 1.75; color: var(--mid); }

/* ===== VALUES ===== */
.values {
  background: var(--dark); color: var(--cream);
  padding: 6rem 2rem;
}
.values-inner {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.value-num {
  display: block; font-family: var(--font-serif);
  font-size: 3rem; font-weight: 300; color: var(--camel);
  line-height: 1; margin-bottom: 1.25rem;
}
.value h4 {
  font-family: var(--font-sans); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 0.75rem; color: #fff;
}
.value p { font-size: 0.9rem; line-height: 1.75; color: rgba(245,240,232,0.65); }

/* ===== CAPTURE ===== */
.capture {
  background: var(--cream); padding: 7rem 2rem;
  text-align: center;
}
.capture-inner { max-width: 560px; margin: 0 auto; }
.capture h2 {
  font-family: var(--font-serif); font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 300; line-height: 1.1; margin-bottom: 1.5rem;
}
.capture p {
  font-size: 0.95rem; line-height: 1.8; color: var(--mid);
  margin-bottom: 2.5rem;
}
.capture p em { font-style: italic; color: var(--brown); }
.email-form {
  display: flex; gap: 0; max-width: 440px; margin: 0 auto 1rem;
}
.email-form input {
  flex: 1; padding: 0.9rem 1.25rem;
  border: 1px solid var(--camel); border-right: none;
  background: #fff; font-family: var(--font-sans);
  font-size: 0.9rem; color: var(--dark); outline: none;
}
.email-form input::placeholder { color: #bbb; }
.email-form button {
  padding: 0.9rem 1.5rem; background: var(--brown); color: #fff;
  border: none; cursor: pointer; font-family: var(--font-sans);
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; white-space: nowrap;
  transition: background 0.2s;
}
.email-form button:hover { background: var(--camel); }
.form-note { font-size: 0.75rem; color: #aaa; letter-spacing: 0.05em; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark); color: rgba(245,240,232,0.6);
  padding: 4rem 2rem; text-align: center;
}
.footer-inner { max-width: 500px; margin: 0 auto; }
.footer-logo {
  font-family: var(--font-serif); font-size: 1.75rem; font-weight: 600;
  letter-spacing: 0.25em; color: var(--cream); margin-bottom: 0.5rem;
}
.footer-tagline {
  font-family: var(--font-serif); font-style: italic;
  font-size: 1rem; margin-bottom: 2rem; color: var(--camel);
}
.footer-links {
  display: flex; gap: 2rem; justify-content: center;
  margin-bottom: 2rem;
}
.footer-links a {
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(245,240,232,0.5); transition: color 0.2s;
}
.footer-links a:hover { color: var(--camel); }
.footer-copy { font-size: 0.7rem; letter-spacing: 0.08em; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav { padding: 1rem 1.25rem; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery-item.main { aspect-ratio: 4/3; grid-row: auto; }
  .values-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .email-form { flex-direction: column; }
  .email-form input { border-right: 1px solid var(--camel); border-bottom: none; }
  .email-form button { padding: 1rem; }
}
