@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Source+Sans+3:wght@300;400;500&display=swap');

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

:root {
  --brown:      #3d2b1a;
  --brown-2:    #5a3e25;
  --amber:      #b8874a;
  --amber-light:#d4aa72;
  --amber-pale: #e8d5a8;
  --parchment:  #faf5eb;
  --parchment-2:#f3ece0;
  --sand:       #e8dcc8;
  --sand-dark:  #ddd0ba;
  --text:       #3a2d1f;
  --text-muted: #7a6a58;
  --border:     #ddd0b8;
  --serif: 'Lora', Georgia, serif;
  --sans:  'Source Sans 3', system-ui, sans-serif;
  --max-w: 900px;
  --nav-h: 68px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.75;
  color: var(--text);
  background: var(--parchment);
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--sand-dark);
  border-bottom: 1px solid var(--border);
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  gap: 16px;
  flex-wrap: nowrap;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo {
  height: 40px;
  width: auto;
  display: none;
}

.nav-brand-text {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  color: var(--brown);
  white-space: nowrap;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  flex-wrap: nowrap;
  flex-shrink: 1;
  min-width: 0;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 3px;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brown);
  background: rgba(184,135,74,0.15);
}

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero-tagline-bar {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 10px 48px 8px;
  text-align: center;
}

.hero-tagline-bar span {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── HERO ── */
.hero {
  background: var(--parchment);
}

.hero-img-wrap {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px 0;
  line-height: 0;
  overflow: hidden;
}

.hero-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

#hero-img-2 {
  position: absolute;
  top: 0;
  left: 48px;
  right: 48px;
  width: calc(100% - 96px);
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 2.5s ease;
}

#hero-img-2.visible {
  opacity: 1;
}

.hero-overlay-emphasis {
  font-style: normal;
  display: block;
}

.hero-overlay-text {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  text-align: center;
  white-space: normal;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 3vw, 2.2rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--brown);
  text-shadow: 0 1px 8px rgba(250,245,235,0.9), 0 0 32px rgba(250,245,235,0.7);
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.hero-overlay-text.visible {
  opacity: 1;
}

.hero-text {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px 48px 52px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--brown);
  line-height: 1.3;
  text-wrap: pretty;
  flex: 1;
  min-width: 260px;
}

.hero-tagline em {
  font-style: normal;
  color: var(--amber);
}

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  flex-shrink: 0;
}

.hero-location {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-cta {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 2px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}

.hero-cta:hover {
  background: var(--brown);
  transform: translateX(-50%) translateY(-2px);
}

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  background: var(--sand);
  border-bottom: 1px solid var(--border);
  padding: 52px 48px;
  text-align: center;
}

.page-header h1 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 400;
  font-style: italic;
  color: var(--brown);
  letter-spacing: 0.01em;
}

.page-header .rule {
  width: 48px;
  height: 2px;
  background: var(--border);
  margin: 16px auto 0;
  border: none;
}

/* ── MAIN CONTENT ── */
main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px 48px 80px;
}

main p {
  margin-bottom: 1.2em;
  font-weight: 300;
  color: var(--text);
}

main p:last-child { margin-bottom: 0; }

main h2 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--brown);
  margin: 2.5em 0 0.6em;
  letter-spacing: 0.01em;
}

main h2:first-child { margin-top: 0; }

main h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--brown-2);
  margin: 2em 0 0.4em;
}

main a {
  color: var(--amber);
  text-decoration: none;
  border-bottom: 1px solid var(--amber-pale);
  transition: color 0.2s, border-color 0.2s;
}

main a:hover {
  color: var(--brown);
  border-color: var(--amber-light);
}

main ul, main ol {
  padding-left: 1.5em;
  margin-bottom: 1.2em;
}

main li {
  font-weight: 300;
  margin-bottom: 0.4em;
}

/* ── INTRO BLOCK ── */
.intro-block {
  background: var(--sand);
  border: 1px solid var(--border);
  padding: 24px 28px;
  margin-bottom: 40px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(61,43,26,0.07);
}

.intro-block p {
  font-size: 1.05rem;
  color: var(--brown);
  font-weight: 300;
  margin-bottom: 0;
  line-height: 1.8;
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 24px 24px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(61,43,26,0.07);
  text-decoration: none;
  display: block;
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
  box-shadow: 0 4px 16px rgba(61,43,26,0.1);
  transform: translateY(-2px);
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--brown);
  margin: 0 0 8px;
  border-bottom: none;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
  font-weight: 300;
}

.logo-divider {
  text-align: center;
  margin: 0 0 32px;
}

.logo-divider img {
  width: 80px;
  height: auto;
  opacity: 0.85;
}
.callout {
  background: var(--sand);
  border: 1px solid var(--border);
  padding: 40px 40px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(61,43,26,0.07);
  margin: 48px 0 0;
  text-align: center;
}

.callout h2 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  font-style: italic;
  color: var(--brown);
  margin: 0 0 12px;
}

.callout p {
  color: var(--text-muted);
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto 28px;
}

.callout a {
  display: inline-block;
  background: var(--amber);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 2px;
  border: none;
  transition: background 0.2s, transform 0.15s;
}

.callout a:hover {
  background: var(--amber-light);
  transform: translateY(-1px);
}

/* ── TESTIMONIALS ── */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 28px 0;
}

.testimonial {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 28px;
  position: relative;
  box-shadow: 0 2px 12px rgba(61,43,26,0.07);
}

.testimonial::before {
  content: '\201C';
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--amber);
  opacity: 0.4;
  position: absolute;
  top: 10px;
  left: 16px;
}

.testimonial p {
  font-style: italic;
  font-weight: 300;
  color: var(--text);
  padding-top: 16px;
  margin-bottom: 10px;
}

.testimonial cite {
  font-style: normal;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.06em;
}

/* ── CONTACT LAYOUT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}

.contact-info-item .label {
  font-size: 0.73rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
}

.contact-info-item .value {
  font-weight: 300;
  color: var(--text);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

.form-field input,
.form-field textarea,
.form-field select {
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 11px 13px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--amber);
}

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

.btn-primary {
  background: var(--brown);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  padding: 13px 28px;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}

.btn-primary:hover { background: var(--brown-2); }

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.faq-item:first-child { padding-top: 0; }

.faq-question {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 10px;
}

/* ── DIVIDERS ── */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 40px 0;
}

.gold-rule {
  border: none;
  width: 48px;
  margin: 20px 0 28px;
}

/* ── FOOTER ── */
footer {
  background: var(--sand-dark);
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--amber);
  font-weight: 400;
}

.footer-links {
  display: flex;
  gap: 20px;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  border: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--amber); }

.footer-copy {
  font-size: 0.76rem;
  width: 100%;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-legal {
  font-size: 0.74rem;
  width: 100%;
  text-align: center;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.6;
}

.footer-legal a {
  color: var(--amber);
  text-decoration: none;
  border: none;
}

.footer-legal a:hover {
  color: var(--brown);
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  nav { padding: 0 20px; position: relative; }
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--parchment-2);
    flex-direction: column;
    padding: 12px 0 20px;
    gap: 0;
    border-top: 1px solid var(--border);
    z-index: 200;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 24px; font-size: 0.82rem; }
  .hero-text { padding: 28px 24px 36px; }
  .hero-right { align-items: flex-start; }
  main { padding-left: 24px; padding-right: 24px; }
  .page-header { padding: 36px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  footer { padding: 32px 24px; }
}
