/* ============================================================
   FULL CROWN ENERGY — shared styles
   Aesthetic: glamour-Americana. Verdigris patina + brass gold
   + ink navy on warm cream. High-contrast fashion serif display.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,500;0,6..96,600;0,6..96,700;0,6..96,800;1,6..96,500;1,6..96,600&family=Anton&family=Karla:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --patina:        #2f9c8a;
  --patina-deep:   #166b5e;
  --patina-ink:    #0c352f;
  --brass:         #c9a227;
  --brass-light:   #e6c25c;
  --copper:        #b06a3c;
  --ink:           #11202b;
  --ink-soft:      #21333f;
  --cream:         #f6efe0;
  --cream-deep:    #efe5d0;
  --paper:         #fbf6ea;
  --line:          rgba(17, 32, 43, 0.14);

  --serif: 'Bodoni Moda', Georgia, serif;
  --poster: 'Anton', Impact, sans-serif;
  --body: 'Karla', system-ui, sans-serif;

  --maxw: 1240px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background-color: var(--cream);
  background-image:
    radial-gradient(circle at 12% -10%, rgba(47, 156, 138, 0.10), transparent 45%),
    radial-gradient(circle at 92% 8%, rgba(201, 162, 39, 0.10), transparent 40%);
  background-attachment: fixed;
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* faint paper grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ----------------------------------------------------------------
   NAV
   ---------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 239, 224, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  font-family: var(--poster);
  font-size: clamp(18px, 2.4vw, 24px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--patina-ink);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.brand .torch { color: var(--brass); }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-family: var(--body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 9px 16px;
  border-radius: 999px;
  position: relative;
  transition: color 0.3s var(--ease), background 0.3s var(--ease);
}
.nav-links a:hover { color: var(--patina-deep); background: rgba(47, 156, 138, 0.10); }
.nav-links a.active { color: var(--paper); background: var(--patina-deep); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--ink); margin: 5px 0; transition: 0.3s; }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 100%; right: 0; left: 0;
    flex-direction: column; align-items: stretch;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 12px 20px 20px; gap: 4px;
    max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
    padding-top: 0; padding-bottom: 0;
  }
  .nav-links.open { max-height: 420px; padding-top: 12px; padding-bottom: 20px; }
  .nav-links a { padding: 13px 16px; }
}

/* ----------------------------------------------------------------
   MARQUEE
   ---------------------------------------------------------------- */
