/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black:   #0d0d0d;
  --near-black: #111111;
  --charcoal:#1a1a1a;
  --mid:     #444444;
  --muted:   #888888;
  --light:   #bbbbbb;
  --border:  #e0e0e0;
  --bg:      #ffffff;
  --accent:  #8b5e3c;   /* warm brown used for links/highlights */
  --serif:   'Cormorant Garamond', Georgia, serif;
  --sans:    'Inter', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body::before {
  content: none;
}

a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ===== SHARED BUTTONS ===== */
.btn-outline {
  display: inline-block;
  padding: 10px 22px;
  border: 1px solid var(--charcoal);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--charcoal);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-outline:hover { background: var(--charcoal); color: #fff; }

.btn-solid {
  display: inline-block;
  padding: 10px 22px;
  background: var(--charcoal);
  border: 1px solid var(--charcoal);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-solid:hover { background: #333; }

.section-tag {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-tag--light { color: #777; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #fff;
  border-bottom: 1px solid var(--border);
  height: 60px;
  display: flex;
  align-items: center;
}

.nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.01em;
  flex-shrink: 0;
  margin-right: auto;
}
.nav-logo em { font-style: normal; }
.nav-logo-img {
  display: block;
  height: 140px;
  width: auto;
  filter: contrast(1.15) saturate(1.2);
  margin-top: 20px;
  margin-left: -32px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--muted); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
}

/* ===== HERO ===== */
.hero {
  padding: 28px 40px 0;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("images/3.png") center / cover no-repeat;
  filter: blur(10px);
  transform: scale(1.2);
  transform-origin: center center;
  z-index: 0;
  opacity: 0.55;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.hero-tag {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}

.hero-headline {
  margin-bottom: 36px;
}

.hero-headline h1 {
  font-family: var(--serif);
  font-size: clamp(3.4rem, 6.5vw, 5.8rem);
  font-weight: 500;
  line-height: 1.05;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

.hero-headline h1 em {
  font-style: italic;
  font-weight: 400;
  color: #555;
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 36px;
}

.hero-desc {
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.75;
  max-width: 360px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.hero-image {
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: 0;
}

/* ===== STATS BAR ===== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 0;
}

.stat-item {
  padding: 32px 40px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat-item:last-child { border-right: none; }

.stat-label {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
}

.stat-value {
  font-family: var(--sans);
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.stat-value--serif {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  font-style: normal;
}

/* ===== STORY SECTION ===== */
.story-section {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.story-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.story-right p {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 20px;
}
.story-right p:last-of-type { margin-bottom: 28px; }

.story-quote {
  border-left: 3px solid var(--border);
  padding-left: 24px;
  margin-top: 4px;
}

.story-quote p {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 12px !important;
}

.story-quote cite {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-style: normal;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  border-top: 1px solid var(--border);
}

.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding: 64px 40px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.services-heading {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.1;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
  cursor: default;
}
.services-heading:hover {
  color: #000;
}

.services-sub {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  text-align: right;
  max-width: 340px;
  flex-shrink: 0;
}

/* Service rows */
.services-list {
  border-top: 1px solid var(--border);
}

.service-row {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  align-items: center;
  gap: 0 48px;
  padding: 28px 40px;
  border-bottom: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
  cursor: default;
  transition: background 0.2s ease;
}
.service-row:hover {
  background: var(--near-black);
}



.service-num {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 400;
  transition: color 0.2s ease;
}
.service-row:hover .service-num { color: #666; }

.service-title {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.2;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}
.service-row:hover .service-title { color: #fff; }

.service-badge {
  display: inline-block;
  margin-left: 10px;
  padding: 2px 7px;
  border: 1px solid #555;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 400;
  color: #aaa;
  letter-spacing: 0.08em;
  vertical-align: middle;
  line-height: 1.5;
}

.service-desc {
  font-family: var(--sans);
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.7;
  transition: color 0.2s ease;
}
.service-row:hover .service-desc { color: #aaa; }

.services-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  margin-top: 0;
}

/* ===== WORK SECTION ===== */
.work-section {
  border-top: 1px solid var(--border);
}

.work-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding: 64px 40px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.work-heading {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.1;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
  cursor: default;
}
.work-heading:hover {
  color: #000;
}
.work-heading em {
  font-style: italic;
  font-weight: 400;
  transition: color 0.3s ease;
}
.work-heading:hover em {
  color: #000;
}

.work-sub {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  text-align: right;
  max-width: 360px;
  flex-shrink: 0;
}

/* Work list rows */
.work-list {
  border-top: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.work-row {
  display: grid;
  grid-template-columns: 48px 260px 200px 1fr 60px;
  align-items: center;
  gap: 0 32px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  cursor: default;
}

.work-num {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 400;
  transition: color 0.3s ease;
}
.work-row:hover .work-num { color: #000; }

.work-info { display: flex; flex-direction: column; gap: 4px; }

.work-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.25;
  transition: color 0.3s ease;
}
.work-row:hover .work-title { color: #000; }

.work-location {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.work-row:hover .work-location { color: #000; }

.work-type {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--muted);
  transition: color 0.3s ease;
}
.work-type--link { color: var(--accent); }
.work-row:hover .work-type { color: #000; }

.work-desc {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.65;
  transition: color 0.3s ease;
}
.work-row:hover .work-desc { color: #000; }

.work-year {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--muted);
  text-align: right;
  transition: color 0.3s ease;
}
.work-row:hover .work-year { color: #000; }

/* Work gallery */
.work-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 400px;
  margin-top: 0;
}

.work-gallery-img { overflow: hidden; }
.work-gallery-img img { transition: transform 0.6s ease; }
.work-gallery-img:hover img { transform: scale(1.03); }

/* ===== METHOD SECTION ===== */
.method-section {
  border-top: 1px solid var(--border);
  background: #fff;
}

.method-inner {
  padding: 64px 40px 72px;
  max-width: 1200px;
  margin: 0 auto;
}

.method-heading {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 40px;
}

.method-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 48px;
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 48px;
}

.method-num {
  display: block;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: #ccc;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.method-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.method-desc {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.75;
}

/* highlight linked words same as design */
.method-desc a,
.method-desc span.hl {
  color: var(--accent);
  text-decoration: none;
}

/* ===== VISION SECTION ===== */
.vision-section {
  background: var(--near-black);
  border-top: 1px solid #222;
}

.vision-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: center;
  padding: 72px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.vision-left { display: flex; flex-direction: column; gap: 20px; }

.vision-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  filter: grayscale(100%);
}

.vision-heading {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.vision-heading em {
  font-style: italic;
  font-weight: 400;
  color: #ccc;
}

.vision-body {
  font-family: var(--sans);
  font-size: 0.88rem;
  color: #aaa;
  line-height: 1.85;
  max-width: 480px;
}

/* ===== WHY SECTION ===== */
.why-section {
  border-top: 1px solid var(--border);
  background: #fff;
}

.why-inner {
  padding: 64px 40px 72px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0 56px;
}

.why-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 64px;
}

.why-title {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 16px;
  line-height: 1.2;
}

.why-desc {
  font-family: var(--sans);
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ===== COMMISSION / CONTACT SECTION ===== */
.commission-section {
  border-top: 1px solid var(--border);
  background: #fff;
}

.commission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 72px 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.commission-heading {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 36px;
}
.commission-heading em {
  font-style: italic;
  font-weight: 400;
}

.commission-detail {
  margin-bottom: 20px;
}

.commission-label {
  display: block;
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.commission-detail p {
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.6;
}

.commission-email {
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--accent);
}

/* Form */
.commission-form { display: flex; flex-direction: column; gap: 24px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group--full { grid-column: 1 / -1; }

.form-group label {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--charcoal);
  background: transparent;
  outline: none;
  resize: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus { border-bottom-color: var(--charcoal); }

.btn-submit { align-self: flex-start; margin-top: 8px; }

.form-status {
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  min-height: 1.2em;
}

/* ===== FOOTER ===== */
.site-footer {
  border-top: 1px solid var(--border);
  background: #fff;
  padding: 20px 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
}
.footer-logo-img {
  display: block;
  height: 110px;
  width: auto;
  filter: contrast(1.15) saturate(1.2);
}

.footer-copy {
  font-family: var(--sans);
  font-size: 0.75rem;
  color: var(--muted);
}

.footer-rights {
  color: var(--accent);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .stats-bar { grid-template-columns: repeat(3, 1fr); }
  .stat-item:nth-child(3) { border-right: none; }
  .stat-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .stat-item:nth-child(5) { border-top: 1px solid var(--border); border-right: none; }

  .work-row { grid-template-columns: 40px 1fr 60px; }
  .work-type { display: none; }
  .work-desc { display: none; }
  .work-year { text-align: right; }

  .service-row { grid-template-columns: 60px 1fr 1fr; }

  .vision-inner { grid-template-columns: 1fr; gap: 40px; }
  .vision-img { height: 280px; }

  .story-inner { grid-template-columns: 1fr; gap: 40px; }
  .commission-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-cols { gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 16px 40px 24px;
    gap: 20px;
    z-index: 800;
  }
  .nav-toggle { display: flex; }
  .navbar .btn-outline { display: none; }

  .hero { padding: 24px 24px 0; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 24px; }
  .hero-image { height: 260px; }
  .hero-meta { margin-bottom: 20px; }

  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
  .stat-item:nth-child(5) { border-top: 1px solid var(--border); }

  .services-header,
  .work-header { flex-direction: column; align-items: flex-start; padding: 40px 24px 28px; }
  .services-sub, .work-sub { text-align: left; }

  .service-row { grid-template-columns: 48px 1fr; padding: 20px 24px; }
  .service-desc { display: none; }

  .work-list { padding: 0 24px; }
  .work-row { grid-template-columns: 36px 1fr auto; }
  .work-type { display: none; }

  .method-inner { padding: 48px 24px 56px; }
  .method-steps { grid-template-columns: 1fr 1fr; gap: 36px; }

  .why-inner { padding: 48px 24px 56px; }
  .why-cols { grid-template-columns: 1fr; gap: 36px; }

  .vision-inner { padding: 48px 24px; }

  .commission-inner { padding: 48px 24px 64px; }
  .form-row { grid-template-columns: 1fr; }

  .work-gallery { grid-template-columns: 1fr; height: 480px; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 8px; padding: 0; }
  .site-footer { padding: 24px 24px; }
}

@media (max-width: 480px) {
  .hero-headline h1 { font-size: 2.6rem; }
  .stats-bar { grid-template-columns: 1fr; }
  .stat-item { border-right: none !important; border-top: 1px solid var(--border) !important; }
  .stat-item:first-child { border-top: none !important; }
  .method-steps { grid-template-columns: 1fr; }
  .nav-inner { padding: 0 24px; }
}
