/* Sun Signs — shared styles */
:root {
  --navy: #242D4F;
  --navy-deep: #1A1F36;
  --navy-soft: #2E3964;
  --gold: #E39B34;
  --gold-warm: #C7822A;
  --bone: #F5F2EC;
  --paper: #FAF8F3;
  --ink: #14182A;
  --line: rgba(36, 45, 79, 0.14);
  --line-strong: rgba(36, 45, 79, 0.32);
  --shadow-lg: 0 30px 60px -20px rgba(20, 24, 42, 0.35), 0 12px 24px -10px rgba(20, 24, 42, 0.2);
  --shadow-md: 0 12px 28px -10px rgba(20, 24, 42, 0.25);
  --max: 1280px;
  --pad: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter Tight", "Inter", -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: "Fraunces", "Playfair Display", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin: 0;
  color: var(--navy);
  text-wrap: balance;
}
h1 { font-size: clamp(44px, 7vw, 96px); font-weight: 400; }
h2 { font-size: clamp(32px, 4.5vw, 56px); }
h3 { font-size: clamp(22px, 2.4vw, 30px); }

p { margin: 0 0 1em; text-wrap: pretty; }
a { color: var(--navy); text-decoration: none; }

img { max-width: 100%; display: block; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

/* Eyebrow */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: "Inter Tight", sans-serif;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-warm);
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: currentColor;
}

/* Header / Nav */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--navy);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 18px var(--pad);
  max-width: var(--max); margin: 0 auto;
}
.nav-logo {
  display: flex; align-items: center;
  height: 38px;
}
.nav-logo img { height: 100%; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 6px;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  display: inline-block;
  padding: 10px 16px;
  font-size: 15px; font-weight: 500;
  color: rgba(255,255,255,0.78);
  border-radius: 999px;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.06); }
.nav-links a.active { color: var(--gold); }
.nav-cta {
  padding: 11px 20px;
  background: var(--gold);
  color: var(--navy) !important;
  border-radius: 999px;
  font-weight: 600 !important;
  font-size: 14px !important;
}
.nav-cta:hover { background: #f0a838 !important; }

.nav-toggle { display: none; }

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 74px; left: 0; right: 0;
    background: var(--navy);
    padding: 16px var(--pad) 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    align-items: stretch; gap: 4px;
  }
  .nav-links.open a { padding: 14px 18px; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.2);
    background: transparent; color: #fff; border-radius: 8px; cursor: pointer;
  }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  white-space: nowrap;
  font-family: "Inter Tight", sans-serif;
  font-weight: 600; font-size: 15px;
  letter-spacing: 0.01em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s, color .2s, border-color .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: #f0a838; }
