/* ==========================================================================
   DSA Commercial LLC — site styles
   Palette and type carried over from the existing brand.
   ========================================================================== */

:root {
  --ink:        #181818;  /* page black */
  --slate:      #2a2a2a;  /* form panel */
  --red:        #e42304;  /* DSA red */
  --amber:      #ffa807;  /* meeting rooms band */
  --paper:      #ffffff;
  --paper-dim:  rgba(255, 255, 255, 0.78);
  --rule:       rgba(255, 255, 255, 0.22);

  --display: "Questrial", "Trebuchet MS", sans-serif;
  --body:    "Work Sans", "Helvetica Neue", Arial, sans-serif;

  --wrap: 1080px;
  --gut:  24px;
}

/* Reset -------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  margin: 0;
  line-height: 1.2;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

/* Focus + skip link -------------------------------------------------------- */

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--paper);
  color: var(--ink);
  padding: 12px 20px;
  z-index: 100;
}
.skip:focus { left: 8px; top: 8px; }

/* Layout ------------------------------------------------------------------- */

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

.band { padding: 90px 0; }
.band--tight { padding: 60px 0; }
.band--red { background: var(--red); }
.band--amber { background: var(--amber); }
.band--flush { padding-bottom: 0; }

/* Header ------------------------------------------------------------------- */

.masthead {
  background: var(--ink);
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.masthead__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px 32px;
}

.logo { display: inline-block; line-height: 0; }
.logo img { width: 300px; height: auto; }

.nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 26px;
  margin: 0;
  padding: 0;
}

.nav a {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: var(--paper);
  padding: 6px 0;
  display: inline-block;
  border-bottom: 2px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.nav a:hover { color: var(--amber); }
.nav a[aria-current="page"] { border-bottom-color: var(--red); }

/* Buttons ------------------------------------------------------------------ */

.btn {
  display: inline-block;
  font-family: var(--body);
  font-size: 17px;
  font-weight: 300;
  line-height: 1;
  padding: 15px 26px;
  border: 0;
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.25s ease, background-color 0.25s ease;
}

.btn:hover { opacity: 0.72; }

.btn--red   { background: var(--red);   color: var(--paper); }
.btn--light { background: var(--paper); color: var(--ink); }
.btn--block { display: block; width: 100%; text-align: center; }

/* Hero --------------------------------------------------------------------- */

.hero {
  background: var(--ink);
  padding: 64px 0 70px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(38px, 6.4vw, 88px);
  font-weight: 700;
  max-width: 14ch;
  margin: 0 auto;
}

.hero__band img {
  width: 100%;
  height: clamp(240px, 42vw, 620px);
  object-fit: cover;
  object-position: center;
}

/* Page heading (interior pages) -------------------------------------------- */

.pagehead { text-align: center; padding: 84px 0 10px; }

.pagehead h1 {
  font-size: clamp(38px, 5.6vw, 72px);
}

.pagehead p {
  margin: 22px 0 0;
  font-size: 20px;
  color: var(--paper-dim);
}

/* About card --------------------------------------------------------------- */

.card {
  background: var(--paper);
  color: var(--slate);
  max-width: 940px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 62px) clamp(24px, 5vw, 65px);
}

.card h2 {
  color: var(--red);
  font-size: clamp(32px, 4.4vw, 50px);
  margin-bottom: 26px;
}

.card a { color: var(--red); }

/* Section heading ---------------------------------------------------------- */

.sechead {
  text-align: center;
  font-size: clamp(32px, 4.4vw, 50px);
  margin-bottom: 56px;
}

.sechead--amber { color: var(--paper); margin-bottom: 12px; }

.sechead-sub {
  text-align: center;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* Property grid ------------------------------------------------------------ */

.properties {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 72px 60px;
}

.property img {
  width: 100%;
  aspect-ratio: 46 / 34;
  object-fit: cover;
  margin-bottom: 34px;
}

.property h3 {
  font-size: clamp(24px, 2.6vw, 28px);
  margin-bottom: 18px;
}

.property__addr {
  font-size: 20px;
  margin-bottom: 18px;
}

.property__copy {
  color: var(--paper-dim);
  margin-bottom: 30px;
}

/* Meeting rooms feature ---------------------------------------------------- */

.feature {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.feature__body {
  position: relative;
  padding: 60px 0;
  max-width: 620px;
}

.feature h3 {
  font-size: clamp(24px, 2.6vw, 28px);
  margin-bottom: 22px;
}

.feature p { margin-bottom: 32px; }

/* Contact / form ----------------------------------------------------------- */

.panel {
  background: var(--slate);
  padding: clamp(32px, 5vw, 60px);
  max-width: 620px;
}

.panel--center { margin: 0 auto; }

.panel h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 22px;
}

.panel__lede { color: var(--paper-dim); margin-bottom: 22px; }

.contact-line {
  font-size: 17px;
  margin-bottom: 6px;
}

.contact-line a { color: var(--paper); text-decoration: underline; }

.form { margin-top: 34px; }

.field { margin-bottom: 22px; }

.field label {
  display: block;
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 6px;
  color: var(--paper-dim);
}

.field .req { color: var(--red); }

.field input,
.field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  color: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  font-weight: 300;
  padding: 10px 2px;
  border-radius: 0;
  transition: border-color 0.2s ease;
}

.field textarea { min-height: 120px; resize: vertical; }

.field input:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--amber);
}

.field input::placeholder,
.field textarea::placeholder { color: rgba(255, 255, 255, 0.38); }

.form .btn { margin-top: 12px; }

.form__note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 18px;
}

/* Map ---------------------------------------------------------------------- */

.map {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
  filter: grayscale(1) contrast(1.05);
}

/* FAQ ---------------------------------------------------------------------- */

.faq {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 60px 56px;
}

.faq h2 {
  font-size: clamp(26px, 3vw, 34px);
  margin-bottom: 26px;
}

.faq p { color: var(--paper-dim); }

.faq a { color: var(--amber); }

/* Current listings --------------------------------------------------------- */

.listings {
  border-top: 1px solid var(--rule);
  margin-top: 10px;
}

.listing {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--rule);
}

.listing h3 {
  font-size: clamp(22px, 2.4vw, 28px);
  margin-bottom: 8px;
}

.listing__addr {
  font-size: 17px;
  color: var(--paper-dim);
  margin: 0;
}

.listing__ext::after {
  content: " \2197";
  font-family: var(--body);
}

/* Footer ------------------------------------------------------------------- */

.footer {
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 46px 0;
  text-align: center;
}

.footer p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

/* Responsive --------------------------------------------------------------- */

@media (max-width: 860px) {
  .properties { grid-template-columns: 1fr; gap: 60px; }
  .faq { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 620px) {
  body { font-size: 17px; }
  .band { padding: 60px 0; }
  .masthead__inner { justify-content: center; text-align: center; }
  .nav ul { justify-content: center; }
  .logo img { width: 220px; }
  .feature { min-height: 340px; }
  .map { height: 320px; }
}

/* Honeypot -- hidden from people, still submitted by naive bots.
   Deliberately not display:none, which some bots skip. */
.hp{position:absolute!important;left:-9999px!important;width:1px;height:1px;overflow:hidden}