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

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

:root {
  --black: #0c0c0c;
  --off-white: #f0ede8;
  --warm-white: #faf8f5;
  --terracotta: #c8694a;
  --cobalt: #2b4ac4;
  --sage: #4a7a4a;
  --mid: #888;
  --border: rgba(255,255,255,0.1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--off-white);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 52px;
  transition: padding 0.4s, background 0.4s;
}

nav.solid {
  padding: 18px 52px;
  background: rgba(12,12,12,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--off-white);
  text-decoration: none;
}

.logo em { color: var(--terracotta); font-style: italic; }

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240,237,232,0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--off-white); }

.nav-btn {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--off-white);
  padding: 10px 24px;
  border-radius: 1px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.nav-btn:hover {
  background: var(--terracotta);
  color: white;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--off-white);
  transition: all 0.3s;
}

/* ── HERO ── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(12,12,12,0.82) 0%,
    rgba(12,12,12,0.45) 55%,
    rgba(12,12,12,0.1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 52px 80px;
  max-width: 680px;
}

.hero-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  border: 1px solid var(--terracotta);
  padding: 6px 14px;
  border-radius: 1px;
  margin-bottom: 28px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: white;
  margin-bottom: 28px;
}

.hero-title em {
  font-style: italic;
  color: var(--off-white);
  opacity: 0.85;
}

.hero-sub {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(240,237,232,0.65);
  max-width: 420px;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-white {
  background: white;
  color: var(--black);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 1px;
  transition: background 0.2s;
}

.btn-white:hover { background: var(--terracotta); color: white; }

.btn-ghost {
  border: 1px solid rgba(255,255,255,0.4);
  color: white;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 1px;
  transition: border-color 0.2s, background 0.2s;
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 52px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-scroll span {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--terracotta);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ── TICKER ── */
.ticker {
  background: var(--terracotta);
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 0;
}

.ticker-inner {
  display: inline-flex;
  animation: ticker 28s linear infinite;
}

.ticker-inner span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: white;
  padding: 0 32px;
}

.ticker-inner .sep {
  opacity: 0.5;
  padding: 0;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── SECTION LABELS ── */
.label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}

/* ── GALLERY ── */
#gallery {
  padding: 100px 52px;
}

.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 32px;
}

.gallery-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
}

.gallery-title em { font-style: italic; color: rgba(240,237,232,0.5); }

.gallery-desc {
  max-width: 320px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--mid);
  flex-shrink: 0;
}

/* Masonry-style grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}

.g-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #1a1a1a;
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Layout assignments — 9 photos, 3 rows */
.g-tall-left   { grid-column: 1 / 5;  grid-row: 1 / 3; height: 100%; min-height: 640px; }
.g-top-right-a { grid-column: 5 / 9;  grid-row: 1;     height: 312px; }
.g-top-right-b { grid-column: 9 / 13; grid-row: 1;     height: 312px; }
.g-mid-a       { grid-column: 5 / 8;  grid-row: 2;     height: 312px; }
.g-mid-b       { grid-column: 8 / 10; grid-row: 2;     height: 312px; }
.g-mid-c       { grid-column: 10 / 13;grid-row: 2;     height: 312px; }
.g-bot-a       { grid-column: 1 / 5;  grid-row: 3;     height: 360px; }
.g-bot-b       { grid-column: 5 / 9;  grid-row: 3;     height: 360px; }
.g-bot-c       { grid-column: 9 / 13; grid-row: 3;     height: 360px; }

.g-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 24px 22px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  transform: translateY(6px);
  opacity: 0;
  transition: all 0.35s;
}

.g-item:hover .g-caption {
  transform: translateY(0);
  opacity: 1;
}

.g-caption h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: white;
  margin-bottom: 4px;
}

.g-caption p {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65);
}

.g-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(12,12,12,0.75);
  backdrop-filter: blur(8px);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: white;
  padding: 5px 10px;
  border-radius: 1px;
}

/* ── ABOUT ── */
#about {
  padding: 120px 52px;
  border-top: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.about-img {
  overflow: hidden;
  border-radius: 1px;
}

.about-img:first-child {
  grid-column: 1 / -1;
  height: 320px;
}

.about-img:not(:first-child) {
  height: 200px;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.about-img:hover img { transform: scale(1.04); }

.about-text .label { display: block; }

.about-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 28px;
}

.about-h em { font-style: italic; color: rgba(240,237,232,0.5); }

.about-p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(240,237,232,0.6);
  margin-bottom: 18px;
}

.about-nums {
  display: flex;
  gap: 48px;
  margin-top: 52px;
  padding-top: 44px;
  border-top: 1px solid var(--border);
}

.num-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 8px;
}

