* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Work Sans', sans-serif;
  background: #F1EDE6;
  color: #24211D;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
}

/* NAVBAR */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(241,237,230,0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #D9D0BE;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 32px;
}

.logo {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #24211D;
  font-size: 15px;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #6B7156;
  border-color: #6B7156;
}

/* FULL-WIDTH HERO */
.hero-full {
  position: relative;
  height: 100vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,18,14,0.75) 0%, rgba(20,18,14,0.35) 55%, rgba(20,18,14,0.1) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  color: #F1EDE6;
}

.hero-content .eyebrow {
  font-size: 14px;
  color: #D8CBA0;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.hero-content h1 {
  font-size: clamp(36px, 5vw, 58px);
  max-width: 700px;
  line-height: 1.12;
  margin-bottom: 22px;
}

.hero-content .lede {
  max-width: 480px;
  font-size: 17px;
  color: #E5E0D5;
  margin-bottom: 32px;
}

.btn-primary {
  display: inline-block;
  background: #F1EDE6;
  color: #24211D;
  text-decoration: none;
  border: none;
  cursor: pointer;
  padding: 15px 30px;
  font-size: 15px;
  transition: background 0.25s, color 0.25s, transform 0.25s;
}

.btn-primary:hover {
  background: #6B7156;
  color: #fff;
  transform: translateY(-2px);
}

.btn-primary.light {
  background: #24211D;
  color: #F1EDE6;
}

.btn-primary.light:hover {
  background: #AD7C52;
}

/* HIGHLIGHTS STRIP */
.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 32px;
  gap: 40px;
}

.h-num {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 44px;
  color: #6B7156;
  margin-bottom: 10px;
}

.highlight p {
  color: #6B665A;
  font-size: 15px;
  max-width: 26ch;
}

/* TEASER */
.teaser {
  background: #E7E0D2;
  padding: 90px 32px;
}

.teaser-text {
  max-width: 1180px;
  margin: 0 auto;
}

.teaser-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.teaser-text p {
  max-width: 60ch;
  color: #6B665A;
  font-size: 16.5px;
  margin-bottom: 24px;
}

.link-arrow {
  color: #24211D;
  text-decoration: none;
  font-size: 15px;
  border-bottom: 1px solid #AD7C52;
  padding-bottom: 3px;
  transition: color 0.2s;
}

.link-arrow:hover { color: #AD7C52; }

.link-arrow::after {
  content: " →";
  transition: margin-left 0.2s;
}

.link-arrow:hover::after {
  margin-left: 4px;
}

/* GALLERY PREVIEW */
.gallery-preview {
  max-width: 1180px;
  margin: 0 auto;
  padding: 90px 32px;
  text-align: center;
}

.gallery-preview h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}

.preview-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.4s;
}

.preview-grid img:hover {
  transform: scale(1.03);
}

/* CTA BAND */
.cta-band {
  background: #24211D;
  color: #F1EDE6;
  text-align: center;
  padding: 100px 32px;
}

.cta-band h2 {
  font-size: 34px;
  margin-bottom: 28px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 28px;
  font-size: 13px;
  color: #6B665A;
  background: #E7E0D2;
}

/* SCROLL REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* RESPONSIVE */
@media (max-width: 800px) {
  .nav-links { gap: 18px; font-size: 13px; }
  .highlights, .preview-grid { grid-template-columns: 1fr; }
  .hero-content .lede { max-width: 100%; }
}
/* PAGE HERO (inner pages) */
.page-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 160px 32px 60px;
}

.page-hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 14px;
}

.page-hero p {
  color: #6B665A;
  font-size: 17px;
}

/* ABOUT DETAIL PAGE */
.about-detail {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 32px 100px;
}

.about-grid {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}

.about-visual {
  flex-shrink: 0;
  width: 380px;
}

.about-visual img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 24px;
}

.stat-row {
  display: flex;
  gap: 32px;
}

.stat-num {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 30px;
  color: #6B7156;
}

.stat-label {
  font-size: 13px;
  color: #6B665A;
}

.about-copy p {
  color: #6B665A;
  font-size: 16.5px;
  margin-bottom: 18px;
}

.founder-line {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #D9D0BE;
  display: flex;
  align-items: center;
  gap: 16px;
}

.founder-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #6B7156;
  color: #fff;
  font-family: 'Fraunces', serif;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.founder-line b { display: block; }
.founder-line span { color: #6B665A; font-size: 14px; }

@media (max-width: 800px) {
  .about-grid { flex-direction: column; }
  .about-visual { width: 100%; }
}
/* SERVICES PAGE */
.services-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px 40px;
}

