@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap");

:root {
  --peach: #f9e7dd;
  --cream: #fff8f3;
  --sand: #f2ddd0;
  --green: #146c5a;
  --terracotta: #d96a43;
  --wine: #8e2c48;
  --ink: #24211f;
  --text: #56504c;
  --muted: #8e8680;
  --border: #e8d6cb;
  --white: #fff;
  --shadow: 0 18px 50px rgba(70, 38, 25, 0.1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  line-height: 1.65;
  overflow-wrap: anywhere;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button {
  cursor: pointer;
  border: 0;
}
.container {
  width: min(1180px, calc(100% - 3rem));
  margin: auto;
}
.section {
  padding: 7rem 0;
}
.eyebrow {
  color: var(--terracotta);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.73rem;
}
.section-heading {
  max-width: 680px;
  margin-bottom: 3rem;
}
.section-heading h2 {
  margin: 0.5rem 0 1rem;
  color: var(--ink);
  font:
    600 clamp(2.2rem, 4vw, 4rem)/1.08 "Playfair Display",
    serif;
  letter-spacing: -0.04em;
}
.section-heading p {
  font-size: 1.05rem;
  color: var(--muted);
}
h1,
h2,
h3,
h4 {
  color: var(--ink);
}
p {
  margin: 0 0 1rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  transition: 0.25s ease;
  box-shadow: 0 10px 22px rgba(20, 108, 90, 0.18);
}
.active.btn:hover {
  background: var(--terracotta);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(217, 106, 67, 0.22);
}
.btn-light {
  background: var(--white);
  color: var(--green);
}
.text-link {
  color: var(--green);
  font-weight: 700;
}
.text-link span {
  display: inline-block;
  transition: 0.25s;
}
.text-link:hover span {
  transform: translateX(5px);
}
.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  padding: 1.4rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  font-weight: 700;
  font-size: 1.25rem;
}
.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.nav {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  font-size: 0.9rem;
  color: var(--ink);
}
.nav a {
  transition: 0.2s;
}
.nav a:hover,
.nav a.active {
  color: var(--terracotta);
}
.nav.is-open {
  color: var(--ink);
}
.menu-toggle {
  display: none;
  background: none;
  color: var(--ink);
  font-size: 1.7rem;
}
.home-page .brand,
.home-page .nav,
.home-page .menu-toggle {
  color: var(--white);
}
.home-page .nav.is-open {
  color: var(--ink);
}
.hero {
  min-height: 760px;
  display: flex;
  align-items: center;
  position: relative;
  background:
    linear-gradient(90deg, rgba(36, 33, 31, 0.82), rgba(36, 33, 31, 0.22)),
    url("/images/1.jpg") center/cover;
  color: #fff;
}
.hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 130px;
  background: linear-gradient(transparent, var(--cream));
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding-top: 5rem;
}
.hero h1 {
  margin: 1rem 0;
  color: #fff;
  font:
    600 clamp(3.2rem, 7vw, 6.7rem)/0.96 "Playfair Display",
    serif;
  letter-spacing: -0.055em;
}
.hero p {
  font-size: 1.12rem;
  max-width: 580px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}
