/* ── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: #fff;
  color: #111;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── TOKENS ─────────────────────────────────────────── */
:root {
  --red:    #C8102E;
  --red-dk: #a00d24;
  --black:  #111111;
  --gray:   #444;
  --mid:    #888;
  --line:   #e5e5e5;
  --white:  #ffffff;
  --off:    #f8f8f8;
  --serif:  'Playfair Display', Georgia, serif;
  --sans:   'DM Sans', sans-serif;
  --ease:   cubic-bezier(.25,.46,.45,.94);
  --nav-h:  68px;
}

/* ── NAV ────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  transition: box-shadow .3s var(--ease);
}
#nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.08); }

.nav-brand { display: flex; flex-direction: column; line-height: 1.15; }
.nav-brand-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1rem;
  color: var(--black);
  letter-spacing: .02em;
}
.nav-brand-sub {
  font-size: .55rem;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--red);
}

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--black);
  position: relative;
  padding-bottom: 2px;
  transition: color .22s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width .25s var(--ease);
}
.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after { width: 100%; }

.nav-book {
  display: inline-block;
  padding: 10px 22px;
  background: var(--red);
  color: var(--white);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: background .22s;
  white-space: nowrap;
}
.nav-book:hover { background: var(--red-dk); }

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px; height: 32px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.nav-burger span {
  display: block;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--white);
  border-bottom: 2px solid var(--red);
  padding: 24px 32px 32px;
  z-index: 199;
  flex-direction: column;
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  display: block;
  padding: 14px 0;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 1px solid var(--line);
  transition: color .2s, padding-left .2s;
}
.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer a:hover { color: var(--red); padding-left: 8px; }
.nav-drawer .drawer-book {
  margin-top: 20px;
  display: block;
  text-align: center;
  padding: 14px;
  background: var(--red);
  color: var(--white);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

/* ── HERO ────────────────────────────────────────────── */
#hero {
  margin-top: var(--nav-h);
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  grid-template-columns: 48% 1fr;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 40px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .8s .1s var(--ease) forwards;
}
.hero-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--red); }

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.5vw, 5.2rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--black);
  letter-spacing: -.01em;
  opacity: 0;
  animation: fadeUp .8s .25s var(--ease) forwards;
}
.hero-h1 em { font-style: italic; color: var(--red); }

.hero-rule {
  width: 60px; height: 3px;
  background: var(--red);
  margin: 32px 0;
  opacity: 0;
  animation: fadeUp .8s .38s var(--ease) forwards;
}

.hero-desc {
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.85;
  max-width: 380px;
  opacity: 0;
  animation: fadeUp .8s .5s var(--ease) forwards;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 44px;
  opacity: 0;
  animation: fadeUp .8s .62s var(--ease) forwards;
}
.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--black);
  color: var(--white);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: background .22s, transform .18s;
}
.btn-solid:hover { background: var(--red); transform: translateY(-2px); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: 2px solid var(--black);
  color: var(--black);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: border-color .22s, color .22s, transform .18s;
}
.btn-outline:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }

.hero-images {
  position: relative;
  overflow: hidden;
  background: var(--black);
}
.hero-grid {
  display: grid;
  grid-template-columns: 60% 40%;
  grid-template-rows: 55% 45%;
  height: 100%;
  gap: 3px;
}
.hero-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .65s var(--ease), filter .4s;
  filter: brightness(.9) saturate(.9);
}
.hero-grid img:hover { transform: scale(1.04); filter: brightness(1) saturate(1.05); }
.hi-main { grid-row: 1/3; grid-column: 1; }
.hi-a    { grid-row: 1;   grid-column: 2; }
.hi-b    { grid-row: 2;   grid-column: 2; }
.hero-images::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 5px;
  background: var(--red);
}

/* ── MARQUEE ─────────────────────────────────────────── */
.marquee {
  background: var(--black);
  overflow: hidden;
  padding: 14px 0;
  border-top: 3px solid var(--red);
}
.marquee-inner {
  display: inline-flex;
  animation: scroll 20s linear infinite;
  white-space: nowrap;
}
.marquee-inner:hover { animation-play-state: paused; }
.m-item {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #aaa;
  padding: 0 32px;
}
.m-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--red); flex-shrink: 0; }