.btn-ghost {
  background: transparent; color: var(--navy);
  border-color: var(--line-strong);
}
.btn-ghost:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-on-dark { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.btn-on-dark:hover { background: #fff; color: var(--navy); }
.btn .arr { transition: transform .2s; }
.btn:hover .arr { transform: translateX(3px); }

/* Hero */
.hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: clamp(60px, 9vw, 120px) var(--pad) clamp(60px, 9vw, 120px);
  max-width: var(--max);
  margin: 0 auto;
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding-bottom: 60px; }
}
.hero h1 { color: #fff; }
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.hero-lede {
  margin-top: 28px;
  font-size: clamp(17px, 1.4vw, 19px);
  color: rgba(255,255,255,0.78);
  max-width: 46ch;
}
.hero-actions { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }

.hero-meta {
  display: flex; gap: 36px; margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-meta div { display: flex; flex-direction: column; }
.hero-meta .num {
  font-family: "Fraunces", serif;
  font-size: 38px; font-weight: 400; color: #fff; line-height: 1;
}
.hero-meta .lbl {
  margin-top: 8px;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.hero-image {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image::after {
  content: ""; position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}
.hero-tag {
  position: absolute; left: -1px; bottom: 24px;
  background: var(--gold); color: var(--navy);
  padding: 10px 18px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
}

/* Sections */
.section { padding: clamp(72px, 10vw, 128px) 0; }
.section-dark { background: var(--navy); color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-bone { background: var(--bone); }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}
.section-head .eyebrow { margin-bottom: 16px; }
.section-head .lede {
  color: rgba(20,24,42,0.7);
  font-size: 18px;
  max-width: 50ch;
}
.section-dark .section-head .lede { color: rgba(255,255,255,0.7); }
@media (max-width: 760px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
}

/* Services row (home) */
.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.section-dark .services-list { border-top-color: rgba(255,255,255,0.12); }
.service-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 24px;
  align-items: start;
  padding: 32px 8px;
  border-bottom: 1px solid var(--line);
  transition: background .2s;
}
.section-dark .service-row { border-bottom-color: rgba(255,255,255,0.12); }
.service-row:hover { background: rgba(36,45,79,0.03); }
.section-dark .service-row:hover { background: rgba(255,255,255,0.04); }
.service-row .num {
  font-family: "Fraunces", serif;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.service-row h3 { margin-bottom: 8px; }
.service-row p { font-size: 15px; color: rgba(20,24,42,0.7); margin: 0; max-width: 42ch; }
.section-dark .service-row p { color: rgba(255,255,255,0.7); }
.service-row .arr-icon { color: var(--gold); margin-top: 4px; }

@media (max-width: 880px) {
  .services-list { grid-template-columns: 1fr; }
  .service-row { padding: 24px 4px; grid-template-columns: 50px 1fr auto; gap: 16px; }
}

/* Featured work */
.work-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-auto-rows: 1fr;
  gap: 16px;
}
.work-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: #2A2F44;
  aspect-ratio: 4/3;
}
.work-item.tall { grid-row: span 2; aspect-ratio: 4/5; }
.work-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.work-item:hover img { transform: scale(1.04); }
.work-item .meta {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 24px;
  color: #fff;
  background: linear-gradient(to top, rgba(20,24,42,0.85), rgba(20,24,42,0) 80%);
  display: flex; justify-content: space-between; align-items: end;
  gap: 16px;
}
.work-item .meta h4 {
  font-family: "Fraunces", serif;
  font-size: 22px; font-weight: 400;
  color: #fff;
  margin: 0;
}
.work-item .meta .cat {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
  display: block;
}
@media (max-width: 760px) {
  .work-grid { grid-template-columns: 1fr; }
  .work-item.tall { grid-row: auto; aspect-ratio: 4/3; }
}

/* Process */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.step {
  padding-top: 24px;
  border-top: 2px solid var(--gold);
}
.step .num {
  font-family: "Fraunces", serif;
  font-size: 14px; color: var(--gold-warm);
  letter-spacing: 0.05em;
}
.step h4 {
  font-family: "Fraunces", serif;
  font-size: 22px; font-weight: 500;
  color: var(--navy);
  margin: 8px 0 12px;
}
.step p { font-size: 15px; color: rgba(20,24,42,0.7); margin: 0; }
@media (max-width: 760px) {
  .process { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 480px) {
  .process { grid-template-columns: 1fr; }
}

/* Big quote / since 1984 */
.heritage {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.heritage-figure {
  font-family: "Fraunces", serif;
  font-size: clamp(120px, 18vw, 220px);
  font-weight: 300;
  line-height: 0.9;
  color: var(--navy);
  letter-spacing: -0.04em;
}
.heritage-figure span { color: var(--gold); }
.heritage-figure small {
  display: block;
  font-size: 14px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--navy);
  margin-top: 24px;
  font-family: "Inter Tight", sans-serif;
  font-weight: 500;
}
.heritage-text p { font-size: 19px; color: rgba(20,24,42,0.8); }
.heritage-text p + p { margin-top: 1em; }
@media (max-width: 880px) {
  .heritage { grid-template-columns: 1fr; gap: 32px; }
}

/* CTA strip */
.cta-strip {
  background: var(--navy);
  color: #fff;
  padding: clamp(64px, 8vw, 96px) var(--pad);
}
.cta-strip-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto;
  gap: 40px; align-items: center;
}
.cta-strip h2 { color: #fff; max-width: 18ch; }
.cta-strip .row { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 760px) {
  .cta-strip-inner { grid-template-columns: 1fr; }
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 72px var(--pad) 40px;
}
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
.site-footer h5 {
  font-family: "Inter Tight", sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #fff;
  margin: 0 0 16px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; font-size: 15px; }
.site-footer a { color: rgba(255,255,255,0.7); }
.site-footer a:hover { color: var(--gold); }
.footer-logo { height: 32px; margin-bottom: 18px; display: block; }
.footer-logo img { height: 100%; }
.footer-about { font-size: 15px; max-width: 36ch; }
.footer-bottom {
  max-width: var(--max); margin: 56px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-size: 13px; color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
}
.social {
  display: flex; gap: 8px;
}
.social a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  transition: border-color .2s, background .2s, color .2s;
}
.social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* Page header (interior) */
.page-head {
  background: var(--navy);
  color: #fff;
  padding: clamp(72px, 10vw, 140px) var(--pad) clamp(56px, 8vw, 96px);
}
.page-head-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: end;
}
.page-head h1 { color: #fff; }
.page-head .lede {
  font-size: 19px;
  color: rgba(255,255,255,0.75);
  max-width: 50ch;
}
.page-head .crumbs {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}
.page-head .crumbs a { color: rgba(255,255,255,0.5); }
.page-head .crumbs a:hover { color: var(--gold); }
@media (max-width: 760px) {
  .page-head-inner { grid-template-columns: 1fr; gap: 24px; }
}

/* Gallery */
.gallery-filter {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.gallery-filter button {
  padding: 9px 18px;
  font-family: inherit; font-size: 13px; font-weight: 500;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  cursor: pointer;
  color: var(--navy);
  letter-spacing: 0.04em;
  transition: all .2s;
}
.gallery-filter button:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.gallery-filter button.active { background: var(--navy); color: #fff; border-color: var(--navy); }

.gallery {
  columns: 3;
  column-gap: 16px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: #ddd;
}
.gallery-item img { width: 100%; transition: transform .6s ease; }
.gallery-item:hover img { transform: scale(1.03); }
.gallery-item .label {
  position: absolute; left: 16px; bottom: 16px; right: 16px;
  color: #fff;
  font-family: "Fraunces", serif;
  font-size: 18px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  opacity: 0; transform: translateY(8px);
  transition: opacity .25s, transform .25s;
}
.gallery-item:hover .label { opacity: 1; transform: translateY(0); }
.gallery-item.placeholder {
  aspect-ratio: 4/3;
  background: repeating-linear-gradient(45deg, #eae5d9, #eae5d9 12px, #e0dccf 12px, #e0dccf 24px);
  display: flex; align-items: center; justify-content: center;
  color: rgba(36,45,79,0.4);
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
}
.gallery-item.placeholder.tall { aspect-ratio: 3/4; }

@media (max-width: 880px) { .gallery { columns: 2; } }
@media (max-width: 540px) { .gallery { columns: 1; } }

/* Services page */
.svc-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start;
}
.svc-block {
  display: grid; grid-template-columns: 1fr; gap: 24px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.svc-block:first-child { border-top: none; padding-top: 0; }
.svc-block .num {
  font-family: "Fraunces", serif;
  color: var(--gold-warm);
  font-size: 14px;
}
.svc-block h3 { font-size: clamp(26px, 3vw, 36px); }
.svc-block p { font-size: 16px; color: rgba(20,24,42,0.75); }
.svc-block ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px;
}
.svc-block ul li {
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
  color: rgba(20,24,42,0.8);
}
.svc-img {
  position: sticky; top: 100px;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
}
.svc-img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 880px) {
  .svc-grid { grid-template-columns: 1fr; gap: 40px; }
  .svc-img { position: static; aspect-ratio: 4/3; }
}

.spec-card {
  display: flex; gap: 32px; align-items: center;
  padding: 32px;
  background: var(--bone);
  border-left: 3px solid var(--gold);
  margin-top: 32px;
}
.spec-card .icon {
  flex: 0 0 auto;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: var(--navy); color: var(--gold);
  border-radius: 4px;
}
.spec-card .text strong { display: block; color: var(--navy); margin-bottom: 4px; font-size: 18px; }
.spec-card .text { font-size: 15px; color: rgba(20,24,42,0.75); }

/* About */
.about-intro {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px;
  align-items: start;
}
.about-intro p { font-size: 19px; color: rgba(20,24,42,0.78); }
.about-intro p:first-of-type::first-letter {
  font-family: "Fraunces", serif;
  font-size: 4.5em; line-height: 0.85;
  float: left; padding: 6px 12px 0 0;
  color: var(--gold);
}
.about-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 880px) { .about-intro { grid-template-columns: 1fr; gap: 40px; } }

.timeline {
  display: grid; grid-template-columns: 1fr; gap: 0;
  margin-top: 24px;
}
.tl-row {
  display: grid; grid-template-columns: 140px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.tl-year {
  font-family: "Fraunces", serif;
  font-size: 38px;
  color: var(--navy);
  font-weight: 300;
  line-height: 1;
}
.tl-row h4 { font-size: 22px; margin: 0 0 8px; color: var(--navy); }
.tl-row p { margin: 0; color: rgba(20,24,42,0.7); }
@media (max-width: 540px) {
  .tl-row { grid-template-columns: 1fr; gap: 8px; }
}

.values {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.value {
  padding: 32px;
  background: var(--bone);
  border-radius: 4px;
}
.value h4 {
  font-family: "Fraunces", serif;
  font-size: 22px;
  color: var(--navy);
  margin: 0 0 12px;
}
.value p { margin: 0; font-size: 15px; color: rgba(20,24,42,0.7); }
@media (max-width: 760px) { .values { grid-template-columns: 1fr; } }

/* Contact */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
form label {
  display: block;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(20,24,42,0.6);
  margin-bottom: 8px;
  font-weight: 500;
}
form input, form select, form textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit; font-size: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
form input:focus, form select:focus, form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(227,155,52,0.15);
}
form textarea { resize: vertical; min-height: 140px; }
form .field { margin-bottom: 20px; }
@media (max-width: 540px) { form .row { grid-template-columns: 1fr; } }

.info-card {
  background: var(--navy);
  color: #fff;
  padding: 40px;
  border-radius: 4px;
}
.info-card h3 { color: #fff; margin: 0 0 24px; }
.info-block { margin-bottom: 28px; }
.info-block:last-child { margin-bottom: 0; }
.info-block .lbl {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.info-block .val { font-size: 16px; color: rgba(255,255,255,0.9); line-height: 1.5; }
.info-block a.val { color: rgba(255,255,255,0.9); }
.info-block a.val:hover { color: var(--gold); }
.hours-row {
  display: flex; justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 15px;
  color: rgba(255,255,255,0.85);
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: rgba(255,255,255,0.6); }

.map-wrap {
  margin-top: 24px;
  aspect-ratio: 16/10;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
