:root {
  --bg: #F9F7F2;
  --surface: #FFFFFF;
  --text: #1A1A1A;
  --muted-text: #545454;
  --border: #D1CDC0;
  --brand: #A67C00;
  --brand-dark: #8A6600;
  --brand-light: #E6B325;
  --font-display: Georgia, 'Times New Roman', 'Palatino Linotype', serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --shadow-sm: 0 1px 2px rgba(26,26,26,0.06);
  --shadow-md: 0 4px 12px rgba(26,26,26,0.08);
  --shadow-lg: 0 8px 24px rgba(26,26,26,0.10);
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-emph: cubic-bezier(0.0, 0, 0.2, 1);
  --dur-fast: 150ms;
  --dur-base: 300ms;
  --dur-slow: 500ms;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: linear-gradient(180deg, #F9F7F2 0%, #F4F1E8 100%);
  background-attachment: fixed;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D1CDC0' fill-opacity='0.15'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--brand);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 200;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
}
.skip-link:focus {
  top: 0.5rem;
}

/* Focus styles */
*:focus-visible {
  outline: 3px solid var(--brand-light);
  outline-offset: 2px;
}

/* Typography */
h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--text);
  margin: 0;
}
h1 {
  font-size: clamp(2.25rem, 4vw + 1rem, 3.5rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  font-variant-numeric: oldstyle-nums;
}
h2 {
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.02em;
}
h3 {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  font-weight: 700;
  font-style: normal;
}
p { margin: 0 0 1rem; }

a {
  color: var(--brand);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-standard);
}
a:hover { color: var(--brand-dark); }

/* Containers */
.container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 1.25rem;
  position: relative;
  z-index: 1;
}
.container--wide {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.25rem;
  position: relative;
  z-index: 1;
}

/* Section label */
.section__label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--brand);
  text-align: center;
  margin-bottom: 0.5rem;
  font-variant-numeric: oldstyle-nums;
}

.section__sublabel {
  font-family: var(--font-body);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--brand);
  text-align: center;
  margin-bottom: 0.75rem;
}

.section__heading {
  text-align: center;
  margin-bottom: 1.5rem;
}

.section__body {
  max-width: 68ch;
  text-align: left;
  margin: 0 auto 2rem;
  color: var(--muted-text);
}

/* Divider */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  max-width: 120px;
  margin: 0 auto;
}

/* Sections */
section {
  padding: 3rem 1.25rem;
  position: relative;
  z-index: 1;
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--dur-slow) var(--ease-emph), transform var(--dur-slow) var(--ease-emph);
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  height: 56px;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
}
.nav__logo img {
  max-height: 36px;
  display: block;
}
.nav__links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 0;
}
.nav__links li {
  display: flex;
  align-items: center;
}
.nav__links li + li::before {
  content: '\00B7';
  color: var(--border);
  margin: 0 1rem;
  font-size: 1.25rem;
}
.nav__link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-standard);
  padding: 0.25rem 0;
}
.nav__link:hover,
.nav__link:focus {
  color: var(--brand);
}
.nav__link--active {
  border-bottom: 2px solid var(--brand);
}
.nav__cta {
  margin-left: 1.5rem;
}

/* Hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform var(--dur-base) var(--ease-standard), opacity var(--dur-fast);
}
.nav__hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile overlay */
.nav__overlay {
  display: none;
  position: fixed;
  top: 56px;
  left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.nav__overlay.is-open {
  display: flex;
}
.nav__overlay a {
  font-family: var(--font-body);
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  text-decoration: none;
}
.nav__overlay a:hover { color: var(--brand); }

/* ===== BUTTONS ===== */
.btn--primary {
  display: inline-block;
  background: var(--brand);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-sm);
  border: none;
  min-width: 180px;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--dur-fast) var(--ease-standard);
}
.btn--primary:hover { background: var(--brand-dark); color: #fff; }
.btn--primary:active { transform: scale(0.98); }
.btn--primary:focus-visible {
  outline: 3px solid var(--brand-light);
  outline-offset: 2px;
}

.btn--secondary {
  display: inline-block;
  background: transparent;
  color: var(--brand);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--brand);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--dur-fast) var(--ease-standard), color var(--dur-fast) var(--ease-standard);
}
.btn--secondary:hover { background: var(--brand); color: #fff; }

.btn--small {
  padding: 0.5rem 1.25rem;
  min-width: auto;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 3rem 1.25rem;
}
.hero__bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(26,26,26,0.35) 0%, rgba(26,26,26,0.65) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  padding: 2rem;
}
.hero__logo {
  max-width: 80px;
  margin: 0 auto 1.5rem;
  filter: brightness(10);
}
.hero__logo img {
  width: 100%;
  height: auto;
}
.hero__sublabel {
  font-family: var(--font-body);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--brand-light);
  margin-bottom: 1rem;
}
.hero h1 {
  color: #FFFFFF;
  margin-bottom: 1rem;
}
.hero__tagline {
  color: #FFFFFF;
  font-size: 1.0625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-weight: 400;
}
.hero__desc {
  color: rgba(255,255,255,0.9);
  max-width: 56ch;
  margin: 0 auto 2rem;
  font-size: 1rem;
  line-height: 1.7;
}
.hero__desc::first-letter {
  font-family: var(--font-display);
  color: var(--brand-light);
  float: left;
  font-size: 3.5em;
  line-height: 0.8;
  margin-right: 0.1em;
  margin-top: 0.05em;
}

