:root {
  --navy: #14293f;
  --navy-dark: #0e1d2e;
  --gray: #6b7280;
  --gray-light: #9aa1ab;
  --bg: #ffffff;
  --bg-alt: #f4f3f0;
  --border: #e2e0da;
  --font-heading: Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1140px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.container.narrow {
  max-width: 760px;
}

section {
  scroll-margin-top: 96px;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.2;
}

.eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 10px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo-img {
  height: 52px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 32px;
}

.main-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--gray);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Reveal animation */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero */

.hero {
  padding: 110px 0 90px;
  background:
    linear-gradient(90deg, rgba(20,41,63,0.05) 1px, transparent 1px) center / 48px 48px,
    linear-gradient(0deg, rgba(20,41,63,0.05) 1px, transparent 1px) center / 48px 48px,
    var(--bg-alt);
  text-align: center;
}

.hero-title {
  font-size: clamp(1.7rem, 8vw, 3.6rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 22px;
  overflow-wrap: break-word;
  hyphens: none;
}

.hero-subtitle {
  max-width: 620px;
  margin: 0 auto 34px;
  color: var(--gray);
  font-size: 1.1rem;
}

.badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.badge-line {
  height: 1px;
  width: 60px;
  background: var(--gray-light);
}

.badge-text {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  white-space: nowrap;
}

/* Who we are */

.who-we-are {
  padding: 90px 0;
  text-align: center;
}

.who-we-are p {
  color: var(--gray);
  margin-bottom: 18px;
  font-size: 1.05rem;
}

.who-we-are p:last-child {
  margin-bottom: 0;
}

/* Services */

.services {
  background: var(--bg-alt);
  padding: 90px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.services-list {
  display: flex;
  flex-direction: column;
}

.service-item {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

.services-list .service-item:last-child {
  border-bottom: 1px solid var(--border);
}

.service-item h3 {
  font-size: 1.25rem;
  padding-left: 20px;
  border-left: 2px solid var(--navy);
}

.service-item p {
  color: var(--gray);
}

/* About owner */

.about-owner {
  padding: 90px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: start;
}

.about-photo img {
  border-radius: 4px;
  width: 100%;
}

.about-role {
  color: var(--gray);
  font-weight: 500;
  margin-bottom: 24px;
}

.about-copy p {
  color: var(--gray);
  margin-bottom: 18px;
}

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

/* Contact */

.contact {
  background: var(--bg-alt);
  padding: 90px 0;
}

.contact .section-header {
  text-align: left;
  margin-bottom: 40px;
}

.contact-intro {
  color: var(--gray);
  margin-top: 8px;
}

.contact-form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--navy);
}

.optional {
  font-weight: 400;
  color: var(--gray-light);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--bg);
  transition: border-color 0.2s ease;
}

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

.form-field textarea {
  resize: vertical;
}

.btn-submit {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-submit:hover {
  background: var(--navy-dark);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-status {
  margin-top: 16px;
  font-size: 0.9rem;
}

.form-status.success {
  color: #1a7f45;
}

.form-status.error {
  color: #b3261e;
}

/* Footer */

.site-footer {
  background: var(--navy-dark);
  color: #fff;
  text-align: center;
  padding: 64px 0;
}

.footer-logo {
  height: 44px;
  width: auto;
  margin: 0 auto 20px;
}

.footer-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b7c0cb;
  margin-bottom: 28px;
}

.badge-footer .badge-line {
  background: rgba(255,255,255,0.25);
}

.badge-footer .badge-text {
  color: #fff;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: #fff;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.footer-copy {
  margin-top: 28px;
  font-size: 0.78rem;
  color: #7c8794;
}

/* Responsive */

@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-photo {
    max-width: 280px;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 720px) {
  .main-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }

  .main-nav.is-open {
    max-height: 260px;
  }

  .main-nav a {
    width: 100%;
    text-align: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    padding: 80px 0 60px;
  }

  .who-we-are,
  .services,
  .about-owner,
  .contact {
    padding: 60px 0;
  }

  .contact-form {
    padding: 28px 20px;
  }
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .badge {
    gap: 10px;
  }

  .badge-text {
    font-size: 0.68rem;
    white-space: normal;
    max-width: 200px;
    line-height: 1.5;
  }

  .badge-line {
    width: 20px;
  }
}
