:root {
  --bg: #FAF7F1;
  --text: #3A362F;
  --sage: #8A9A7E;
  --gold: #C3A05E;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', Helvetica, Arial, sans-serif;
  --section-pad-y: 128px;
}

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

html { scroll-behavior: smooth; }

::selection { background: rgba(138, 154, 126, 0.25); }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; }

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

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 56px;
  background: rgba(250, 247, 241, 0.8);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.logo {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0.12em;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--text);
}

/* HERO */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,18,14,0.15) 0%, rgba(20,18,14,0.05) 40%, rgba(20,18,14,0.45) 100%);
}

.hero-content {
  position: absolute;
  left: 50%;
  bottom: 9%;
  transform: translateX(-50%);
  text-align: center;
  width: 90%;
  max-width: 820px;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #FBF9F4;
  margin-bottom: 18px;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.15;
  color: #FFFFFF;
  margin: 0 0 30px 0;
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}

.hero-cta {
  display: inline-block;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FFFFFF;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.7);
  padding: 14px 38px;
  transition: background 0.3s ease, color 0.3s ease;
}

.hero-cta:hover {
  background: #FFFFFF;
  color: var(--text);
}

/* ABOUT */
.about {
  padding: var(--section-pad-y) 56px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 72px;
  align-items: center;
}

.about-image-wrap {
  width: 100%;
  aspect-ratio: 4 / 5;
}

.headshot-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0 0 14px 0;
}

.eyebrow.center { text-align: center; }

.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 3.6vw, 44px);
  margin: 0 0 26px 0;
  color: var(--text);
}

.section-title.center { text-align: center; }

.about-para {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.8;
  font-weight: 300;
  color: var(--text);
  max-width: 560px;
  margin: 0 0 20px 0;
}

/* GALLERY */
.gallery {
  padding: var(--section-pad-y) 56px;
  background: rgba(138, 154, 126, 0.08);
}

.gallery-grid {
  max-width: 1320px;
  margin: 48px auto 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-item {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

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

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

/* CONTACT */
.contact {
  padding: var(--section-pad-y) 56px;
}

.contact-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.contact-sub {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  color: var(--text);
  opacity: 0.8;
  margin: 0 0 44px 0;
}

.thank-you {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--sage);
  border: 1px solid rgba(138, 154, 126, 0.33);
  padding: 16px 20px;
  margin-bottom: 28px;
}

.form-error {
  font-family: var(--sans);
  font-size: 15px;
  color: #b3543f;
  border: 1px solid rgba(179, 84, 63, 0.33);
  padding: 16px 20px;
  margin-bottom: 28px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.field-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-wrap.full {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.65;
}

input, select, textarea {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--text);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(58, 54, 47, 0.2);
  padding: 8px 2px;
  outline: none;
}

input:focus, select:focus, textarea:focus {
  border-bottom-color: var(--sage);
}

textarea {
  border: 1px solid rgba(58, 54, 47, 0.2);
  padding: 12px;
  resize: vertical;
}

textarea:focus {
  border-color: var(--sage);
}

select {
  appearance: none;
  -webkit-appearance: none;
  border-bottom: 1px solid rgba(58, 54, 47, 0.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%233A362F' fill-opacity='0.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
}

.submit-button {
  margin-top: 10px;
  align-self: center;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--text);
  border: none;
  padding: 16px 48px;
  cursor: pointer;
  transition: opacity 0.25s ease;
}

.submit-button:hover {
  opacity: 0.85;
}

/* FOOTER */
.footer {
  padding: 56px;
  text-align: center;
  border-top: 1px solid rgba(58, 54, 47, 0.1);
}

.footer-logo {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.14em;
  margin: 0 0 16px 0;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 18px;
}

.footer-link {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--text);
  text-decoration: none;
  opacity: 0.75;
}

.footer-copy {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--text);
  opacity: 0.45;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  :root { --section-pad-y: 88px; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-wrap {
    max-width: 360px;
    margin: 0 auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .nav {
    padding: 20px 24px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 24px 0 32px;
    display: none;
    border-bottom: 1px solid rgba(58, 54, 47, 0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .about, .gallery, .contact {
    padding: 64px 24px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 40px 24px;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }
}
