/* =============================================================
   SOVEL HOSPITALITY — MASTER STYLESHEET
   ==============================================================
   Institutional luxury. Art Deco-rooted. Editorial.
   Editable, standard CSS — no build step required.
   ============================================================= */

/* ---- Reset ----------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, blockquote {
  margin: 0;
  padding: 0;
}
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ---- Design Tokens --------------------------------------- */
:root {
  /* Sovel Hospitality — institutional palette */
  --sh-ink:          #0B0C0E;   /* near-black, used for dark sections */
  --sh-deep-navy:    #0B1D3A;   /* primary corporate navy */
  --sh-navy-soft:    #1A3158;   /* hover / accent navy */
  --sh-gold:         #C8A45E;   /* signature warm gold */
  --sh-gold-light:   #D8BC81;   /* highlight gold */
  --sh-gold-dark:    #A88A42;   /* depth gold */
  --sh-ivory:        #F5F0E8;   /* pearl ivory page accents */
  --sh-cream:        #FAF7F1;   /* primary background */
  --sh-off-white:    #FBFAF6;
  --sh-paper:        #FFFFFF;
  --sh-line:         #E5DFD2;   /* hairline rules */
  --sh-line-strong:  #C9C0AC;
  --sh-text:         #2A2A2C;
  --sh-text-muted:   #6E6A60;
  --sh-text-soft:    #8C887C;

  /* Typography */
  --sh-font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sh-font-body:    'Inter', 'DM Sans', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  --sh-font-label:   'Inter', 'DM Sans', -apple-system, sans-serif;

  /* Spacing — based on 8px scale */
  --sh-s1:  4px;
  --sh-s2:  8px;
  --sh-s3:  12px;
  --sh-s4:  16px;
  --sh-s5:  24px;
  --sh-s6:  32px;
  --sh-s7:  48px;
  --sh-s8:  64px;
  --sh-s9:  96px;
  --sh-s10: 128px;

  /* Layout */
  --sh-max:        1240px;
  --sh-max-narrow: 880px;
  --sh-max-text:   680px;

  /* Lines */
  --sh-rule: 1px solid var(--sh-line);
}

/* ---- Base Typography ------------------------------------- */
html { scroll-behavior: smooth; }
body {
  font-family: var(--sh-font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--sh-text);
  background: var(--sh-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--sh-font-display);
  font-weight: 400;
  color: var(--sh-deep-navy);
  letter-spacing: -0.01em;
  line-height: 1.18;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.65rem); line-height: 1.3; }
h4 { font-size: 1.15rem; line-height: 1.35; font-weight: 500; }

p { color: var(--sh-text); font-size: 1.0625rem; line-height: 1.75; }
p + p { margin-top: 1em; }

.eyebrow {
  display: inline-block;
  font-family: var(--sh-font-label);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sh-gold-dark);
  margin-bottom: var(--sh-s4);
}
.eyebrow--light { color: var(--sh-gold); }

.lede {
  font-family: var(--sh-font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  line-height: 1.6;
  color: var(--sh-text-muted);
  font-weight: 400;
}

/* Decorative gold rule beneath headlines */
.rule-gold {
  display: block;
  width: 56px;
  height: 1px;
  background: var(--sh-gold);
  margin: var(--sh-s5) 0;
}
.rule-gold--center {
  margin-left: auto;
  margin-right: auto;
}

/* ---- Layout Primitives ----------------------------------- */
.container {
  width: 100%;
  max-width: var(--sh-max);
  margin: 0 auto;
  padding: 0 var(--sh-s5);
}
.container--narrow { max-width: var(--sh-max-narrow); }
.container--text { max-width: var(--sh-max-text); }

.section {
  padding: var(--sh-s10) 0;
}
.section--snug { padding: var(--sh-s9) 0; }
.section--tight { padding: var(--sh-s8) 0; }

.section--cream { background: var(--sh-cream); }
.section--paper { background: var(--sh-paper); }
.section--ivory { background: var(--sh-ivory); }
.section--ink {
  background: var(--sh-ink);
  color: var(--sh-ivory);
}
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 {
  color: var(--sh-ivory);
}
.section--ink p { color: rgba(245, 240, 232, 0.78); }
.section--navy {
  background: var(--sh-deep-navy);
  color: var(--sh-ivory);
}
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4 {
  color: var(--sh-ivory);
}
.section--navy p { color: rgba(245, 240, 232, 0.82); }

/* ---- Header / Nav ---------------------------------------- */
.site-header {
  background: var(--sh-cream);
  border-bottom: var(--sh-rule);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header__inner {
  max-width: var(--sh-max);
  margin: 0 auto;
  padding: var(--sh-s4) var(--sh-s5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sh-s6);
}
.site-header__brand {
  display: flex;
  align-items: center;
  gap: var(--sh-s4);
  flex-shrink: 0;
}
.site-header__logo {
  width: 56px;
  height: 56px;
  display: block;
}
.site-header__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.site-header__name {
  font-family: var(--sh-font-display);
  font-size: 1.25rem;
  color: var(--sh-deep-navy);
  letter-spacing: 0.04em;
}
.site-header__tag {
  font-family: var(--sh-font-label);
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sh-gold-dark);
  margin-top: 4px;
}
.site-nav { display: flex; align-items: center; gap: var(--sh-s6); }
.site-nav a {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sh-text);
  font-weight: 500;
  transition: color 0.2s;
  padding: var(--sh-s2) 0;
  border-bottom: 1px solid transparent;
}
.site-nav a:hover,
.site-nav a.is-active {
  color: var(--sh-gold-dark);
  border-bottom-color: var(--sh-gold);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  width: 36px;
  height: 36px;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 4px;
  right: 4px;
  height: 1px;
  background: var(--sh-deep-navy);
  transition: transform 0.25s, opacity 0.2s;
}
.nav-toggle span:nth-child(1) { top: 12px; }
.nav-toggle span:nth-child(2) { top: 18px; }
.nav-toggle span:nth-child(3) { top: 24px; }

