@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,300;0,400;0,500;0,600;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --rye-cream: #F6F1E7;
  --rye-beige: #EDE4D3;
  --rye-green: #223326;
  --rye-green-dark: #16221A;
  --rye-ink: #201C16;
  --rye-taupe: #7A7266;
  --rye-gold: #B99B5C;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background-color: var(--rye-cream);
  color: var(--rye-ink);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

.font-display { font-family: 'Fraunces', serif; }

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: 'Jost', sans-serif;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--rye-gold);
  margin-bottom: 12px;
}

.hairline {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--rye-gold), transparent);
  max-width: 1280px;
  margin: 0 auto;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.9s ease forwards; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all 0.3s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.site-header.solid {
  background-color: var(--rye-cream);
  border-bottom: 1px solid rgba(185,155,92,0.25);
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 44px; width: 44px; object-fit: contain; }
.brand span {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: var(--rye-cream);
  transition: color 0.3s ease;
}
.site-header.solid .brand span, body.inner .brand span { color: var(--rye-green-dark); }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--rye-cream);
  position: relative;
  transition: color 0.3s ease;
}
.site-header.solid .nav-links a, body.inner .nav-links a { color: var(--rye-ink); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background-color: var(--rye-gold);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a.active::after { width: 100%; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--rye-cream);
}
.site-header.solid .menu-toggle, body.inner .menu-toggle { color: var(--rye-ink); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 0 24px 24px;
  background-color: var(--rye-cream);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--rye-ink);
  padding: 4px 0;
}