/* ── SECTION SHARED ──────────────────────────────────── */
.s-eyebrow {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.s-eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--red); flex-shrink: 0; }
.s-h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.12;
  color: var(--black);
}
.s-h2 em { font-style: italic; color: var(--red); }

/* ── PORTFOLIO ───────────────────────────────────────── */
#portfolio { padding: 100px 40px; background: var(--white); }

.port-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 24px;
  flex-wrap: wrap;
}
.port-header .s-h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); }

.view-all {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: gap .22s;
}
.view-all::after { content: '→'; font-size: .9rem; }
.view-all:hover { gap: 14px; }

.port-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.p-card { position: relative; overflow: hidden; background: var(--off); }
.p-card:nth-child(1) { aspect-ratio: 3/4.2; }
.p-card:nth-child(2) { aspect-ratio: 3/4.2; margin-top: 40px; }
.p-card:nth-child(3) { aspect-ratio: 3/4.2; }
.p-card:nth-child(4) { aspect-ratio: 3/4.2; margin-top: 40px; }

.p-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease), filter .45s;
  filter: saturate(.85) brightness(.92);
}
.p-card:hover img { transform: scale(1.06); filter: saturate(1.05) brightness(.95); }

.p-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.1) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 22px;
}
.p-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: .75rem;
  color: var(--red);
  margin-bottom: 6px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .3s, transform .3s;
}
.p-card:hover .p-num { opacity: 1; transform: none; }
.p-cat {
  font-size: .55rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 6px;
  opacity: 0;
  transition: opacity .3s .05s;
}
.p-card:hover .p-cat { opacity: 1; }
.p-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
}

/* ── ABOUT ───────────────────────────────────────────── */
#about {
  padding: 100px 40px;
  background: var(--off);
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 80px;
  align-items: center;
}

.about-vis { position: relative; }
.about-img-main { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-img-float {
  position: absolute;
  bottom: -32px; right: -32px;
  width: 48%; aspect-ratio: 1;
  object-fit: cover;
  border: 6px solid var(--white);
  box-shadow: 0 8px 40px rgba(0,0,0,.14);
}
.about-badge {
  position: absolute;
  top: 24px; left: -18px;
  background: var(--red);
  color: var(--white);
  font-size: .55rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 10px 12px;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}
.about-txt { position: relative; padding-bottom: 40px; }
.about-txt .s-h2 { font-size: clamp(2rem, 3vw, 3rem); margin-bottom: 28px; }
.about-body { font-size: .87rem; color: var(--gray); line-height: 1.9; margin-bottom: 18px; }
.about-divider { width: 48px; height: 3px; background: var(--red); margin: 36px 0; }
.stats { display: flex; gap: 44px; flex-wrap: wrap; }
.stat-n {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 400;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-l {
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--mid);
}

/* ── INVESTMENT ──────────────────────────────────────── */
#investment { padding: 100px 40px; background: var(--white); }
#investment .s-h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); margin-bottom: 60px; }

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 2px solid var(--line);
  max-width: 980px;
  margin: 0 auto;
}
.pc {
  padding: 52px 44px;
  border-right: 2px solid var(--line);
  position: relative;
  transition: background .25s;
}
.pc:last-child { border-right: none; }
.pc:hover { background: var(--off); }
.pc.featured { background: var(--black); color: var(--white); }
.pc.featured:hover { background: #1a1a1a; }

.pc-badge {
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--red);
  color: var(--white);
  font-size: .52rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 5px 16px;
  white-space: nowrap;
}
.pc-type {
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pc-type::before { content: ''; width: 18px; height: 2px; background: var(--red); }

.pc-price {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 6px;
}
.pc.featured .pc-price { color: var(--white); }
.pc:not(.featured) .pc-price { color: var(--black); }
.pc-price sup { font-size: 1.5rem; vertical-align: super; margin-right: 2px; }

.pc-dur { font-size: .72rem; color: var(--mid); margin-bottom: 32px; letter-spacing: .04em; }
.pc.featured .pc-dur { color: #888; }

.pc-divider { height: 1px; background: var(--line); margin-bottom: 28px; }
.pc.featured .pc-divider { background: rgba(255,255,255,.12); }

.pc-list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 40px; }
.pc-list li {
  font-size: .78rem;
  color: var(--gray);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.pc.featured .pc-list li { color: rgba(255,255,255,.75); }
.pc-list li::before {
  content: '';
  width: 14px; height: 2px;
  background: var(--red);
  flex-shrink: 0;
  margin-top: .5em;
}

.pc-btn {
  display: block;
  text-align: center;
  padding: 13px 24px;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: all .22s;
}
.pc:not(.featured) .pc-btn { border: 2px solid var(--line); color: var(--black); }
.pc:not(.featured) .pc-btn:hover { border-color: var(--red); color: var(--red); }
.pc.featured .pc-btn { background: var(--red); color: var(--white); }
.pc.featured .pc-btn:hover { background: var(--red-dk); }

/* ── CONTACT ─────────────────────────────────────────── */
#contact {
  padding: 100px 40px;
  background: var(--off);
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 80px;
  align-items: start;
}
.contact-left .s-h2 { font-size: clamp(2rem, 3vw, 3.2rem); margin-bottom: 24px; }
.c-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.72;
  padding-left: 20px;
  border-left: 3px solid var(--red);
  margin-bottom: 24px;
}
.c-blurb { font-size: .82rem; color: var(--mid); line-height: 1.85; }