.marquee {
  background: var(--patina-ink);
  color: var(--cream);
  border-top: 2px solid var(--brass);
  border-bottom: 2px solid var(--brass);
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
}
.marquee-track {
  display: inline-block;
  animation: scroll 38s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span {
  font-family: var(--poster);
  font-size: clamp(16px, 2.2vw, 24px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 4px;
}
.marquee .dot { color: var(--brass); padding: 0 18px; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ----------------------------------------------------------------
   HERO
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  padding: clamp(60px, 9vw, 120px) 0 clamp(40px, 6vw, 80px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}
.eyebrow {
  font-family: var(--body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--patina-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.eyebrow::before { content: ""; width: 40px; height: 2px; background: var(--brass); }
.hero h1 {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(46px, 9vw, 116px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-transform: uppercase;
}
.hero h1 em {
  font-style: italic;
  font-weight: 600;
  color: var(--patina-deep);
  display: block;
}
.hero .lede {
  font-size: clamp(17px, 1.5vw, 20px);
  max-width: 44ch;
  margin: 26px 0 34px;
  color: var(--ink-soft);
}
.hero-portrait {
  position: relative;
}
.hero-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 22px 22px 0 var(--patina-deep), 0 30px 60px rgba(17,32,43,0.25);
  filter: saturate(1.04);
}
.hero-portrait .credit {
  position: absolute;
  bottom: 14px; left: 14px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  background: rgba(12,53,47,0.78); color: var(--cream);
  padding: 6px 12px; border-radius: 999px; font-weight: 600;
}

/* ----------------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.btn-solid { background: var(--ink); color: var(--paper); }
.btn-solid:hover { background: var(--patina-deep); border-color: var(--patina-deep); transform: translateY(-3px); box-shadow: 0 14px 30px rgba(22,107,94,0.4); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--brass); border-color: var(--brass); transform: translateY(-3px); }
.btn .arrow { transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }
.btn-row { display: flex; flex-wrap: wrap; gap: 16px; }

/* ----------------------------------------------------------------
   SECTIONS
   ---------------------------------------------------------------- */
section { position: relative; }
.section { padding: clamp(56px, 8vw, 110px) 0; }
.section-label {
  font-family: var(--poster);
  font-size: clamp(13px, 1.4vw, 15px);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(34px, 5.5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.section-title em { font-style: italic; color: var(--patina-deep); }

.band-patina { background: var(--patina-ink); color: var(--cream); }
.band-patina .section-title { color: var(--cream); }
.band-patina .section-label { color: var(--brass-light); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}
.prose p { font-size: clamp(16px, 1.3vw, 19px); color: var(--ink-soft); margin-bottom: 18px; }
.band-patina .prose p { color: rgba(246,239,224,0.86); }

/* feature image with frame */
.framed {
  border-radius: 4px;
  object-fit: cover;
  width: 100%;
  box-shadow: 0 26px 50px rgba(17,32,43,0.22);
}
.framed-stack { position: relative; }
.framed-stack::after {
  content: "";
  position: absolute; inset: -16px -16px auto auto;
  width: 70%; height: 70%; z-index: -1;
  border: 2px solid var(--brass); border-radius: 4px;
}

/* ----------------------------------------------------------------
   PROJECTS
   ---------------------------------------------------------------- */
.project { padding: clamp(34px, 5vw, 60px) 0; border-bottom: 1px solid var(--line); }
.project:last-child { border-bottom: 0; }
.project-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; margin-bottom: 28px;
}
.project-name {
  font-family: var(--serif);
  font-weight: 700; font-style: italic;
  font-size: clamp(26px, 3.6vw, 44px);
  color: var(--ink);
}
.project-tag {
  font-family: var(--body); font-weight: 700; font-size: 12px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--patina-deep);
}
.photo-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.photo-row img {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: 3px;
  filter: saturate(1.03);
  transition: transform 0.5s var(--ease), filter 0.5s var(--ease);
}
.photo-row img:hover { transform: translateY(-6px) scale(1.02); filter: saturate(1.15); }

/* ----------------------------------------------------------------
   GALLERY GRID (masonry-ish)
   ---------------------------------------------------------------- */
.gallery-grid { columns: 3; column-gap: 16px; }
.gallery-grid img {
  width: 100%; margin-bottom: 16px; border-radius: 3px;
  break-inside: avoid;
  box-shadow: 0 12px 26px rgba(17,32,43,0.16);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.gallery-grid img:hover { transform: translateY(-6px); box-shadow: 0 22px 40px rgba(17,32,43,0.28); }

/* ----------------------------------------------------------------
   CTA / CONTACT
   ---------------------------------------------------------------- */
.cta {
  position: relative;
  background: var(--patina-ink);
  color: var(--cream);
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(201,162,39,0.22), transparent 50%);
}
.cta .wrap { position: relative; text-align: center; padding-top: clamp(60px,8vw,110px); padding-bottom: clamp(60px,8vw,110px); }
.cta h2 {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(36px, 6vw, 78px); line-height: 1; letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.cta h2 em { font-style: italic; color: var(--brass-light); }
.cta p { max-width: 56ch; margin: 0 auto 36px; color: rgba(246,239,224,0.84); font-size: clamp(16px,1.4vw,19px); }
.cta .btn-solid { background: var(--brass); color: var(--ink); border-color: var(--brass); }
.cta .btn-solid:hover { background: var(--brass-light); border-color: var(--brass-light); box-shadow: 0 14px 30px rgba(201,162,39,0.4); }

/* contact cards */
.contact-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  max-width: 760px; margin: 44px auto 0;
}
.ccard {
  background: rgba(246,239,224,0.06);
  border: 1px solid rgba(246,239,224,0.18);
  border-radius: 6px; padding: 34px 28px; text-align: left;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.ccard:hover { transform: translateY(-5px); border-color: var(--brass); background: rgba(246,239,224,0.10); }
.ccard .k { font-family: var(--poster); letter-spacing: 0.2em; text-transform: uppercase; font-size: 13px; color: var(--brass-light); margin-bottom: 10px; }
.ccard .v { font-family: var(--serif); font-size: clamp(18px, 2.2vw, 24px); font-weight: 600; word-break: break-word; }

/* ----------------------------------------------------------------
   PAGE HEADER (interior pages)
   ---------------------------------------------------------------- */
.page-head { padding: clamp(56px, 8vw, 100px) 0 clamp(28px, 4vw, 48px); text-align: center; }
.page-head h1 {
  font-family: var(--serif); font-weight: 800; text-transform: uppercase;
  font-size: clamp(44px, 9vw, 110px); line-height: 0.95; letter-spacing: -0.01em; color: var(--ink);
}
.page-head h1 em { font-style: italic; font-weight: 600; color: var(--patina-deep); }
.page-head .sub { max-width: 60ch; margin: 22px auto 0; color: var(--ink-soft); font-size: clamp(16px,1.4vw,19px); }

/* ----------------------------------------------------------------
   FOOTER
   ---------------------------------------------------------------- */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 64px 0 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px;
  padding-bottom: 44px; border-bottom: 1px solid rgba(246,239,224,0.16);
}
.footer .brand-big {
  font-family: var(--serif); font-weight: 800; text-transform: uppercase;
  font-size: clamp(30px,4vw,52px); line-height: 0.95; color: var(--cream);
}
.footer .brand-big .torch { color: var(--brass); }
.footer .tagline { margin-top: 16px; color: rgba(246,239,224,0.7); max-width: 36ch; }
.footer h4 {
  font-family: var(--poster); letter-spacing: 0.2em; text-transform: uppercase;
  font-size: 13px; color: var(--brass-light); margin-bottom: 18px;
}
.footer a.fl { display: block; color: rgba(246,239,224,0.82); padding: 6px 0; transition: color 0.3s, padding-left 0.3s; }
.footer a.fl:hover { color: var(--brass-light); padding-left: 8px; }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding-top: 28px; font-size: 13px; letter-spacing: 0.06em; color: rgba(246,239,224,0.55);
}

/* ----------------------------------------------------------------
   REVEAL ANIMATION
   ---------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ----------------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-portrait { order: -1; max-width: 460px; }
  .split { grid-template-columns: 1fr; }
  .photo-row { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { columns: 2; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-cards { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .gallery-grid { columns: 1; }
  .photo-row { grid-template-columns: repeat(2, 1fr); }
}
