/* ============================================================
   DRS NY Corp. — tokens
   ============================================================ */
:root {
  --ink: #141414;
  --panel: #1f1f1d;
  --cream: #f2efe8;
  --gold: #b8862b;
  --gold-pale: #e6c878;
  --grey: #8a8578;
  --grey-line: rgba(242, 239, 232, 0.14);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --wrap: 1180px;
  --gap: clamp(1.25rem, 4vw, 3rem);
  --radius: 2px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

html, body {
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  width: 100%;
}

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

a { color: inherit; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 0.5em;
  color: var(--cream);
}

h2 { font-size: clamp(1.9rem, 4.5vw, 2.9rem); }
h3 { font-size: 1.25rem; font-weight: 600; }

p { margin: 0 0 1em; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2.5rem);
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--gold); color: var(--ink); padding: 0.75em 1.25em;
  font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 1rem; top: 1rem; }

:focus-visible {
  outline: 2px solid var(--gold-pale);
  outline-offset: 3px;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey);
  margin: 0 0 0.75em;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.85em 1.6em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn-gold {
  background: var(--gold);
  color: #17130a;
}
.btn-gold:hover { background: var(--gold-pale); }

.btn-gold-outline {
  background: transparent;
  color: var(--gold-pale);
  border-color: var(--gold);
}
.btn-gold-outline:hover { background: var(--gold); color: #17130a; }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--grey-line);
}
.btn-ghost:hover { border-color: var(--gold-pale); color: var(--gold-pale); }

.btn-large { padding: 1em 2em; font-size: 1.05rem; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(20, 20, 20, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--grey-line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6em;
  text-decoration: none;
  color: var(--gold-pale);
}
.brand-mark { color: var(--gold); flex-shrink: 0; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--cream);
}
.brand-name span { color: var(--gold); }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 110;
}
.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--cream);
  margin: 0 auto;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.92rem;
}
.primary-nav a {
  text-decoration: none;
  color: var(--cream);
  padding: 0.4em 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.primary-nav a:hover { color: var(--gold-pale); border-color: var(--gold); }
.primary-nav .nav-cta {
  background: var(--gold);
  color: #17130a;
  padding: 0.55em 1.1em;
  border-radius: var(--radius);
  font-weight: 600;
}
.primary-nav .nav-cta:hover { background: var(--gold-pale); border-color: transparent; }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: fixed;
    inset: 72px 0 0 0;
    background: var(--ink);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem clamp(1.25rem, 5vw, 2.5rem);
    gap: 1.4rem;
    font-size: 1.2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }
  .primary-nav.is-open { transform: translateX(0); }
  .primary-nav .nav-cta { margin-top: 0.5rem; }
}

/* No-JS fallback: keep nav reachable/visible when JS hasn't run */
.no-js .primary-nav { position: static; transform: none; display: flex; flex-direction: row; flex-wrap: wrap; background: none; padding: 0; }
.no-js .nav-toggle { display: none; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% 35%;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.55) 45%, rgba(10,10,10,0.35) 100%),
    radial-gradient(ellipse at 30% 20%, rgba(184,134,43,0.18), transparent 55%);
}
.hero-inner {
  position: relative;
  padding-top: 3rem;
  padding-bottom: clamp(2.5rem, 7vw, 5rem);
  max-width: 46rem;
}
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  margin-bottom: 0.4em;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--cream);
  max-width: 38rem;
  opacity: 0.92;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* ============================================================
   Sections
   ============================================================ */
.section {
  padding: clamp(3.5rem, 9vw, 7rem) 0;
}
.section-dark { background: var(--panel); }

.section-head { max-width: 40rem; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-sub { color: var(--grey); font-size: 1.05rem; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--gap);
  align-items: start;
}
.about-copy p { color: rgba(242,239,232,0.88); }
.stat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
  border-left: 1px solid var(--grey-line);
  padding-left: 1.5rem;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 0.2em;
}
.stat-label { color: var(--grey); font-size: 0.9rem; }

@media (max-width: 780px) {
  .about-grid { grid-template-columns: 1fr; }
  .stat-list { border-left: none; padding-left: 0; border-top: 1px solid var(--grey-line); padding-top: 1.5rem; grid-template-columns: 1fr 1fr; }
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--ink);
  border: 1px solid var(--grey-line);
  padding: 1.5rem;
  border-radius: var(--radius);
}
.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 1rem;
  filter: grayscale(1) contrast(1.05);
}
.service-card h3 { color: var(--gold-pale); }
.service-card ul { list-style: none; margin: 0; padding: 0; font-size: 0.92rem; color: rgba(242,239,232,0.82); }
.service-card li { padding: 0.3em 0; border-top: 1px solid var(--grey-line); }
.service-card li:first-child { border-top: none; }
.service-card a { color: var(--gold-pale); text-decoration: underline; }

@media (max-width: 980px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .service-grid { grid-template-columns: 1fr; }
}

/* How it works */
.how { position: relative; overflow: hidden; }
.how-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1);
}
.how-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,20,20,0.94) 0%, rgba(20,20,20,0.9) 100%);
}
.how .wrap { position: relative; }
.how .section-head h2, .how .section-head .eyebrow { color: var(--cream); }

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.step {
  border-top: 1px solid var(--grey-line);
  padding-top: 1.25rem;
}
.step-num {
  display: block;
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.6rem;
  margin-bottom: 0.4em;
}
.step p { color: var(--grey); font-size: 0.92rem; }

