/* ─── TOKENS ──────────────────────────────────────────────────────────── */
:root {
  --ink:      #0d0f14;
  --ink-mid:  #13161d;
  --ink-soft: #191c24;
  --seam:     #252830;
  --seam-lt:  #2e3240;
  --dust:     #6c7080;
  --mist:     #8a8fa0;
  --silk:     #d8d4cc;
  --white:    #ede9e3;
  --clay:     #c4603a;
  --clay-lt:  #d4724e;
  --clay-dim: rgba(196, 96, 58, 0.12);
  --clay-mid: rgba(196, 96, 58, 0.25);
}

/* ─── RESET ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--ink);
  color: var(--silk);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── CURSOR ──────────────────────────────────────────────────────────── */
.cursor {
  width: 6px; height: 6px;
  background: var(--clay);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .25s, height .25s;
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1px solid rgba(196, 96, 58, .4);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s, border-color .3s;
}
body.hov .cursor { width: 12px; height: 12px; }
body.hov .cursor-ring { width: 52px; height: 52px; border-color: var(--clay); }

/* ─── NAV ─────────────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1rem 5vw;
  display: flex; justify-content: space-between; align-items: center;
  background: var(--ink);
  border-bottom: 1px solid var(--seam);
}
.nav-logo {
  text-decoration: none;
  display: flex; align-items: center;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 80px;
  width: auto;
  display: block;
  /* Slight dim at rest, full brightness on hover */
  opacity: 0.88;
  transition: opacity .25s;
}
.nav-logo:hover .nav-logo-img { opacity: 1; }
.nav-links {
  display: flex; gap: 2.5rem; list-style: none;
}
.nav-links a {
  font-size: .8rem; font-weight: 400;
  letter-spacing: .06em; color: var(--dust);
  text-decoration: none; transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--clay);
  transition: width .3s ease;
}
.nav-links a:hover { color: var(--silk); }
.nav-links a:hover::after { width: 100%; }

/* ─── HERO ────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh; min-height: 680px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 28%;
  filter: brightness(.48) saturate(.7);
  transform: scale(1.06);
  transition: transform 14s ease;
}
.hero:hover .hero-bg img { transform: scale(1); }
.hero-bg::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(110deg,
    rgba(13, 15, 20, .88) 0%,
    rgba(13, 15, 20, .5)  55%,
    rgba(13, 15, 20, .2)  100%);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(13, 15, 20, .8) 0%, transparent 45%);
}
.hero-content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 0 5.5vw 9vh;
  max-width: 760px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: .8rem;
  font-size: .7rem; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--clay); margin-bottom: 1.6rem;
}
.hero-eyebrow-line { width: 22px; height: 1px; background: var(--clay); }

.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1.1; letter-spacing: -.01em;
  color: var(--white); margin-bottom: 1.5rem;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .word {
  display: inline-block;
  transform: translateY(105%);
  animation: slideUp .9s cubic-bezier(.16, 1, .3, 1) forwards;
}
.hero-title .line:nth-child(1) .word { animation-delay: .10s; }
.hero-title .line:nth-child(2) .word { animation-delay: .24s; }
.hero-title .line:nth-child(3) .word { animation-delay: .38s; }
.hero-title em { font-style: italic; color: var(--clay); font-weight: 400; }

@keyframes slideUp { to { transform: translateY(0); } }

.hero-sub {
  font-size: .95rem; font-weight: 300; color: var(--mist);
  max-width: 360px; line-height: 1.75; margin-bottom: 2.6rem;
  opacity: 0; transform: translateY(18px);
  animation: fadeUp .8s ease forwards .6s;
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.hero-cta {
  display: flex; gap: .85rem; align-items: center;
  opacity: 0; animation: fadeUp .8s ease forwards .78s;
}

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .8rem 1.8rem;
  background: var(--clay); color: var(--white);
  font-size: .78rem; font-weight: 500; letter-spacing: .08em;
  text-decoration: none;
  transition: background .2s, box-shadow .25s, transform .2s;
}
.btn-primary:hover {
  background: var(--clay-lt);
  box-shadow: 0 6px 28px rgba(196, 96, 58, .3);
  transform: translateY(-1px);
}
.btn-primary .arr { transition: transform .25s; }
.btn-primary:hover .arr { transform: translateX(3px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 1.6rem;
  border: 1px solid var(--seam-lt);
  color: var(--mist); font-size: .78rem; font-weight: 400;
  letter-spacing: .06em; text-decoration: none;
  transition: border-color .2s, color .2s;
}
.btn-outline:hover { border-color: var(--clay); color: var(--clay); }

.hero-stats {
  position: absolute; right: 5vw; bottom: 9vh; z-index: 3;
  display: flex; flex-direction: column; gap: 1.6rem;
  opacity: 0; animation: fadeUp .8s ease forwards 1s;
}
.hero-stat { text-align: right; }
.hs-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 500;
  color: var(--clay); line-height: 1;
}
.hs-lbl {
  font-size: .65rem; font-weight: 400;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--dust); margin-top: .25rem;
}

.scroll-nudge {
  position: absolute; bottom: 2.5rem; left: 5.5vw; z-index: 3;
  display: flex; align-items: center; gap: .7rem;
  font-size: .65rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--dust); opacity: 0; animation: fadeUp .8s ease forwards 1.1s;
}
.scroll-track {
  width: 28px; height: 1px;
  background: var(--seam); overflow: hidden; position: relative;
}
.scroll-track::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%; background: var(--clay);
  animation: scanLine 2.2s ease-in-out infinite 1.4s;
}
@keyframes scanLine { 0% { left: -100%; } 100% { left: 100%; } }

/* ─── MARQUEE ─────────────────────────────────────────────────────────── */
.marquee-bar {
  background: var(--seam);
  border-bottom: 1px solid var(--seam-lt);
  padding: .7rem 0; overflow: hidden; white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: march 22s linear infinite;
}
@keyframes march { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.mi {
  display: inline-flex; align-items: center; gap: .9rem;
  margin-right: 1.8rem;
  font-size: .72rem; font-weight: 400;
  letter-spacing: .12em; text-transform: uppercase; color: var(--mist);
}
.mi-sep { width: 3px; height: 3px; background: var(--clay); border-radius: 50%; opacity: .7; }

/* ─── SCROLL REVEAL ───────────────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity .75s cubic-bezier(.16, 1, .3, 1),
              transform .75s cubic-bezier(.16, 1, .3, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

/* ─── SHARED SECTION STYLES ───────────────────────────────────────────── */
section { padding: 7.5rem 5vw; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .7rem;
  font-size: .7rem; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--clay); margin-bottom: 1.1rem;
}
.eyebrow::before { content: ''; width: 18px; height: 1px; background: var(--clay); }