.num-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
}

/* ── PROCESS ── */
#process {
  padding: 100px 52px;
  background: #111;
  border-top: 1px solid var(--border);
}

.process-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 72px;
}

.process-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 300;
  max-width: 460px;
  line-height: 1.15;
}

.process-h em { font-style: italic; color: rgba(240,237,232,0.4); }

.process-note {
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  max-width: 200px;
  text-align: right;
  line-height: 1.6;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}

.p-step {
  background: #111;
  padding: 48px 36px;
}

.p-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 300;
  color: rgba(240,237,232,0.08);
  line-height: 1;
  margin-bottom: 20px;
}

.p-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 14px;
  color: var(--off-white);
}

.p-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--mid);
}

/* ── CONTACT ── */
#contact {
  padding: 100px 52px;
  border-top: 1px solid var(--border);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.contact-left .label { display: block; }

.contact-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 28px;
}

.contact-h em { font-style: italic; color: rgba(240,237,232,0.4); }

.contact-tagline {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--mid);
  margin-bottom: 52px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.c-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.c-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  border-radius: 1px;
}

.c-text p {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 5px;
}

.c-text a, .c-text strong {
  font-size: 15px;
  font-weight: 400;
  color: var(--off-white);
  text-decoration: none;
}

.c-text a:hover { color: var(--terracotta); }

/* Form */
.contact-form {
  background: #141414;
  border: 1px solid var(--border);
  padding: 52px;
  border-radius: 2px;
}

.contact-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 36px;
}

.f-group {
  margin-bottom: 22px;
}

.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.f-group label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 10px;
}

.f-group input,
.f-group select,
.f-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: #1c1c1c;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--off-white);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

.f-group select option { background: #1c1c1c; }

.f-group input:focus,
.f-group select:focus,
.f-group textarea:focus {
  border-color: var(--terracotta);
}

.f-group textarea { height: 110px; resize: vertical; }

.f-submit {
  width: 100%;
  margin-top: 10px;
  padding: 15px;
  background: var(--terracotta);
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  border-radius: 1px;
  cursor: pointer;
  transition: opacity 0.2s;
}

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

.f-success {
  display: none;
  margin-top: 16px;
  padding: 16px;
  background: rgba(74, 122, 74, 0.15);
  border: 1px solid rgba(74,122,74,0.3);
  color: #7fbf7f;
  font-size: 13px;
  text-align: center;
  border-radius: 1px;
}

/* ── FOOTER ── */
footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 72px 52px 36px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 36px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--off-white);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 18px;
}

.footer-logo em { color: var(--terracotta); font-style: italic; }

.footer-about {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(240,237,232,0.35);
  max-width: 260px;
}

.footer-col h4 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240,237,232,0.3);
  margin-bottom: 22px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.footer-col a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(240,237,232,0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--off-white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(240,237,232,0.2);
}

/* ── LIGHTBOX ── */
.lb {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.lb.on { display: flex; }

.lb img {
  max-width: 92vw;
  max-height: 90vh;
  object-fit: contain;
}

.lb-close {
  position: absolute;
  top: 20px; right: 28px;
  background: none; border: none;
  color: rgba(255,255,255,0.5);
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.lb-close:hover { color: white; }

/* ── MOBILE ── */
@media (max-width: 960px) {
  nav { padding: 20px 24px; }
  nav.solid { padding: 14px 24px; }
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(12,12,12,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 16px; }
  .nav-btn { display: none; }
  .hamburger { display: flex; z-index: 300; }

  .hero-content { padding: 0 24px 64px; }
  .hero-scroll { display: none; }

  .gallery-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .gallery-desc { max-width: 100%; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .g-tall-left, .g-top-right-a, .g-top-right-b,
  .g-mid-a, .g-mid-b, .g-mid-c,
  .g-bot-a, .g-bot-b, .g-bot-c {
    grid-column: auto;
    grid-row: auto;
    height: 220px;
    min-height: unset;
  }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { display: none; }

  .process-top { flex-direction: column; gap: 16px; }
  .process-steps { grid-template-columns: 1fr 1fr; }

  .contact-wrap { grid-template-columns: 1fr; gap: 48px; }

  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

  #gallery, #about, #process, #contact { padding: 72px 24px; }
  footer { padding: 56px 24px 28px; }
}

@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .g-tall-left, .g-top-right-a, .g-top-right-b,
  .g-mid-a, .g-mid-b, .g-mid-c,
  .g-bot-a, .g-bot-b, .g-bot-c { height: 260px; min-height: unset; }
  .process-steps { grid-template-columns: 1fr; }
  .f-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .about-nums { flex-wrap: wrap; gap: 28px; }
}