@media (max-width: 960px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 92vh;
  min-height: 600px;
  width: 100%;
  display: flex;
  align-items: flex-end;
}
.hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(22,34,26,0.35) 0%, rgba(22,34,26,0.75) 100%);
}
.hero-content {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 80px;
  width: 100%;
}
.hero-content .eyebrow { color: var(--rye-gold); }
.hero-content h1 {
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  max-width: 750px;
}
.hero-content p {
  margin-top: 24px;
  max-width: 560px;
  color: #E9E3D5;
  font-size: 1.05rem;
}
.hero-buttons { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 16px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
.btn-gold { background-color: var(--rye-gold); border-color: var(--rye-gold); color: var(--rye-green-dark); }
.btn-gold:hover { background-color: transparent; color: var(--rye-gold); }
.btn-outline-light { border-color: #F6F1E7; color: #F6F1E7; }
.btn-outline-light:hover { background-color: rgba(246,241,231,0.1); }
.btn-dark { background-color: var(--rye-green-dark); color: #F6F1E7; }
.btn-dark:hover { opacity: 0.9; }

/* ===== SECTIONS ===== */
section { padding: 96px 0; }
.section-cream { background-color: var(--rye-cream); }
.section-beige { background-color: var(--rye-beige); }
.section-dark { background-color: var(--rye-green-dark); color: #F6F1E7; }

.section-heading h2 {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  color: var(--rye-green-dark);
  line-height: 1.2;
}
.section-heading.light h2 { color: #F6F1E7; }
.section-heading p { margin-top: 16px; color: var(--rye-taupe); max-width: 560px; }
.section-heading.light p { color: #C9C2B4; }

.page-header {
  padding: 160px 0 80px;
  background-color: var(--rye-beige);
}
.page-header h1 {
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  color: var(--rye-green-dark);
  line-height: 1.15;
}
.page-header p { margin-top: 20px; max-width: 560px; color: var(--rye-taupe); }

/* ===== GRIDS ===== */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 960px) {
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
}

.items-center { align-items: center; }

/* ===== CARDS ===== */
.service-card {
  background-color: var(--rye-cream);
  padding: 28px;
  border: 1px solid rgba(185,155,92,0.2);
  transition: transform 0.3s ease;
}
.service-card:hover { transform: translateY(-4px); }
.service-card svg { color: var(--rye-gold); }
.service-card h3 { font-family: 'Fraunces', serif; font-size: 1.15rem; margin-top: 16px; color: var(--rye-green-dark); }
.service-card p { font-size: 0.9rem; margin-top: 8px; color: var(--rye-taupe); }

.artwork-card { cursor: pointer; }
.artwork-card .img-wrap { overflow: hidden; aspect-ratio: 4/5; }
.artwork-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.artwork-card:hover img { transform: scale(1.05); }
.artwork-card .title { font-family: 'Fraunces', serif; font-style: italic; margin-top: 12px; color: var(--rye-green-dark); }
.artwork-card .meta { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--rye-taupe); margin-top: 4px; }

/* ===== FILTER ===== */
.filter-bar { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 56px; }
.filter-btn {
  padding: 8px 20px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid var(--rye-gold);
  background: transparent;
  color: var(--rye-green-dark);
  transition: all 0.3s ease;
}
.filter-btn.active { background-color: var(--rye-green-dark); color: #F6F1E7; }

/* ===== FOOTER ===== */
.site-footer { background-color: var(--rye-green-dark); color: #F6F1E7; }
.footer-grid {
  max-width: 1280px; margin: 0 auto; padding: 64px 24px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid .brand span { color: #F6F1E7; }
.footer-grid p.desc { font-size: 0.9rem; color: #C9C2B4; margin-top: 16px; line-height: 1.6; }
.footer-social { display: flex; gap: 16px; margin-top: 20px; }
.footer-social a { color: #F6F1E7; transition: color 0.3s ease; }
.footer-social a:hover { color: var(--rye-gold); }
.footer-grid ul li { margin-bottom: 8px; }
.footer-grid ul li a { font-size: 0.9rem; transition: color 0.3s ease; }
.footer-grid ul li a:hover { color: var(--rye-gold); }
.footer-contact li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.9rem; color: #C9C2B4; margin-bottom: 12px; }
.footer-bottom {
  max-width: 1280px; margin: 0 auto; padding: 24px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px;
  font-size: 0.75rem; color: #8A8272;
}
.footer-bottom a { transition: color 0.3s ease; }
.footer-bottom a:hover { color: var(--rye-gold); }

/* ===== TESTIMONIAL ===== */
.testimonial { max-width: 900px; margin: 0 auto; padding: 0 24px; text-align: center; }
.testimonial blockquote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: #F6F1E7;
  line-height: 1.4;
  margin-top: 16px;
}
.testimonial cite {
  display: block;
  margin-top: 24px;
  font-style: normal;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--rye-gold);
}

/* ===== CTA ===== */
.cta-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 32px; }

.contact-grid { display: grid; grid-template-columns: 2fr 3fr; gap: 64px; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }

/* ===== FORM ===== */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
.field label { display: block; margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(185,155,92,0.35);
  padding: 8px 0;
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  color: var(--rye-ink);
  outline: none;
  transition: border-color 0.3s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--rye-gold); }
.field textarea { resize: none; }
.form-success {
  background-color: var(--rye-beige);
  padding: 48px;
  text-align: center;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.form-success.show { display: flex; }
.form-success svg { color: var(--rye-green); }
.form-success h3 { font-family: 'Fraunces', serif; font-size: 1.5rem; color: var(--rye-green-dark); }
.form-success p { color: var(--rye-taupe); }

/* ===== FAQ ===== */
.faq-item { border-bottom: 1px solid rgba(185,155,92,0.2); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  text-align: left;
}
.faq-question span { font-family: 'Fraunces', serif; font-size: 1.15rem; color: var(--rye-green-dark); padding-right: 24px; }
.faq-question svg { color: var(--rye-gold); flex-shrink: 0; transition: transform 0.3s ease; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  color: var(--rye-taupe);
  max-width: 640px;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 24px; }

/* ===== NUMBERED SERVICE ROWS ===== */
.service-row { display: grid; grid-template-columns: 60px 1fr; gap: 24px; }
.service-row .num { font-family: 'Fraunces', serif; font-size: 2.2rem; color: var(--rye-gold); }
.service-row h3 { font-family: 'Fraunces', serif; font-size: 1.5rem; color: var(--rye-green-dark); display: flex; align-items: center; gap: 12px; }
.service-row p { margin-top: 12px; max-width: 640px; color: var(--rye-taupe); }
@media (max-width: 600px) { .service-row { grid-template-columns: 1fr; } }

/* utility */
.mt-alt { margin-top: 40px; }
@media (min-width: 961px) {
  .lg-offset { margin-top: 40px; }
}