.sh {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  line-height: 1.15; letter-spacing: -.01em;
  color: var(--white); margin-bottom: 1.5rem;
}
.sh em { font-style: italic; color: var(--clay); }

/* ─── ABOUT ───────────────────────────────────────────────────────────── */
#about { background: var(--ink-mid); }

.about-g {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5.5rem; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-main {
  width: 100%; height: 520px; object-fit: cover; display: block;
  filter: brightness(.82) saturate(.85);
  transition: filter .5s;
}
.about-img-wrap:hover .about-img-main { filter: brightness(.96) saturate(1); }
.about-img-frame {
  position: absolute;
  top: 1.2rem; left: 1.2rem; right: -1.2rem; bottom: -1.2rem;
  border: 1px solid var(--seam-lt);
  pointer-events: none; transition: border-color .4s;
}
.about-img-wrap:hover .about-img-frame { border-color: rgba(196, 96, 58, .35); }
.about-img-badge {
  position: absolute; bottom: -1.2rem; right: -1.2rem;
  width: 80px; height: 80px;
  background: var(--clay);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; z-index: 2;
}
.badge-n {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 500;
  color: var(--white); line-height: 1;
}
.badge-l {
  font-size: .5rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
}
.about-text p { font-size: .93rem; color: var(--mist); margin-bottom: 1.1rem; line-height: 1.8; }

.stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid var(--seam);
}
.st { padding-right: 1.5rem; border-right: 1px solid var(--seam); }
.st:last-child { border-right: none; padding-right: 0; padding-left: 1.5rem; }
.st:nth-child(2) { padding-left: 1.5rem; }
.st-n {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem; font-weight: 500;
  color: var(--clay); line-height: 1; display: block;
}
.st-l {
  font-size: .65rem; font-weight: 400;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--dust); margin-top: .3rem; display: block;
}

/* ─── SERVICES ────────────────────────────────────────────────────────── */
#services { background: var(--ink); }

.srv-wrap { max-width: 1180px; margin: 0 auto; }
.srv-head {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 3.5rem; gap: 2rem;
}
.srv-note { font-size: .85rem; color: var(--dust); max-width: 260px; text-align: right; flex-shrink: 0; }