.hero .eyebrow {
  color: #f2b395;
}
.page-hero {
  padding: 12rem 0 6rem;
  background: var(--peach);
}
.page-hero h1 {
  max-width: 800px;
  margin: 0.6rem 0 1rem;
  font:
    600 clamp(3rem, 7vw, 6rem)/0.98 "Playfair Display",
    serif;
  letter-spacing: -0.055em;
}
.page-hero p {
  max-width: 640px;
  font-size: 1.1rem;
  color: var(--text);
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: 0.3s;
}
.card:hover {
  transform: translateY(-8px);
}
.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--peach);
  color: var(--green);
  font-size: 1.35rem;
  margin-bottom: 1.3rem;
}
.card h3 {
  margin: 0.2rem 0 0.7rem;
  font-size: 1.3rem;
}
.card p {
  color: var(--muted);
  font-size: 0.95rem;
}
.services-grid {
  grid-template-columns: repeat(5, 1fr);
}
.services-grid .card {
  padding: 1.4rem;
}
.services-grid .card h3 {
  font-size: 1.05rem;
}
.features {
  background: var(--peach);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.feature {
  padding: 1.7rem;
  border-left: 2px solid var(--terracotta);
}
.feature strong {
  display: block;
  color: var(--ink);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}
.feature span {
  color: var(--muted);
  font-size: 0.9rem;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
}
.timeline:before {
  content: "";
  position: absolute;
  top: 24px;
  left: 7%;
  right: 7%;
  height: 1px;
  background: var(--border);
}
.step {
  position: relative;
}
.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  border: 7px solid var(--cream);
  outline: 1px solid var(--green);
  margin-bottom: 1.4rem;
}
.step h3 {
  font-size: 1.05rem;
}
.step p {
  color: var(--muted);
  font-size: 0.9rem;
}
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: 1rem;
}
.work-item {
  min-height: 390px;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #ddd url("/images/2.jpg") center/cover;
}
.work-item:nth-child(2) {
  background-image: url("/images/3.jpg");
  margin-top: 3rem;
}
.work-item:nth-child(3) {
  background-image: url("/images/4.jpg");
}
.work-item:after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(20, 15, 12, 0.9));
}
.work-copy {
  position: absolute;
  z-index: 1;
  bottom: 1.6rem;
  left: 1.6rem;
  right: 1.6rem;
  color: #fff;
}
.work-copy h3 {
  color: #fff;
  margin: 0.2rem 0;
}
.work-copy p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
}
.stats {
  background: var(--wine);
  color: #fff;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat strong {
  display: block;
  font:
    600 clamp(2.4rem, 5vw, 4.5rem)/1 "Playfair Display",
    serif;
}
.stat span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}
.cta {
  margin: 0 0 7rem;
  border-radius: 36px;
  padding: 4rem;
  background: linear-gradient(115deg, var(--sand), #fceee6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.cta h2 {
  font:
    600 clamp(2rem, 4vw, 3.5rem)/1.1 "Playfair Display",
    serif;
  margin: 0.4rem 0;
}
.cta p {
  color: var(--text);
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.split-image {
  min-height: 520px;
  border-radius: 30px;
  background: url("/images/5.jpg") center/cover;
}
.quote {
  padding: 8rem 10%;
  background: #fff;
  text-align: center;
}
.quote blockquote {
  max-width: 850px;
  margin: auto;
  font:
    500 clamp(2rem, 4vw, 4.2rem)/1.15 "Playfair Display",
    serif;
  color: var(--ink);
}
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.team-card {
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.team-photo {
  height: 270px;
  background: center/cover url("/images/team_1.jpg");
}
.team-card:nth-child(2) .team-photo {
  background-image: url("/images/team_2.jpg");
}
.team-card:nth-child(3) .team-photo {
  background-image: url("/images/team_3.jpg");
}
.team-card:nth-child(4) .team-photo {
  background-image: url("/images/team_4.jpg");
}
.team-copy {
  padding: 1.3rem;
}
.team-copy h3 {
  margin: 0;
}
.role {
  color: var(--terracotta);
  font-size: 0.8rem;
  font-weight: 700;
}
.team-copy p {
  font-size: 0.9rem;
  color: var(--muted);
}
.service-list {
  display: grid;
  gap: 1rem;
}
.service-row {
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
}
.service-row .icon {
  margin: 0;
}
.service-row h3 {
  margin: 0 0 0.5rem;
  font:
    600 1.7rem "Playfair Display",
    serif;
}
.service-row ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}
.additional {
  grid-template-columns: repeat(4, 1fr);
}
details {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 1.3rem 10px;
}
summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 700;
}
details p {
  margin: 1rem 0 0;
  color: var(--muted);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-card,
.contact-info,
.map {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 2.2rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.field.full {
  grid-column: 1/-1;
}
.field label {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.88rem;
}
.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  background: var(--cream);
  color: var(--ink);
  outline: none;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(20, 108, 90, 0.1);
}
.field textarea {
  min-height: 140px;
  resize: vertical;
}
.info-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}
.info-item strong {
  display: block;
  color: var(--ink);
}
.info-item a {
  color: var(--green);
  text-decoration: underline;
}
.map {
  min-height: 300px;
  background:
    linear-gradient(135deg, rgba(249, 231, 221, 0.8), rgba(242, 221, 208, 0.8)),
    url("/images/6.jpg") center/cover;
  display: flex;
  align-items: end;
}
.map-label {
  background: #fff;
  padding: 1rem 1.2rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
}
.legal {
  max-width: 850px;
}
.legal h2 {
  font:
    600 1.7rem "Playfair Display",
    serif;
  margin: 2.5rem 0 0.6rem;
}
.legal ol {
  padding-left: 1.4rem;
}
.legal li {
  padding-left: 0.4rem;
  margin-bottom: 1rem;
}
.notice {
  padding: 1.2rem 1.5rem;
  border-left: 4px solid var(--terracotta);
  background: var(--peach);
  border-radius: 0 14px 14px 0;
}
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.68);
  padding: 4rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
}
.site-footer .brand {
  color: #fff;
}
.site-footer h3 {
  color: #fff;
  font-size: 1rem;
  margin: 0 0 1rem;
}
.site-footer p {
  font-size: 0.9rem;
}
.site-footer a:hover {
  color: #fff;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 3rem;
  padding-top: 1.2rem;
  font-size: 0.78rem;
}
.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(36, 33, 31, 0.55);
  display: grid;
  place-items: center;
  padding: 1rem;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
}
.modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}
.modal {
  max-width: 430px;
  background: #fff;
  border-radius: 25px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}