@media (max-width: 900px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
}

/* Before & after */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.ba-card { margin: 0; }
.ba-images {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--grey-line);
}
.ba-images img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.ba-before { opacity: 0; z-index: 1; }
.ba-after { opacity: 1; z-index: 2; }
.ba-images.show-before .ba-before { opacity: 1; z-index: 2; }
.ba-images.show-before .ba-after { opacity: 0; z-index: 1; }

.ba-card figcaption { padding-top: 0.85rem; }
.ba-toggle {
  display: inline-flex;
  border: 1px solid var(--grey-line);
  border-radius: var(--radius);
  overflow: hidden;
  background: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.ba-toggle span {
  padding: 0.4em 0.9em;
  color: var(--grey);
}
.ba-toggle[aria-pressed="true"] .ba-label-after,
.ba-toggle[aria-pressed="false"] .ba-label-before {
  background: var(--gold);
  color: #17130a;
}
.ba-card p { color: var(--grey); font-size: 0.88rem; margin: 0; }

@media (max-width: 780px) {
  .ba-grid { grid-template-columns: 1fr; max-width: 26rem; margin: 0 auto; }
}

/* Facility */
.facility-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: center;
}
.facility-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: grayscale(1);
  border-radius: var(--radius);
}
.facility-copy p { color: rgba(242,239,232,0.85); }
.facility-note {
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
  color: var(--grey-pale, var(--cream));
  font-size: 0.95rem;
}

@media (max-width: 780px) {
  .facility-grid { grid-template-columns: 1fr; }
  .facility-copy { order: 2; }
  .facility-img { order: 1; }
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: start;
}
.faq-col-title {
  color: var(--gold-pale);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 1rem;
}
.faq-item {
  border-top: 1px solid var(--grey-line);
  padding: 0.9em 0;
}
.faq-item:last-of-type { border-bottom: 1px solid var(--grey-line); }
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--cream);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p {
  margin: 0.75em 0 0;
  color: var(--grey);
  font-size: 0.95rem;
}
.faq-item a { color: var(--gold-pale); }
.faq-pay-cta { margin-top: 1.75rem; }

@media (max-width: 780px) {
  .faq-grid { grid-template-columns: 1fr; }
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.testimonial {
  margin: 0;
  padding: 1.75rem;
  background: var(--ink);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius);
}
.testimonial p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--cream);
  margin-bottom: 0.75em;
}
.testimonial cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--gold-pale);
  font-weight: 600;
}
.testimonial cite span { color: var(--grey); font-weight: 400; }

@media (max-width: 780px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

.notes-strip { text-align: center; }
.notes-strip-label {
  color: var(--grey);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.notes-strip-images {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.notes-strip-images img {
  width: 220px;
  height: auto;
  border: 6px solid var(--cream);
  box-shadow: 0 10px 24px rgba(0,0,0,0.4);
}
.notes-strip-images img:nth-child(1) { transform: rotate(-2.5deg); }
.notes-strip-images img:nth-child(2) { transform: rotate(2deg); }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--gap);
  align-items: center;
}
.contact-copy p { color: rgba(242,239,232,0.85); max-width: 32rem; }
.contact-list {
  list-style: none;
  margin: 2rem 0 1.5rem;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--grey-line);
  display: grid;
  gap: 0.9rem;
  font-size: 0.95rem;
}
.contact-list li { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.contact-list span { color: var(--grey); min-width: 4.5rem; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.08em; padding-top: 0.2em; }
.contact-list a { text-decoration: underline; text-decoration-color: var(--grey-line); }
.contact-list a:hover { color: var(--gold-pale); }

.review-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
}
.review-links > span { color: var(--grey); }
.review-links a { text-decoration: underline; text-decoration-color: var(--grey-line); display: inline-flex; align-items: center; }
.review-links img { filter: grayscale(1) brightness(1.4); opacity: 0.85; }

.contact-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: grayscale(1);
  border-radius: var(--radius);
}

@media (max-width: 780px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-img { order: -1; }
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: #0d0d0c;
  border-top: 1px solid var(--grey-line);
  padding: 3rem 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
}
.footer-brand .brand-name { font-family: var(--font-display); font-size: 1.2rem; color: var(--cream); }
.footer-brand .brand-name span { color: var(--gold); }
.footer-brand p { color: var(--grey); font-size: 0.85rem; margin-top: 0.5rem; }
.footer-nav { display: flex; flex-direction: column; gap: 0.6rem; font-size: 0.9rem; }
.footer-nav a { text-decoration: none; color: var(--grey); }
.footer-nav a:hover { color: var(--gold-pale); }
.footer-contact { display: flex; flex-direction: column; gap: 0.6rem; font-size: 0.9rem; }
.footer-contact a { text-decoration: none; color: var(--cream); }
.footer-contact a:hover { color: var(--gold-pale); }

@media (max-width: 700px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal {
  opacity: 1;
  transform: none;
}
.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}
