/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --navy: #1a2740;
  --gold: #c8943a;
  --red: #D94F4F;
  --msc-green: #2e7d4f;
  --offwhite: #f8f7f4;
  --body-text: #4a5568;
  --border: #e8e2d8;
  --white: #ffffff;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--body-text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  line-height: 1.2;
}

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

ul {
  list-style: none;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--offwhite {
  background: var(--offwhite);
}

.section--navy {
  background: var(--navy);
  color: var(--white);
}

.section--navy h2,
.section--navy h3,
.section--navy p {
  color: var(--white);
}

/* ============================================================
   EYEBROW
   ============================================================ */
.eyebrow {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 3px solid var(--gold);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: 1160px;
  margin: 0 auto;
  height: 100px;
}

.nav__logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

.nav__logo img {
  height: 52px;
  width: auto;
  display: block;
}

@media (min-width: 681px) {
  .nav__logo img {
    height: 68px;
  }
}

.nav__logo span {
  color: var(--gold);
}

.nav__logo:hover {
  text-decoration: none;
}

.nav__links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav__links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--gold);
  text-decoration: none;
}

.nav__cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 10px 20px;
  border-radius: 3px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.nav__cta:hover {
  background: #b5812e;
  color: var(--navy) !important;
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--navy) url('/images/storage_hero.png') center center / cover no-repeat;
  padding: 100px 0 80px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 39, 64, 0.72);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
}

.hero__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  color: var(--white);
  max-width: 760px;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 3px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}

.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border: 2px solid var(--gold);
}

.btn--gold:hover {
  background: #b5812e;
  border-color: #b5812e;
  text-decoration: none;
  color: var(--navy);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn--outline:hover {
  border-color: var(--white);
  text-decoration: none;
  color: var(--white);
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--red);
  padding: 0;
}

.stats-bar__inner {
  display: flex;
  max-width: 1160px;
  margin: 0 auto;
}

.stat-item {
  flex: 1;
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item__number {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-item__number--sm {
  font-size: 24px;
  line-height: 36px;
}

.stat-item__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  padding: 36px 32px;
}

.feature-card__icon {
  font-size: 28px;
  margin-bottom: 20px;
}

.feature-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 12px;
}

.feature-card__body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--body-text);
}

/* ============================================================
   PULL QUOTE
   ============================================================ */
.pull-quote {
  background: var(--navy);
  padding: 72px 0;
  text-align: center;
}

.pull-quote__text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 32px);
  font-style: italic;
  color: var(--white);
  max-width: 760px;
  margin: 0 auto 20px;
  line-height: 1.5;
}

.pull-quote__attribution {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--navy);
  padding: 64px 0;
  text-align: center;
}

.cta-band__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 38px);
  color: var(--white);
  margin-bottom: 12px;
}

.cta-band__sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 32px;
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
}

.btn--navy:hover {
  background: #0f1824;
  border-color: #0f1824;
  text-decoration: none;
  color: var(--white);
}

/* ============================================================
   TIMELINE (About page)
   ============================================================ */
.timeline {
  position: relative;
  padding-left: 48px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -40px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}

.timeline-item__year {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.timeline-item__title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 8px;
}

.timeline-item__body {
  font-size: 15px;
  color: var(--body-text);
  line-height: 1.7;
}

/* ============================================================
   BY THE NUMBERS
   ============================================================ */
.numbers-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 48px;
}

.numbers-list li {
  font-size: 15px;
  color: var(--body-text);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.numbers-list li::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   SERVICES (Services page)
   ============================================================ */
.service-section {
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}

.service-section:last-child {
  border-bottom: none;
}

.service-number {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: -12px;
}

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--navy);
  margin-bottom: 20px;
}

.service-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--body-text);
  max-width: 680px;
}

.service-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.service-feature {
  background: var(--offwhite);
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
}

.service-feature__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.service-feature__body {
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.6;
}

/* ============================================================
   WHY ARTISAN (Why Artisan page)
   ============================================================ */
.differentiators {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.differentiator {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.differentiator:last-child {
  border-bottom: none;
}

.differentiator__num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  padding-top: 4px;
}

.differentiator__title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 12px;
}

.differentiator__body {
  font-size: 15px;
  color: var(--body-text);
  line-height: 1.8;
}

/* ============================================================
   PORTFOLIO (Portfolio page)
   ============================================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.brand-card {
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  padding: 48px 40px;
}

.brand-card--msc {
  border-top-color: var(--msc-green);
}

.brand-card__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.brand-card--msc .brand-card__label {
  color: var(--msc-green);
}

.brand-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: var(--navy);
  margin-bottom: 16px;
}

.brand-card__meta {
  font-size: 14px;
  font-weight: 500;
  color: var(--body-text);
  margin-bottom: 20px;
}

.brand-card__body {
  font-size: 15px;
  color: var(--body-text);
  line-height: 1.7;
  margin-bottom: 28px;
}

.brand-card__link {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.brand-card--msc .brand-card__link {
  color: var(--msc-green);
}

.brand-card__link:hover {
  text-decoration: underline;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: start;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--navy);
  background: var(--white);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  margin-top: 8px;
}

#form-status {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
}

#form-status.success {
  color: #2e7d4f;
}

#form-status.error {
  color: var(--red);
}

.contact-info {
  padding: 40px;
  background: var(--offwhite);
  border: 1px solid var(--border);
}

.contact-info__title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 24px;
}

.contact-info__item {
  margin-bottom: 24px;
}

.contact-info__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-info__value {
  font-size: 15px;
  color: var(--body-text);
  line-height: 1.6;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  padding: 48px 0;
  border-top: 3px solid var(--gold);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__brand {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.footer__inner img {
  height: 68px;
  width: auto;
  display: block;
}

.footer__brand span {
  color: var(--gold);
}

.footer__copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.footer__links a:hover {
  color: var(--gold);
  text-decoration: none;
}

/* ============================================================
   TWO-COLUMN SECTION
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--navy);
  margin-bottom: 20px;
}

.section-body {
  font-size: 16px;
  color: var(--body-text);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: 72px 0 60px;
  border-bottom: 4px solid var(--gold);
}

.page-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4.5vw, 52px);
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero__sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  font-weight: 300;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .stats-bar__inner {
    flex-wrap: wrap;
  }

  .stat-item {
    flex: 1 1 50%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .numbers-list {
    grid-template-columns: 1fr;
  }

  .service-features {
    grid-template-columns: 1fr;
  }

  .differentiator {
    grid-template-columns: 56px 1fr;
    gap: 20px;
  }
}

@media (max-width: 680px) {
  .nav__links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 16px 0;
    border-bottom: 3px solid var(--gold);
  }

  .nav__links.open {
    display: flex;
  }

  .nav__links a {
    padding: 12px 24px;
    width: 100%;
  }

  .nav__cta {
    margin: 8px 24px;
    text-align: center;
  }

  .nav__toggle {
    display: flex;
  }

  .nav {
    position: relative;
  }

  .hero {
    padding: 72px 0 56px;
  }

  .section {
    padding: 56px 0;
  }

  .stat-item {
    flex: 1 1 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
}