.modal .icon {
  margin: 0 auto 1rem;
  background: #e4f2ed;
  color: var(--green);
}
.modal h2 {
  margin: 0.3rem 0 0.5rem;
  font:
    600 2rem "Playfair Display",
    serif;
}
.modal p {
  color: var(--muted);
}
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .feature-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .split {
    gap: 2rem;
  }
  .work-grid {
    grid-template-columns: 1fr 1fr;
  }
  .work-item:nth-child(2) {
    margin-top: 0;
  }
  .work-item:last-child {
    grid-column: 1/-1;
  }
  .additional {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .container {
    width: calc(100% - 2rem);
  }
  .section {
    padding-block: 3rem;
    padding-inline: 1rem;
  }
  .page-hero {
    padding: 9rem 1rem 3rem;
  }
  .hero {
    min-height: 680px;
  }
  .hero-content {
    padding-top: 4rem;
  }
  .nav {
    position: absolute;
    top: 75px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--cream);
    padding: 1rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
  }
  .nav.is-open {
    display: flex;
  }
  .nav a {
    padding: 0.5rem;
  }
  .menu-toggle {
    display: block;
  }
  .hero h1 {
    font-size: 3.5rem;
  }
  .services-grid,
  .cards,
  .feature-grid,
  .stats-grid,
  .timeline,
  .split,
  .work-grid,
  .values,
  .team-grid,
  .contact-grid,
  .footer-grid,
  .form-grid,
  .service-row {
    grid-template-columns: 1fr;
  }
  .timeline:before {
    top: 24px;
    bottom: 24px;
    left: 23px;
    width: 1px;
    height: auto;
    right: auto;
  }
  .step {
    display: grid;
    grid-template-columns: 48px 1fr;
    column-gap: 1rem;
  }
  .step-number {
    grid-row: span 2;
    margin: 0;
  }
  .work-item {
    min-height: 330px;
  }
  .cta {
    margin-bottom: 3rem;
    padding: 2rem;
    display: block;
    border-radius: 25px;
  }
  .cta .btn {
    margin-top: 1rem;
  }
  .split-image {
    min-height: 340px;
  }
  .quote {
    padding: 4rem 1rem;
  }
  .service-row {
    gap: 1rem;
  }
  .service-row .icon {
    margin-bottom: 0.4rem;
  }
  .additional {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    display: block;
  }
  .footer-bottom > * {
    margin-bottom: 0.8rem;
  }
  .form-card,
  .contact-info,
  .map {
    padding: 1.3rem;
  }
}
