/* ============ TOKENS ============ */
:root {
  --ink: #1C2B22;
  --sand: #F6F1E7;
  --terracotta: #B5481F;
  --terracotta-dark: #8F3717;
  --sage: #7A8C7A;
  --tan: #D9C9A8;
  --white: #FFFDF8;

  --font-display: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;

  --max-width: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.55;
}

h1, h2, h3 {
  font-family: var(--font-display);
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.01em;
}

p { margin: 0; }

a {
  color: inherit;
  text-decoration: none;
}

:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.9rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.7rem;
  border-radius: 3px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  font-family: var(--font-body);
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
}
.btn-primary:hover { background: var(--terracotta-dark); }

.btn-ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--sand); }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 241, 231, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--tan);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 3px;
  background: var(--ink);
  color: var(--sand);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 3px;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.92rem;
  font-weight: 500;
}

.main-nav a {
  opacity: 0.85;
  transition: opacity 0.15s ease;
}
.main-nav a:hover { opacity: 1; }

.nav-cta {
  background: var(--ink);
  color: var(--sand) !important;
  padding: 0.55rem 1.1rem;
  border-radius: 3px;
  opacity: 1 !important;
}
.nav-cta:hover { background: var(--terracotta); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
}

/* ============ HERO ============ */
.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5.5rem 2rem 4rem;
}

.hero-content { max-width: 700px; }

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.08;
  margin-bottom: 1.6rem;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--ink);
  opacity: 0.78;
  max-width: 540px;
  margin-bottom: 2.2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============ LOCALITY STRIP (signature) ============ */
.locality-strip {
  background: var(--ink);
  color: var(--sand);
  overflow: hidden;
  white-space: nowrap;
  padding: 1.1rem 0;
  display: flex;
}

.locality-track {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 450;
  padding-right: 0.8rem;
  animation: scroll-left 32s linear infinite;
  flex-shrink: 0;
}

.locality-track span:nth-child(even) {
  color: var(--terracotta);
  opacity: 0.85;
  font-size: 0.9rem;
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

@media (prefers-reduced-motion: reduce) {
  .locality-track { animation: none; }
  .locality-strip { overflow-x: auto; }
}

/* ============ TRUST STRIP ============ */
.trust-strip {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.trust-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--terracotta);
}

.trust-label {
  font-size: 0.9rem;
  color: var(--sage);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.2rem;
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--tan);
}

@media (max-width: 700px) {
  .trust-divider { display: none; }
}

/* ============ ABOUT ============ */
.about {
  background: var(--white);
  border-top: 1px solid var(--tan);
  border-bottom: 1px solid var(--tan);
}

.about-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
}

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

.about-text h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 1.4rem;
}

.about-text p {
  margin-bottom: 1.1rem;
  opacity: 0.85;
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.about-row {
  border-left: 2px solid var(--terracotta);
  padding-left: 1.2rem;
}

.about-locality-tag {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.about-row p {
  font-size: 0.9rem;
  color: var(--sage);
}

/* ============ CONTACT ============ */
.contact-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

.contact-text h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 1rem;
}

.contact-text p { opacity: 0.8; margin-bottom: 2rem; max-width: 420px; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-line {
  display: flex;
  gap: 0.8rem;
  font-size: 0.95rem;
}

.contact-label {
  width: 70px;
  flex-shrink: 0;
  color: var(--terracotta);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-top: 0.15rem;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--tan);
  border-radius: 4px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--tan);
  border-radius: 3px;
  background: var(--sand);
  color: var(--ink);
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--terracotta);
  outline-offset: 1px;
}

.form-note {
  font-size: 0.85rem;
  color: var(--terracotta);
  min-height: 1.2em;
}

/* ============ FOOTER ============ */
.site-footer {
  padding: 2rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--sage);
}

/* ============ MOBILE NAV ============ */
@media (max-width: 760px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }

  .main-nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--sand);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.2rem;
    border-bottom: 1px solid var(--tan);
  }
}