.srv-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--seam);
}
.srv-item {
  padding: 2.2rem 2rem;
  border-right: 1px solid var(--seam);
  border-bottom: 1px solid var(--seam);
  position: relative; overflow: hidden;
  transition: background .3s;
}
.srv-item:nth-child(3n)                                      { border-right: none; }
.srv-item:nth-child(4), .srv-item:nth-child(5), .srv-item:nth-child(6) { border-bottom: none; }
.srv-item::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--clay) 0%, transparent 100%);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s cubic-bezier(.16, 1, .3, 1);
}
.srv-item:hover::after  { transform: scaleX(1); }
.srv-item:hover         { background: rgba(196, 96, 58, .04); }

.srv-n {
  font-size: .58rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--seam-lt); margin-bottom: 1.4rem; display: block;
  transition: color .3s;
}
.srv-item:hover .srv-n { color: var(--clay); }
.srv-icon { font-size: 1.4rem; margin-bottom: .9rem; display: block; transition: transform .35s; }
.srv-item:hover .srv-icon { transform: translateY(-3px); }
.srv-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 400;
  color: var(--white); margin-bottom: .65rem;
}
.srv-desc { font-size: .83rem; color: var(--dust); line-height: 1.75; }

/* ─── GALLERY ─────────────────────────────────────────────────────────── */
#gallery { padding: 0; background: var(--ink-mid); }

.gal-header { padding: 5rem 5vw 3rem; }
.gal-panels { display: grid; grid-template-columns: 1fr 1fr; }
.gal-panel {
  position: relative; overflow: hidden; height: 560px; cursor: none;
}
.gal-panel img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: brightness(.58) saturate(.75);
  transition: transform .9s cubic-bezier(.16, 1, .3, 1), filter .5s;
}
.gal-panel:hover img { transform: scale(1.05); filter: brightness(.78) saturate(1); }
.gal-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2.2rem 2rem;
  background: linear-gradient(to top, rgba(13, 15, 20, .88) 0%, transparent 100%);
  transform: translateY(14px); opacity: 0;
  transition: transform .4s ease, opacity .4s ease;
}
.gal-panel:hover .gal-info { transform: translateY(0); opacity: 1; }
.gal-label {
  font-size: .65rem; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--clay); margin-bottom: .35rem;
}
.gal-caption {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 400; color: var(--white);
}

/* ─── REVIEWS ─────────────────────────────────────────────────────────── */
#reviews { background: var(--ink-soft); }

.rev-wrap { max-width: 1180px; margin: 0 auto; }
.rev-intro {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 3rem; gap: 2rem; flex-wrap: wrap;
}
.rev-badge {
  display: flex; align-items: center; gap: .65rem;
  padding: .6rem 1.1rem;
  border: 1px solid var(--seam-lt); flex-shrink: 0;
}
.rev-badge-stars { color: var(--clay); font-size: .75rem; letter-spacing: .06em; }
.rev-badge-text  { font-size: .7rem; font-weight: 400; letter-spacing: .08em; color: var(--mist); }

.rev-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--seam);
}
.rev-card { background: var(--ink-soft); padding: 2.4rem; transition: background .3s; }
.rev-card:hover { background: var(--ink-mid); }
.rev-qm {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; font-weight: 400; font-style: italic;
  color: var(--clay-dim); line-height: 1;
  margin-bottom: -.3rem; display: block; transition: color .3s;
}
.rev-card:hover .rev-qm { color: var(--clay-mid); }
.rev-txt {
  font-size: .9rem; font-weight: 300; color: var(--mist);
  line-height: 1.8; font-style: italic; margin-bottom: 1.6rem;
}
.rev-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.1rem; border-top: 1px solid var(--seam);
}
.rev-name  { font-size: .78rem; font-weight: 500; letter-spacing: .06em; color: var(--white); }
.rev-stars { font-size: .6rem; letter-spacing: .08em; color: var(--clay); }

/* ─── WHY ─────────────────────────────────────────────────────────────── */
#why { background: var(--ink-mid); }

.why-wrap { max-width: 1180px; margin: 0 auto; }
.why-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  margin-top: 3rem; border: 1px solid var(--seam);
}
.why-cell {
  padding: 2.4rem;
  border-right: 1px solid var(--seam);
  border-bottom: 1px solid var(--seam);
  transition: background .3s;
}
.why-cell:nth-child(2n)                               { border-right: none; }
.why-cell:nth-child(3), .why-cell:nth-child(4)        { border-bottom: none; }
.why-cell:hover { background: rgba(196, 96, 58, .03); }
.why-head { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: .85rem; }
.why-tag {
  font-size: .58rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--clay); padding: .28rem .5rem;
  border: 1px solid var(--clay-dim); flex-shrink: 0; margin-top: .1rem;
}
.why-cell h3 {
  font-family: 'Playfair Display', serif;
  font-size: .98rem; font-weight: 400; color: var(--white);
}
.why-cell p {
  font-size: .84rem; font-weight: 300; color: var(--dust);
  line-height: 1.8; padding-left: calc(1rem + 2.2rem);
}

