:root {
  --bg: #f7f5f0;
  --cream: #faf8f4;
  --sage-50: #eef3ec;
  --sage-100: #d4e2d0;
  --sage-300: #7a9e7e;
  --sage-500: #4a7c59;
  --sage-700: #2d4a35;
  --rose-300: #e8a4b8;
  --rose-500: #c46d8a;
  --ink: #2a2e28;
  --muted: #5c6358;
  --line: rgba(74, 124, 89, 0.18);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(45, 74, 53, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

button {
  font: inherit;
  cursor: pointer;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(247, 245, 240, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-700);
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 36px);
  color: var(--muted);
  font-size: 14px;
}

.nav-links a,
.header-phone,
.button,
.menu-button {
  transition: transform 160ms ease, color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.nav-links a:hover,
.header-phone:hover {
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone {
  padding: 10px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 128px clamp(20px, 5vw, 72px) 56px;
}

.hero-copy {
  max-width: 650px;
  min-width: 0;
}

.hero-text {
  max-width: 570px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
}

.hero-media {
  position: relative;
  align-self: center;
  justify-self: center;
  width: min(100%, 400px);
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--sage-50);
  box-shadow: var(--shadow);
}

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

.place,
.section-label {
  margin: 0 0 18px;
  color: var(--sage-500);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.hero-copy h1 {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: clamp(44px, 6.5vw, 84px);
  line-height: 0.96;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 750;
}

.button:hover,
.header-phone:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--sage-700);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(45, 74, 53, 0.2);
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
}

.intro,
.services-section,
.gallery-section,
.contact {
  padding: clamp(72px, 10vw, 128px) clamp(20px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: clamp(32px, 8vw, 108px);
  align-items: end;
  background: var(--white);
}

.intro h2,
.section-heading h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
}

.intro > p,
.contact-copy > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.services-section {
  background: linear-gradient(180deg, var(--sage-50), var(--bg));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.service-number {
  color: var(--rose-500);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 23px;
  line-height: 1.14;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.gallery-section {
  background: var(--white);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(210px, 22vw);
  gap: 12px;
}

.gallery-item {
  display: block;
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--sage-50);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(45, 74, 53, 0.18));
  opacity: 0;
  transition: opacity 180ms ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--sage-700);
  color: var(--white);
}

.proof-item {
  display: grid;
  min-height: 190px;
  align-content: center;
  gap: 6px;
  padding: 38px clamp(20px, 5vw, 72px);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 500;
  line-height: 1;
}

.proof-item span {
  color: rgba(255, 255, 255, 0.74);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.6fr);
  gap: clamp(28px, 7vw, 92px);
  align-items: start;
  background: var(--cream);
}

.contact h2 {
  margin-bottom: 22px;
}

.hours {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.hours dt,
.hours dd {
  margin: 0;
  font-size: 15px;
}

.hours dt {
  color: var(--muted);
}

.hours dd {
  font-weight: 650;
}

.contact-panel {
  display: grid;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--sage-50);
}

.contact-panel a {
  display: flex;
  min-height: 58px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 7px;
  background: var(--white);
  color: var(--ink);
  font-weight: 720;
  box-shadow: 0 8px 24px rgba(45, 74, 53, 0.08);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--muted);
  font-size: 14px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(26, 32, 28, 0.88);
}

.lightbox[hidden] {
  display: none;
}

.lightbox button {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
}

.lightbox img {
  position: relative;
  z-index: 1;
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

body.nav-open .nav-links {
  display: flex;
  position: fixed;
  top: 76px;
  left: 16px;
  right: 16px;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(247, 245, 240, 0.98);
  box-shadow: var(--shadow);
}

body.nav-open .nav-links a {
  padding: 14px 16px;
  border-radius: 8px;
}

body.nav-open .nav-links a:hover {
  background: var(--sage-50);
}

body.nav-open .menu-button span:first-child {
  transform: translateY(6px) rotate(45deg);
}

body.nav-open .menu-button span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 110px;
  }

  .hero-media {
    order: -1;
    width: min(100%, 360px);
  }

  .intro,
  .contact,
  .proof {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-item {
    min-height: 150px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .header-phone {
    display: none;
  }

  .hero {
    padding: 98px 16px 42px;
  }

  .hero-media {
    width: min(100%, 320px);
  }

  .hero-copy h1 {
    font-size: clamp(36px, 12vw, 52px);
  }

  .hero-text {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .intro,
  .services-section,
  .gallery-section,
  .contact {
    padding: 68px 16px;
  }

  .services-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-auto-rows: 290px;
  }

  .gallery-item-large {
    grid-column: auto;
    grid-row: auto;
  }

  .service-card {
    min-height: 220px;
  }

  .site-footer {
    flex-direction: column;
    padding: 24px 16px;
  }
}