/* ---- Buttons --------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--sh-font-label);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 1px;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
}
.btn--gold {
  background: var(--sh-gold);
  color: var(--sh-ink);
  border-color: var(--sh-gold);
}
.btn--gold:hover {
  background: var(--sh-gold-dark);
  border-color: var(--sh-gold-dark);
  color: var(--sh-ink);
}
.btn--outline {
  background: transparent;
  color: var(--sh-deep-navy);
  border-color: var(--sh-deep-navy);
}
.btn--outline:hover {
  background: var(--sh-deep-navy);
  color: var(--sh-ivory);
}
.btn--outline-gold {
  background: transparent;
  color: var(--sh-gold);
  border-color: var(--sh-gold);
}
.btn--outline-gold:hover {
  background: var(--sh-gold);
  color: var(--sh-ink);
}
.btn--ghost {
  background: transparent;
  color: var(--sh-deep-navy);
  border: 0;
  padding: 16px 8px;
  border-bottom: 1px solid var(--sh-gold);
  border-radius: 0;
}
.btn--ghost:hover { color: var(--sh-gold-dark); }

/* ---- Hero ------------------------------------------------ */
.hero {
  background: var(--sh-ink);
  color: var(--sh-ivory);
  position: relative;
  padding: var(--sh-s10) 0 var(--sh-s10);
  overflow: hidden;
}
.hero__inner {
  max-width: var(--sh-max);
  margin: 0 auto;
  padding: 0 var(--sh-s5);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--sh-s9);
  align-items: center;
}
.hero__content { max-width: 580px; }
.hero__crest {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__crest img {
  width: 100%;
  max-width: 420px;
  filter: drop-shadow(0 8px 24px rgba(200, 164, 94, 0.18));
}
.hero h1 {
  color: var(--sh-paper);
  font-size: clamp(2.6rem, 5vw, 4.25rem);
  line-height: 1.08;
  font-weight: 400;
}
.hero h1 em {
  font-style: italic;
  color: var(--sh-gold);
}
.hero__lede {
  font-family: var(--sh-font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: rgba(245, 240, 232, 0.82);
  margin-top: var(--sh-s5);
  max-width: 520px;
  line-height: 1.55;
}
.hero__meta {
  margin-top: var(--sh-s7);
  padding-top: var(--sh-s5);
  border-top: 1px solid rgba(200, 164, 94, 0.25);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sh-s6) var(--sh-s7);
}
.hero__meta-item {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.6);
}
.hero__meta-item strong {
  display: block;
  font-family: var(--sh-font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--sh-gold);
  margin-top: 6px;
}
.hero__actions {
  margin-top: var(--sh-s7);
  display: flex;
  gap: var(--sh-s4);
  flex-wrap: wrap;
}

/* Decorative Art Deco corner ornaments on hero */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(200, 164, 94, 0.25);
  pointer-events: none;
}
.hero::before { top: 24px; left: 24px; border-right: 0; border-bottom: 0; }
.hero::after  { bottom: 24px; right: 24px; border-left: 0; border-top: 0; }

