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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #f7f5f1;
  color: #2c2a26;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

address {
  font-style: normal;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: #2c2a26;
  color: #f7f5f1;
  text-decoration: none;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  isolation: isolate;
  background: rgba(247, 245, 241, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e2ddd4;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0.5rem 1.5rem;
}

.logo {
  display: block;
  margin-right: auto;
  line-height: 0;
  text-decoration: none;
}

.logo img {
  display: block;
  height: 3.25rem;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.5rem;
}

.site-nav a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b665c;
  text-decoration: none;
  transition: color 0.15s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #2c2a26;
}

.site-nav a[aria-current] {
  color: #2c2a26;
  text-decoration: underline;
  text-underline-offset: 0.35em;
}

/* Main layout */

main {
  flex: 1;
}

.page-content {
  padding: 4rem 0 5rem;
}

#home,
#about,
#services,
#contact {
  scroll-margin-top: 6.5rem;
}

#about,
#services,
#contact {
  border-top: 1px solid #e2ddd4;
}

.section-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.content-narrow {
  max-width: 40rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Hero — contained, centered plan */

.hero {
  margin: 0;
  width: 100%;
  background: #f7f5f1;
  display: flex;
  justify-content: center;
}

.hero img {
  width: 100%;
  max-width: 800px;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Home intro */

.home-intro {
  padding-top: 3.5rem;
}

.intro-lead {
  margin: 0 0 1.25rem;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 400;
  line-height: 1.45;
  color: #2c2a26;
}

.intro-text {
  margin: 0 0 1.5rem;
  color: #4a4740;
}

.intro-link a {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #2c2a26;
  text-decoration: none;
  border-bottom: 1px solid #2c2a26;
  padding-bottom: 0.15em;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.intro-link a:hover {
  color: #5c6b52;
  border-color: #5c6b52;
}

/* Typography */

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a8478;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 400;
  color: #2c2a26;
  line-height: 1.2;
}

h1,
.section-heading {
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  margin-bottom: 1.5rem;
}

.section-lead {
  margin: 0 0 2.5rem;
  font-size: 1.0625rem;
  color: #5c584f;
}

/* About */

.about-copy p {
  margin: 0 0 1.125rem;
  color: #4a4740;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

/* Services */

.services-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #e2ddd4;
}

.services-list li {
  padding: 2rem 0;
  border-bottom: 1px solid #e2ddd4;
}

.services-list h3 {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 400;
  margin: 0 0 0.65rem;
  color: #2c2a26;
  line-height: 1.2;
}

.services-list p {
  margin: 0;
  max-width: 36rem;
  color: #4a4740;
}

.services-list + .intro-link {
  margin-top: 2rem;
}

/* Contact — TWLA-inspired split layout */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-details .section-heading {
  margin-bottom: 2rem;
}

.contact-address p {
  margin: 0 0 0.75rem;
  font-size: 1.0625rem;
  color: #2c2a26;
}

.contact-location {
  margin-bottom: 1.25rem !important;
  font-size: 1.125rem !important;
}

.contact-label {
  display: inline-block;
  min-width: 1.5rem;
  font-weight: 600;
  margin-right: 0.35rem;
}

.contact-address a {
  color: #2c2a26;
  text-decoration: none;
  border-bottom: 1px solid #c8c2b6;
  transition: border-color 0.15s ease;
}

.contact-address a:hover {
  border-color: #2c2a26;
}

.contact-note {
  margin: 2rem 0 0;
  max-width: 22rem;
  font-size: 0.9375rem;
  color: #6b665c;
}

/* Form */

.contact-form {
  margin: 0;
}

.contact-field {
  margin-bottom: 1.125rem;
}

.contact-field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b665c;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 0.75rem 0;
  font: inherit;
  color: #2c2a26;
  background: transparent;
  border: none;
  border-bottom: 1px solid #d4cec2;
  border-radius: 0;
  transition: border-color 0.15s ease;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #b0a99c;
}

.contact-field input:hover,
.contact-field textarea:hover {
  border-color: #a8a095;
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: #2c2a26;
}

.contact-field textarea {
  min-height: 8rem;
  resize: vertical;
}

.contact-submit {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.875rem 2rem;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f7f5f1;
  background: #2c2a26;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease;
}

.contact-submit:hover {
  background: #4a4740;
}

.contact-submit:focus-visible {
  outline: 2px solid #2c2a26;
  outline-offset: 3px;
}

/* Footer */

.site-footer {
  padding: 2.5rem 0;
  isolation: isolate;
  border-top: 1px solid #e2ddd4;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  font-size: 0.8125rem;
  color: #8a8478;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  display: inline-block;
  line-height: 0;
}

.footer-logo img {
  width: auto;
  height: 11rem;
  max-width: min(100%, 18rem);
  object-fit: contain;
  mix-blend-mode: multiply;
}

.footer-copy {
  margin: 0;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
}

.footer-social-link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b665c;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.footer-social-link:hover {
  color: #2c2a26;
  border-color: #c8c2b6;
}

/* Responsive */

@media (min-width: 48rem) {
  .contact-layout {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
  }
}