.service-row {
  padding: 34px 0;
  border-top: 1px solid #D9D0BE;
  transition: padding-left 0.25s, background 0.25s;
}

.service-row:last-child {
  border-bottom: 1px solid #D9D0BE;
}

.service-row:hover {
  background: #E7E0D2;
  padding-left: 16px;
}

.service-row h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.service-row p {
  color: #6B665A;
  font-size: 15.5px;
  max-width: 60ch;
}

/* PROCESS SECTION */
.process {
  background: #E7E0D2;
  padding: 90px 32px;
}

.process h2 {
  max-width: 1180px;
  margin: 0 auto 48px;
  font-size: 32px;
}

.process-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.step-num {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 32px;
  color: #AD7C52;
  margin-bottom: 14px;
}

.process-step h3 {
  font-size: 17px;
  margin-bottom: 10px;
}

.process-step p {
  color: #6B665A;
  font-size: 14.5px;
}

@media (max-width: 800px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
}
/* GALLERY PAGE */
.gallery-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.g-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.g-item:hover img {
  transform: scale(1.07);
}

.g-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  padding: 34px 16px 12px;
  font-size: 14px;
}

@media (max-width: 800px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20,18,14,0.92);
  z-index: 200;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: zoom-out;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 85vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox p {
  color: #F1EDE6;
  margin-top: 16px;
  font-family: 'Fraunces', serif;
  font-size: 18px;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 36px;
  color: #F1EDE6;
  font-size: 36px;
  cursor: pointer;
}
/* CONTACT PAGE */
.contact-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px 100px;
}

.contact-grid {
  display: flex;
  gap: 72px;
}

.contact-info, .contact-page form {
  flex: 1;
}

.info-block {
  margin-bottom: 26px;
}

.info-block h3 {
  font-size: 13px;
  color: #AD7C52;
  margin-bottom: 6px;
  font-family: 'Work Sans', sans-serif;
  letter-spacing: 0.02em;
}

.info-block p {
  font-size: 16px;
}

.info-block a {
  color: #24211D;
  text-decoration: none;
  border-bottom: 1px solid #D9D0BE;
}

.contact-page form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-size: 13.5px;
  color: #6B665A;
}

.field input, .field textarea {
  background: #FBF9F5;
  border: 1px solid #D9D0BE;
  padding: 13px 14px;
  font-family: inherit;
  font-size: 15px;
  color: #24211D;
}

.field input:focus, .field textarea:focus {
  outline: none;
  border-color: #6B7156;
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.form-success {
  color: #6B7156;
  font-size: 14px;
  margin-top: 6px;
  display: none;
}

.form-success.show { display: block; }

@media (max-width: 800px) {
  .contact-grid { flex-direction: column; }
}
/* CONTACT PAGE */
.contact-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px 100px;
}

.contact-grid {
  display: flex;
  gap: 72px;
}

.contact-info, .contact-page form {
  flex: 1;
}

.info-block {
  margin-bottom: 26px;
}

.info-block h3 {
  font-size: 13px;
  color: #AD7C52;
  margin-bottom: 6px;
  font-family: 'Work Sans', sans-serif;
  letter-spacing: 0.02em;
}

.info-block p {
  font-size: 16px;
}

.info-block a {
  color: #24211D;
  text-decoration: none;
  border-bottom: 1px solid #D9D0BE;
}

.contact-page form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-size: 13.5px;
  color: #6B665A;
}

.field input, .field textarea {
  background: #FBF9F5;
  border: 1px solid #D9D0BE;
  padding: 13px 14px;
  font-family: inherit;
  font-size: 15px;
  color: #24211D;
}

.field input:focus, .field textarea:focus {
  outline: none;
  border-color: #6B7156;
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.form-success {
  color: #6B7156;
  font-size: 14px;
  margin-top: 6px;
  display: none;
}

.form-success.show { display: block; }

@media (max-width: 800px) {
  .contact-grid { flex-direction: column; }
}
.filter-tabs {
  max-width: 1180px;
  margin: 0 auto;
  padding: 140px 32px 20px;
  display: flex;
  gap: 12px;
}

.filter-btn {
  background: none;
  border: 1px solid #D9D0BE;
  color: #6B665A;
  padding: 9px 20px;
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.filter-btn:hover {
  border-color: #6B7156;
  color: #24211D;
}

.filter-btn.active {
  background: #24211D;
  color: #F1EDE6;
  border-color: #24211D;
}

.g-item.hidden {
  display: none;
}