/* ---- Page Headers (non-home) ----------------------------- */
.page-header {
  background: var(--sh-ink);
  color: var(--sh-ivory);
  padding: var(--sh-s10) 0 var(--sh-s9);
  text-align: center;
  position: relative;
}
.page-header h1 {
  color: var(--sh-paper);
  margin-bottom: var(--sh-s3);
}
.page-header .eyebrow { color: var(--sh-gold); }
.page-header__lede {
  font-family: var(--sh-font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: rgba(245, 240, 232, 0.78);
  max-width: 620px;
  margin: var(--sh-s4) auto 0;
  line-height: 1.55;
}

/* ---- Cards / Grids --------------------------------------- */
.grid {
  display: grid;
  gap: var(--sh-s6);
}
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--sh-paper);
  padding: var(--sh-s7) var(--sh-s6);
  border: var(--sh-rule);
  transition: border-color 0.25s, transform 0.25s;
}
.card:hover {
  border-color: var(--sh-gold);
  transform: translateY(-3px);
}
.card__number {
  font-family: var(--sh-font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--sh-gold-dark);
  margin-bottom: var(--sh-s4);
  display: block;
  letter-spacing: 0.05em;
}
.card h3 {
  font-family: var(--sh-font-display);
  font-size: 1.5rem;
  color: var(--sh-deep-navy);
  margin-bottom: var(--sh-s4);
}
.card p { color: var(--sh-text-muted); font-size: 0.98rem; }
.card hr {
  border: 0;
  border-top: 1px solid var(--sh-gold);
  width: 36px;
  margin: var(--sh-s4) 0;
}

/* Image placeholder block — swap with real Adobe Stock image later */
.imgholder {
  width: 100%;
  background: var(--sh-ivory);
  border: 1px solid var(--sh-line);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  color: var(--sh-text-soft);
}
.imgholder--16-9 { aspect-ratio: 16 / 9; }
.imgholder--4-3  { aspect-ratio: 4 / 3; }
.imgholder--3-4  { aspect-ratio: 3 / 4; }
.imgholder--1-1  { aspect-ratio: 1 / 1; }
.imgholder--21-9 { aspect-ratio: 21 / 9; }
.imgholder::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid var(--sh-line-strong);
  pointer-events: none;
}
.imgholder__label {
  position: relative;
  font-family: var(--sh-font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--sh-text-soft);
  letter-spacing: 0.04em;
  z-index: 1;
  padding: 0 var(--sh-s4);
  text-align: center;
}

/* Pull-quote / philosophy statement */
.statement {
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
}
.statement blockquote {
  font-family: var(--sh-font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.4;
  color: var(--sh-ivory);
  font-weight: 400;
}
.statement .rule-gold { margin: var(--sh-s7) auto; }
.statement cite {
  display: block;
  font-family: var(--sh-font-label);
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sh-gold);
  margin-top: var(--sh-s5);
}

/* Two-column editorial block */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sh-s9);
  align-items: center;
}
.editorial--reverse .editorial__media { order: 2; }
.editorial__body h2 { margin-bottom: var(--sh-s4); }
.editorial__body .eyebrow { margin-bottom: var(--sh-s4); }

/* Pillars list */
.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sh-s8) var(--sh-s7);
}
.pillar {
  border-top: 1px solid var(--sh-line-strong);
  padding-top: var(--sh-s5);
}
.pillar__num {
  font-family: var(--sh-font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--sh-gold-dark);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: var(--sh-s3);
}
.pillar h3 {
  font-size: 1.4rem;
  color: var(--sh-deep-navy);
  margin-bottom: var(--sh-s3);
}
.pillar p { color: var(--sh-text-muted); font-size: 0.98rem; }

/* Numbered metric row */
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sh-s6);
  text-align: center;
}
.metric__value {
  font-family: var(--sh-font-display);
  font-size: clamp(2.25rem, 4vw, 3.4rem);
  color: var(--sh-gold);
  display: block;
  line-height: 1;
  margin-bottom: var(--sh-s3);
  font-weight: 400;
}
.metric__label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.68);
}

/* ---- Section Headings ------------------------------------ */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--sh-s8);
}
.section-head--left {
  text-align: left;
  margin-left: 0;
}
.section-head h2 { margin-bottom: var(--sh-s4); }
.section-head p {
  color: var(--sh-text-muted);
  font-size: 1.08rem;
}

