:root {
  --forest: #1c3829;
  --forest-dark: #12251a;
  --cream: #f4efe3;
  --cream-soft: #ede5d3;
  --line: rgba(28, 56, 41, 0.15);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--forest);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  margin: 0 0 0.5em;
  color: var(--forest);
}

p { margin: 0 0 1em; }

a {
  color: var(--forest);
  text-decoration: none;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-icon {
  width: 42px;
  height: 42px;
  display: block;
  flex-shrink: 0;
}

.brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 21px;
  letter-spacing: 0.02em;
  color: var(--forest);
}

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

.main-nav a {
  font-size: 15px;
  letter-spacing: 0.03em;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.2s ease;
}

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

.phone-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  padding: 8px 20px 8px 16px;
  font-size: 14px;
  letter-spacing: 0.03em;
  transition: background 0.2s ease, color 0.2s ease;
}

.phone-pill svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.phone-pill-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.phone-pill-text small {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.65;
}

.phone-pill:hover {
  background: var(--forest);
  color: var(--cream);
}

/* Hero */

.hero {
  position: relative;
  padding: 130px 0 120px;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: hero-zoom 24s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(18, 37, 26, 0.93) 15%, rgba(18, 37, 26, 0.72) 60%, rgba(18, 37, 26, 0.5) 100%);
}

@keyframes hero-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-inner {
  display: flex;
  align-items: center;
}

.hero-text {
  max-width: 560px;
}

.hero .eyebrow {
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 13px;
  margin-bottom: 18px;
  opacity: 0.75;
}

.hero h1 {
  color: var(--cream);
  font-size: 48px;
  line-height: 1.15;
  margin-bottom: 22px;
}

.hero-sub {
  color: var(--cream);
  font-size: 18px;
  max-width: 520px;
  opacity: 0.9;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 34px;
}

.hero-credit {
  position: absolute;
  right: 14px;
  bottom: 10px;
  margin: 0;
  font-size: 11px;
  color: var(--cream);
  opacity: 0.45;
  letter-spacing: 0.02em;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 15px;
  letter-spacing: 0.03em;
  border: 1px solid var(--cream);
  transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.btn-primary {
  background: var(--cream);
  color: var(--forest);
}

.btn-primary:hover {
  opacity: 0.85;
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
}

.btn-ghost:hover {
  background: var(--cream);
  color: var(--forest);
}

/* Services */

.services {
  padding: 90px 0;
  border-bottom: 1px solid var(--line);
}

.services h2 {
  font-size: 30px;
  margin-bottom: 48px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.service-icon {
  width: 36px;
  height: 36px;
  color: var(--forest);
  margin-bottom: 18px;
}

.service h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.service p {
  font-size: 15px;
  opacity: 0.8;
  margin: 0;
}

/* Contact */

.contact {
  padding: 90px 0;
}

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

.contact h2 {
  font-size: 30px;
}

.contact-info p {
  font-size: 16px;
  opacity: 0.85;
  max-width: 380px;
}

.contact-info dl {
  margin: 28px 0 0;
}

.contact-row {
  display: flex;
  gap: 20px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.contact-row dt {
  width: 80px;
  flex-shrink: 0;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.6;
  padding-top: 2px;
}

.contact-row dd {
  margin: 0;
  font-size: 16px;
}

.contact-row a:hover {
  border-bottom: 1px solid var(--forest);
}

.contact-map {
  height: 320px;
  border: 1px solid var(--line);
  filter: sepia(8%) saturate(85%);
}

.contact-map iframe {
  display: block;
}

/* Footer */

.site-footer {
  background: var(--forest);
  color: var(--cream);
  padding: 44px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-icon {
  width: 36px;
  height: 36px;
  display: block;
  flex-shrink: 0;
}

.footer-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-name {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.02em;
  margin-right: 12px;
  color: var(--cream);
}

.footer-inner p {
  margin: 0;
  font-size: 14px;
  opacity: 0.85;
}

.site-footer a {
  color: var(--cream);
}

.footer-copy {
  margin-left: auto !important;
  opacity: 0.6 !important;
}

/* Responsive */

@media (max-width: 860px) {
  .main-nav { display: none; }
  .hero h1 { font-size: 36px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-map { height: 260px; }
  .footer-copy { margin-left: 0 !important; }
}

@media (max-width: 520px) {
  .service-grid { grid-template-columns: 1fr; }
  .hero { padding: 90px 0 70px; }
  .hero h1 { font-size: 30px; }
  .hero-actions { flex-direction: column; }
  .phone-pill-text small { display: none; }
  .brand-name { font-size: 17px; }
  .brand-icon { width: 34px; height: 34px; }
  .header-inner { padding-top: 10px; padding-bottom: 10px; }
}
