:root {
  --dark: #0d0d0d;
  --dark-2: #111111;
  --black: #000000;
  --cream: #f0dcc0;
  --tan-bg: #f5e3c3;
  --white: #ffffff;
  --muted: #cfcfcf;
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

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

h1, h2, h3 { font-family: var(--font-head); font-weight: 700; }

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

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

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

.btn--outline:hover {
  background: var(--cream);
  color: var(--dark);
}

/* HERO */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 45%, rgba(0,0,0,0.05) 75%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 5vw 6vw 8vw;
  max-width: 720px;
}

.hero__content h1 {
  color: var(--cream);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero__tagline {
  color: var(--cream);
  opacity: 0.85;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* GENERIC SECTIONS */
.section {
  padding: 5rem 6vw;
}

.section--dark { background: var(--dark); }
.section--black { background: var(--black); }
.section--light { background: var(--tan-bg); color: var(--dark); }

.section__media {
  max-width: 900px;
  margin: 0 auto 2.5rem;
  border-radius: 4px;
  overflow: hidden;
}

.section__media img { width: 100%; height: auto; }

.section__text {
  max-width: 700px;
  margin: 0 auto;
}

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

.section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.section p { color: var(--muted); font-weight: 300; }

/* SPLIT (Process / Materials) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.split__col { text-align: center; }

.split__media {
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  aspect-ratio: 4 / 3;
}

.split__media img { width: 100%; height: 100%; object-fit: cover; }

.split__col h3 {
  font-weight: 400;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.split__col p { color: var(--muted); font-weight: 300; }

@media (max-width: 760px) {
  .split { grid-template-columns: 1fr; }
}

/* GALLERY */
.gallery__title {
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

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

.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.25s ease;
}

.gallery img:hover { transform: scale(1.03); }

/* CONTACT */
.contact__title {
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.contact {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.contact__form h3 { font-weight: 400; margin-bottom: 1.5rem; }

.contact__form label {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 1.2rem;
  margin-bottom: 0.3rem;
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.5rem 0.1rem;
}

.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-bottom-color: var(--cream);
}

.contact__form textarea { min-height: 90px; resize: vertical; }

.contact__form .btn { margin-top: 2rem; }

.contact__status { margin-top: 1rem; font-size: 0.9rem; }

.hidden-field { position: absolute; left: -9999px; }

.contact__aside h3 { font-weight: 400; margin-bottom: 1rem; margin-top: 2rem; }
.contact__aside h3:first-child { margin-top: 0; }
.contact__aside p { color: var(--muted); font-weight: 300; margin-bottom: 0.5rem; }
.contact__aside a { color: var(--cream); }

@media (max-width: 760px) {
  .contact { grid-template-columns: 1fr; }
}

/* FOOTER */
.footer {
  background: var(--black);
  text-align: center;
  padding: 3rem 6vw 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 1rem;
}

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

.footer__social a:hover { opacity: 1; }

.footer__name { font-family: var(--font-head); font-weight: 700; margin-bottom: 0.5rem; }
.footer__address { color: var(--muted); font-size: 0.9rem; margin-bottom: 1rem; }
.footer__copyright { color: var(--muted); font-size: 0.8rem; opacity: 0.7; }