/* ---- Contact / Form -------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--sh-s9);
}
.contact-form { display: grid; gap: var(--sh-s4); }
.contact-form label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sh-text-muted);
  margin-bottom: var(--sh-s2);
  font-weight: 500;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  background: var(--sh-paper);
  border: 1px solid var(--sh-line-strong);
  border-radius: 1px;
  font-family: var(--sh-font-body);
  font-size: 1rem;
  color: var(--sh-text);
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--sh-gold);
}
.contact-form textarea {
  min-height: 140px;
  resize: vertical;
  font-family: var(--sh-font-body);
}
.contact-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sh-s4);
}

.contact-info {
  background: var(--sh-ivory);
  padding: var(--sh-s7);
  border: 1px solid var(--sh-line);
}
.contact-info h3 {
  font-size: 1.35rem;
  margin-bottom: var(--sh-s5);
}
.contact-info dl {
  display: grid;
  gap: var(--sh-s5);
}
.contact-info dt {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sh-gold-dark);
  margin-bottom: 4px;
  font-weight: 500;
}
.contact-info dd {
  font-family: var(--sh-font-display);
  font-size: 1.15rem;
  color: var(--sh-deep-navy);
  font-style: italic;
}
.contact-info dd.plain {
  font-family: var(--sh-font-body);
  font-style: normal;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--sh-text);
}
.contact-info dd a:hover { color: var(--sh-gold-dark); }

/* ---- Footer ---------------------------------------------- */
.site-footer {
  background: var(--sh-ink);
  color: rgba(245, 240, 232, 0.72);
  padding: var(--sh-s9) 0 var(--sh-s6);
  position: relative;
}
.site-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--sh-s7);
  padding-bottom: var(--sh-s7);
  border-bottom: 1px solid rgba(200, 164, 94, 0.18);
}
.site-footer__brand img {
  width: 92px;
  margin-bottom: var(--sh-s4);
}
.site-footer__brand p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(245, 240, 232, 0.6);
  max-width: 320px;
}
.site-footer h4 {
  font-family: var(--sh-font-label);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sh-gold);
  font-weight: 500;
  margin-bottom: var(--sh-s4);
}
.site-footer ul li {
  margin-bottom: var(--sh-s2);
  font-size: 0.95rem;
}
.site-footer ul li a:hover { color: var(--sh-gold); }
.site-footer__bottom {
  padding-top: var(--sh-s5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sh-s4);
  font-size: 0.78rem;
  color: rgba(245, 240, 232, 0.5);
  letter-spacing: 0.06em;
}

/* ---- Utilities ------------------------------------------- */
.text-center { text-align: center; }
.text-gold { color: var(--sh-gold); }
.text-italic { font-style: italic; }
.mt-0 { margin-top: 0; }
.mt-4 { margin-top: var(--sh-s4); }
.mt-5 { margin-top: var(--sh-s5); }
.mt-6 { margin-top: var(--sh-s6); }
.mt-7 { margin-top: var(--sh-s7); }
.mt-8 { margin-top: var(--sh-s8); }

/* ---- Responsive ------------------------------------------ */
@media (max-width: 980px) {
  .hero { padding: var(--sh-s9) 0; }
  .hero__inner { grid-template-columns: 1fr; gap: var(--sh-s7); text-align: center; }
  .hero__content { max-width: 100%; margin: 0 auto; }
  .hero__meta { justify-content: center; }
  .hero__actions { justify-content: center; }
  .hero__lede { margin-left: auto; margin-right: auto; }
  .hero__crest { order: -1; }
  .hero__crest img { max-width: 280px; }

  .editorial { grid-template-columns: 1fr; gap: var(--sh-s6); }
  .editorial--reverse .editorial__media { order: 0; }

  .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .grid--2 { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; gap: var(--sh-s6); }
  .metrics { grid-template-columns: repeat(2, 1fr); gap: var(--sh-s7) var(--sh-s5); }

  .contact-grid { grid-template-columns: 1fr; gap: var(--sh-s7); }
  .contact-form .field-row { grid-template-columns: 1fr; }

  .section { padding: var(--sh-s8) 0; }
  .section--snug { padding: var(--sh-s7) 0; }

  .site-footer__top { grid-template-columns: 1fr 1fr; gap: var(--sh-s6); }

  .site-header__inner { flex-wrap: wrap; gap: var(--sh-s4); }
  .nav-toggle { display: block; }
  .site-nav {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sh-s4);
    padding-top: var(--sh-s4);
    border-top: 1px solid var(--sh-line);
    display: none;
  }
  .site-nav.is-open { display: flex; }

  .hero::before, .hero::after { width: 60px; height: 60px; }
}

@media (max-width: 560px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.7rem; }
  .section { padding: var(--sh-s7) 0; }
  .container { padding: 0 var(--sh-s4); }
  .site-footer__top { grid-template-columns: 1fr; }
  .site-header__logo { width: 44px; height: 44px; }
  .site-header__name { font-size: 1.05rem; }
  .btn { padding: 14px 24px; font-size: 0.72rem; }
}

/* ---- Print ----------------------------------------------- */
@media print {
  .site-header, .site-footer, .nav-toggle { display: none; }
  body { background: white; color: black; }
  .section { padding: 24px 0; }
}