.c-form { display: flex; flex-direction: column; gap: 18px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label {
  font-size: .57rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--mid);
}
.field input,
.field select,
.field textarea {
  background: var(--white);
  border: 2px solid var(--line);
  font-family: var(--sans);
  font-size: .84rem;
  font-weight: 300;
  color: var(--black);
  padding: 12px 15px;
  outline: none;
  transition: border-color .22s, box-shadow .22s;
  -webkit-appearance: none; appearance: none;
  border-radius: 0;
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,16,46,.08);
}
.field input::placeholder,
.field textarea::placeholder { color: #ccc; }
.field textarea { resize: none; height: 110px; }

.f-foot {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.submit-btn {
  padding: 14px 36px;
  background: var(--red);
  color: var(--white);
  border: none;
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .22s, transform .18s;
  white-space: nowrap;
}
.submit-btn:hover { background: var(--red-dk); transform: translateY(-2px); }
.submit-btn:disabled { background: #888; cursor: default; transform: none; }
.f-note { font-size: .65rem; color: var(--mid); }
.f-success {
  display: none;
  padding: 14px 20px;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #2e7d32;
  font-size: .78rem;
  font-weight: 500;
}

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--black);
  padding: 52px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.f-brand-name {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
}
.f-brand-sub {
  font-size: .52rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 4px;
}
.f-links { display: flex; gap: 28px; list-style: none; justify-content: center; }
.f-links a {
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #888;
  transition: color .22s;
}
.f-links a:hover { color: var(--red); }
.f-copy { font-size: .57rem; color: #555; letter-spacing: .06em; text-align: right; }

/* ── REVEAL ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── MOBILE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  :root { --nav-h: 60px; }

  #nav { padding: 0 20px; }
  .nav-links, .nav-book { display: none; }
  .nav-burger { display: flex; }

  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { padding: 48px 24px 52px; }
  .hero-images { height: 56vw; min-height: 260px; }

  .port-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .p-card:nth-child(odd)  { margin-top: 0; }
  .p-card:nth-child(even) { margin-top: 24px; }
  .p-card { aspect-ratio: 3/4 !important; }
  #portfolio { padding: 72px 24px; }
  .port-header { flex-direction: column; align-items: flex-start; }

  #about { grid-template-columns: 1fr; padding: 72px 24px; gap: 52px; }
  .about-img-float { display: none; }
  .about-badge { left: 0; }

  .price-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .pc { border-right: none; border-bottom: 2px solid var(--line); }
  .pc.featured { border-bottom: 2px solid rgba(255,255,255,.1); }
  .pc:last-child { border-bottom: none; }
  #investment { padding: 72px 24px; }

  #contact { grid-template-columns: 1fr; padding: 72px 24px; gap: 52px; }
  .f-row { grid-template-columns: 1fr; }
  .f-foot { flex-direction: column; align-items: flex-start; }

  footer { grid-template-columns: 1fr; text-align: center; padding: 44px 24px; gap: 20px; }
  .f-links { flex-wrap: wrap; justify-content: center; }
  .f-copy { text-align: center; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 2.4rem; }
  .hero-btns { flex-direction: column; }
  .btn-solid, .btn-outline { text-align: center; justify-content: center; }
  .stats { gap: 28px; }
}