/* ===== CARDS ===== */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.card {
  background: var(--surface);
  border-left: 3px solid var(--brand);
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  border-radius: 0;
  transition: border-left-color var(--dur-base) var(--ease-standard), box-shadow var(--dur-base) var(--ease-standard);
}
.card:hover {
  border-left-color: var(--brand-light);
  box-shadow: var(--shadow-sm);
}
.card__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  font-weight: 700;
  font-style: normal;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.card__body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--muted-text);
  line-height: 1.6;
  margin: 0;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(166,124,0,0.1);
  color: var(--brand);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
}

/* ===== ABOUT ===== */
.about__image {
  margin: 2rem auto;
  max-width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.about__image img {
  width: 100%;
  height: auto;
  display: block;
}
.about__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

/* ===== SERVICES IMAGE ===== */
.services__image {
  margin: 2rem auto 0;
  max-width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.services__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}
.faq-item details {
  padding: 0;
}
.faq-item summary {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 1.25rem 0;
  list-style: none;
  gap: 0.75rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }
.faq-item__num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--brand);
  font-size: 1.125rem;
  min-width: 2rem;
  flex-shrink: 0;
}
.faq-item__question {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  flex: 1;
}
.faq-item__toggle {
  font-family: var(--font-body);
  color: var(--brand);
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: transform var(--dur-base) var(--ease-standard);
}
details[open] .faq-item__toggle {
  transform: rotate(45deg);
}
.faq-item__answer {
  padding: 0 0 1.25rem 2.75rem;
  color: var(--muted-text);
  line-height: 1.7;
  max-width: 68ch;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* ===== CONTACT ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.contact__info h3 {
  margin-bottom: 1rem;
}
.contact__detail {
  margin-bottom: 1rem;
  color: var(--muted-text);
}
.contact__detail strong {
  color: var(--text);
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
  font-weight: 600;
}
.contact__logo {
  max-width: 80px;
  margin-bottom: 1.5rem;
}
.contact__logo img {
  width: 100%;
  height: auto;
}

/* Form */
.form {
  max-width: 520px;
}
.form__group {
  margin-bottom: 1.5rem;
}
.form__label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-text);
  margin-bottom: 0.375rem;
  font-weight: 600;
}
.form__input,
.form__textarea {
  width: 100%;
  padding: 0.75rem 0;
  border: none;
  border-bottom: 1.5px solid var(--border);
  background: transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  transition: border-bottom-color var(--dur-fast) var(--ease-standard);
}
.form__input:focus,
.form__textarea:focus {
  border-bottom-color: var(--brand);
  outline: none;
}
.form__textarea {
  min-height: 120px;
  resize: vertical;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--text);
  color: #D1CDC0;
  padding: 3rem 1.25rem;
  position: relative;
  z-index: 1;
}
.footer__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.footer__logo {
  max-height: 48px;
  margin-bottom: 1.5rem;
  filter: brightness(10);
}
.footer__name {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #D1CDC0;
  margin-bottom: 0.5rem;
}
.footer__address {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #A0A0A0;
  margin-bottom: 0;
}
.footer__divider {
  border: none;
  border-top: 1px solid rgba(209,205,192,0.2);
  max-width: 200px;
  margin: 1.5rem auto;
}
.footer__copy {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: #777777;
}
.footer__copy a { color: var(--brand); }
.footer__copy a:hover { text-decoration: underline; }

/* ===== ALTERNATING SECTION BG ===== */
.section--surface {
  background: var(--surface);
}

/* ===== RESPONSIVE ===== */
@media (min-width: 768px) {
  .site-header { height: 64px; }
  .nav__links { display: flex; }
  .nav__hamburger { display: none; }
  .nav__overlay { display: none !important; }
  section { padding: 5rem 1.25rem; }
  .hero { min-height: 80vh; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr 1fr; }
  .about__items { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr 1fr; }
  .nav__logo img { max-height: 40px; }
}

@media (min-width: 1024px) {
  .card-grid { grid-template-columns: 1fr 1fr; }
  .card-grid--four { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1280px) {
  .card-grid--four { grid-template-columns: 1fr 1fr 1fr 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0ms !important;
    animation-duration: 0ms !important;
  }
  .fade-in {
    opacity: 1;
    transform: none;
  }
}

/* Subpage markdown defaults (deterministic wrapper) */
.bob-article h2,.bob-article h3{margin-top:28px;}
.bob-article ul,.bob-article ol{padding-left:22px;}
.bob-article li{margin:6px 0;}