/* ─── AREAS ───────────────────────────────────────────────────────────── */
#areas { background: var(--ink); }

.areas-wrap {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: start;
}
.areas-text p { font-size: .92rem; color: var(--mist); margin-bottom: .9rem; line-height: 1.8; }
.chips { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 1.8rem; }
.chip {
  font-size: .7rem; font-weight: 400;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .38rem .85rem;
  border: 1px solid var(--seam); color: var(--dust);
  transition: border-color .2s, color .2s, background .2s; cursor: default;
}
.chip:hover { border-color: var(--clay); color: var(--clay); background: var(--clay-dim); }

/* ─── CONTACT ─────────────────────────────────────────────────────────── */
#contact { background: var(--ink-mid); }

.cform-wrap { max-width: 720px; margin: 0 auto; }
.cform-intro { font-size: .9rem; color: var(--dust); margin-bottom: 2.8rem; line-height: 1.8; }

form { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.ff  { grid-column: 1 / -1; }

.field { display: flex; flex-direction: column; gap: .35rem; }
label {
  font-size: .65rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase; color: var(--dust);
}
input, textarea, select {
  background: var(--ink); border: 1px solid var(--seam);
  color: var(--silk); font-family: 'Inter', sans-serif;
  font-size: .88rem; font-weight: 300;
  padding: .8rem 1rem; outline: none;
  transition: border-color .2s, box-shadow .2s;
  appearance: none; -webkit-appearance: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgba(196, 96, 58, .1);
}
input::placeholder, textarea::placeholder { color: var(--seam-lt); }
select option { background: var(--ink-mid); color: var(--silk); }
textarea { resize: vertical; min-height: 115px; }

.fsub { grid-column: 1 / -1; }
.fsub button {
  width: 100%; padding: 1rem;
  background: var(--clay); color: var(--white);
  border: none; font-family: 'Inter', sans-serif;
  font-size: .78rem; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  transition: background .2s, transform .2s, box-shadow .25s;
}
.fsub button:hover {
  background: var(--clay-lt);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(196, 96, 58, .25);
}
.fsub button .arr { transition: transform .25s; }
.fsub button:hover .arr { transform: translateX(3px); }

.fnote {
  grid-column: 1 / -1;
  font-size: .7rem; color: var(--dust);
  text-align: center; opacity: .55; margin-top: .2rem;
}

/* ─── FOOTER ──────────────────────────────────────────────────────────── */
footer {
  background: var(--ink);
  border-top: 1px solid var(--seam);
  padding: 2.2rem 5vw;
  display: flex; justify-content: space-between; align-items: center;
}
.flogo { display: flex; align-items: center; }
.footer-logo-img {
  height: 32px;
  width: auto;
  display: block;
  opacity: 0.7;
  transition: opacity .25s;
}
.flogo:hover .footer-logo-img { opacity: 0.9; }
.fcopy { font-size: .7rem; color: var(--dust); letter-spacing: .05em; }

/* ─── RESPONSIVE ──────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-content { padding: 0 5vw 9vh; }
  .hero-stats   { right: 5vw; }

  .about-g      { grid-template-columns: 1fr; gap: 3.5rem; }
  .about-img-frame { display: none; }

  .srv-grid     { grid-template-columns: 1fr; }
  .srv-item     { border-right: none !important; border-bottom: 1px solid var(--seam) !important; }
  .srv-item:last-child { border-bottom: none !important; }
  .srv-head     { flex-direction: column; align-items: flex-start; }
  .srv-note     { text-align: left; }

  .gal-panels   { grid-template-columns: 1fr; }
  .gal-panel    { height: 360px; }
  .gal-info     { opacity: 1; transform: translateY(0); }

  .rev-grid     { grid-template-columns: 1fr; }

  .why-grid     { grid-template-columns: 1fr; }
  .why-cell     { border-right: none !important; }

  .areas-wrap   { grid-template-columns: 1fr; gap: 3rem; }

  form          { grid-template-columns: 1fr; }
  .ff, .fsub, .fnote { grid-column: 1; }

  .nav-links    { display: none; }

  footer        { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .cursor, .cursor-ring { display: none; }
  .hero-title .word,
  .hero-sub,
  .hero-cta,
  .hero-stats,
  .scroll-nudge {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .reveal            { opacity: 1 !important; transform: none !important; transition: none !important; }
  .marquee-track     { animation: none; }
  .scroll-track::after { animation: none; }
}
