/* ==========================================
   Signature Housekeeping Design System
   components.css
   Visual Source of Truth: V1 style-v7.css
========================================== */

/* Announcement Bar */
.announcement {
  background: var(--deep);
  color: #f5eee2;
  text-align: center;
  padding: 9px 20px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Header & Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 253, 248, 0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--taupe);
  width: 100%;
}

.navbar {
  width: 100%;
  padding: 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

/* Logo & Branding */
.brand,
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-name {
  font-family: Georgia, serif;
  font-size: 26px;
  letter-spacing: 0.08em;
  color: var(--color-heading);
}

.brand-sub {
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-top: 2px;
}

.brand > img,
.logo > img {
  display: block !important;
  width: auto !important;
  height: 56px !important;
  max-height: 56px !important;
  object-fit: contain !important;
}

/* Navigation */
.nav,
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 700;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a:not(.nav-call):hover,
.nav-links a:hover {
  color: var(--gold);
}

.nav-links a {
  color: var(--color-heading);
  position: relative;
  padding: 6px 0;
  transition: var(--transition);
  text-decoration: none;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-call {
  border: 1px solid var(--gold);
  padding: 11px 18px;
}

.menu-button,
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  cursor: pointer;
}

/* Buttons */
.button,
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 24px;
  border: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.25s;
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
}

.gold,
.btn-gold {
  background: var(--gold);
  color: white;
}

.gold:hover,
.btn-gold:hover {
  background: #987337;
  transform: translateY(-2px);
}

.text-link,
.btn-outline {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  font-weight: bold;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 8px;
}

.text-link span {
  font-size: 20px;
  margin-left: 12px;
}

.dark,
.btn-dark {
  background: var(--deep);
  color: white;
}

.dark:hover,
.btn-dark:hover {
  background: var(--gold);
}

/* Cards (`.service-card`) */
.service-card {
  padding: 40px 28px;
  border-right: 1px solid var(--taupe);
  background: #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.service-card:last-child {
  border: 0;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.service-card span {
  color: var(--gold);
  font-family: Georgia, serif;
}

.service-card h3 {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 27px;
  line-height: 1.15;
  margin: 40px 0 22px;
  color: var(--color-heading);
}

.service-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  min-height: 125px;
  margin: 0;
}

.service-card a {
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.14em;
  font-weight: bold;
}

.service-card strong {
  display: block;
  margin-top: 1.5rem;
  font-size: 1.4rem;
  color: var(--gold);
}

/* Quote Card */
.quote-card {
  align-self: center;
  border: 1px solid #8b7651;
  padding: 48px;
  background: #252d28;
}

.quote-card > span {
  font-family: Georgia, serif;
  color: #c6a96e;
  font-size: 70px;
  line-height: 0.3;
}

.quote-card blockquote {
  font-family: Georgia, serif;
  font-size: 25px;
  line-height: 1.5;
  margin: 30px 0;
}

.quote-card p {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 9px;
  color: #aaa69d;
}

/* Monogram */
.monogram {
  width: min(360px, 70vw);
  aspect-ratio: 1;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  background: var(--ivory);
  font-family: Georgia, serif;
  color: var(--gold);
}

.monogram:before,
.monogram:after {
  content: "";
  position: absolute;
  background: var(--gold);
}

.monogram:before {
  width: 115%;
  height: 1px;
}

.monogram:after {
  height: 115%;
  width: 1px;
}

.monogram span,
.monogram i {
  font-size: 100px;
  position: absolute;
}

.monogram span {
  transform: translate(-28px, -22px);
}

.monogram i {
  transform: translate(30px, 35px);
}

.about .monogram {
  width: min(410px, 78vw);
  aspect-ratio: 1;
  border: 1px solid rgba(180, 142, 76, 0.55);
  border-radius: 50%;
  overflow: hidden;
  background: var(--ivory);
  display: grid;
  place-items: center;
  box-shadow: 0 22px 70px rgba(36, 35, 31, 0.07);
}

.about .monogram:before,
.about .monogram:after {
  display: none;
}

.about .monogram img {
  width: 130%;
  height: 130%;
  object-fit: cover;
  object-position: center 35%;
  mix-blend-mode: multiply;
}

.about .monogram > img {
  display: block !important;
  width: 118% !important;
  height: 118% !important;
  max-width: 118% !important;
  max-height: 118% !important;
  object-fit: contain !important;
  position: static !important;
  transform: none !important;
}

/* Eyebrow & Badges */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.27em;
  color: var(--gold);
  font-weight: bold;
  font-size: 12px;
  margin: 0 0 28px;
}

.light {
  color: #c6a96e;
}

.light-link {
  border-color: #fff;
}

/* Forms, Inputs & Fieldsets */
form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: bold;
}

label:nth-child(3),
label:nth-child(4),
form button,
form small {
  grid-column: 1/-1;
}

form small {
  font-size: 10px;
  color: var(--muted);
  line-height: 1.5;
}

.website-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status {
  grid-column: 1/-1;
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

.form-status:empty {
  display: none;
}

.form-status.success {
  color: #27613f;
}

.form-status.error {
  color: #9b2f2f;
}

form button:disabled {
  opacity: 0.65;
  cursor: wait;
}

/* Footer Component */
footer {
  background: #171d19;
  color: #e9e1d4;
  padding: 70px clamp(24px, 8vw, 130px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.footer-brand {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-direction: row;
}

.footer-brand .brand-name {
  font-size: 29px;
}

.footer-brand > img {
  display: block !important;
  width: 72px !important;
  height: 72px !important;
  max-width: 72px !important;
  max-height: 72px !important;
  object-fit: contain !important;
  position: static !important;
  transform: none !important;
  mix-blend-mode: screen;
  border-right: 1px solid #8b7651;
  padding-right: 16px;
}

.footer-wordmark {
  display: flex;
  flex-direction: column;
}

.footer-wordmark b {
  font-family: Georgia, serif;
  font-size: 27px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.footer-wordmark small {
  text-transform: uppercase;
  letter-spacing: 0.42em;
  font-size: 8px;
  margin-top: 7px;
  color: #c9bbaa;
}

footer > p {
  text-align: right;
  color: #aaa69d;
}

footer > div {
  display: flex;
  gap: 30px;
  font-size: 12px;
  flex-wrap: wrap;
}

footer > small {
  text-align: right;
  color: #777f77;
}