:root {
  --cream: #f7f2ea;
  --ivory: #fcf9f4;
  --sand: #efe5d7;
  --terracotta: #c96c45;
  --olive: #667c52;
  --teal: #3b8c88;
  --gold: #d8a43a;
  --ink: #3c312a;
  --muted: #5f5a54;
  --line: #e4d9cb;
  --white: #fff;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--muted);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.7;
  overflow-wrap: anywhere;
}
h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.05;
  font-weight: 600;
}
h1 {
  font-size: clamp(3.5rem, 7vw, 6.7rem);
  letter-spacing: -0.04em;
}
h2 {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  letter-spacing: -0.03em;
}
h3 {
  font-size: 2rem;
}
p {
  margin: 0 0 1rem;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(1180px, calc(100% - 4rem));
  margin-inline: auto;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--terracotta);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow:before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}
.header {
  position: relative;
  z-index: 5;
  padding: 1.25rem 0;
  background: rgba(252, 249, 244, 0.9);
  backdrop-filter: blur(12px);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
  font-weight: 700;
}
.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 12px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}
.nav-links a {
  position: relative;
}
.nav-links a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  transition: 0.25s;
}
.nav-links a:hover:after,
.nav-links a.active:after {
  width: 100%;
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  color: var(--ink);
  font-size: 1.5rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid var(--terracotta);
  background: var(--terracotta);
  color: white;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  transition: 0.25s;
  box-shadow: 0 10px 24px #c96c4525;
}
.button:hover {
  background: #ad5736;
  transform: translateY(-3px);
}
.button.alt {
  background: transparent;
  color: var(--terracotta);
  box-shadow: none;
}
.hero {
  padding: 5rem 0 6rem;
  background: var(--ivory);
}
.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 5rem;
}
.hero-copy p {
  max-width: 510px;
  font-size: 1.1rem;
  margin: 1.7rem 0 2rem;
}
.hero-image {
  display: block;
  width: 100%;
  min-height: 590px;
  border-radius: 180px 180px 26px 26px;
  object-fit: cover;
  background: linear-gradient(135deg, #d6b497, #8d674f 55%, #4d4239);
  overflow: hidden;
  box-shadow: 20px 24px 0 var(--sand);
}
.section {
  padding: 7rem 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: 3rem;
}
.section-head p {
  max-width: 410px;
}
.menu-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.menu-card {
  min-height: 290px;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.25s;
}
.menu-card:nth-child(2n) {
  margin-top: 3rem;
}
.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 30px #3c312a12;
}
.menu-card .icon {
  font-size: 2.1rem;
  color: var(--olive);
}
.menu-card h3 {
  font-size: 2.15rem;
}
.menu-card span {
  display: flex;
  justify-content: space-between;
  color: var(--terracotta);
  font-weight: 800;
}
.three-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.mini-block {
  padding: 2rem 0;
  border-top: 2px solid var(--terracotta);
}
.mini-block:nth-child(2) {
  border-color: var(--teal);
}
.mini-block:nth-child(3) {
  border-color: var(--gold);
}
.mini-block p {
  margin-top: 1rem;
}
.reasons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.reason {
  padding: 2rem 1.25rem;
  border-right: 1px solid var(--line);
}
.reason:last-child {
  border: 0;
}
.reason b {
  display: block;
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  line-height: 1.1;
}
.reason small {
  display: block;
  margin-top: 0.7rem;
  color: var(--olive);
  font-weight: 800;
}
.experience {
  background: var(--sand);
}
.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.photo {
  display: block;
  width: 100%;
  min-height: 230px;
  border-radius: 24px;
  object-fit: cover;
  background: var(--sand);
}
.photo:first-child {
  grid-row: span 2;
  min-height: 480px;
}
.cta {
  padding: 5rem 0;
  background: linear-gradient(120deg, var(--sand), #f5d1bd);
  text-align: center;
}
.cta p {
  max-width: 590px;
  margin: 1.2rem auto 2rem;
}
.page-hero {
  padding: 5rem 0 4rem;
  background: var(--ivory);
}
.page-hero p {
  max-width: 650px;
  margin-top: 1.4rem;
  font-size: 1.08rem;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.soft-card {
  padding: 3rem;
  border-radius: 28px;
  background: var(--sand);
}
.quote {
  padding: 2.3rem;
  border-left: 3px solid var(--terracotta);
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1.2;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.team-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}
.team-photo {
  display: block;
  width: 100%;
  height: 310px;
  object-fit: cover;
  background: var(--sand);
}
.team-card article {
  padding: 1.5rem;
}
.team-card cite {
  display: block;
  margin-top: 1rem;
  color: var(--olive);
  font-size: 0.9rem;
}
.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 3rem;
}
.service {
  padding: 2.2rem;
  border-radius: 24px;
  background: var(--ivory);
  border: 1px solid var(--line);
}
.service .number {
  color: var(--terracotta);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.service h3 {
  margin: 0.7rem 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
}
.contact-details {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}
.contact-details strong {
  display: block;
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
}
.form {
  display: grid;
  gap: 1rem;
  padding: 2rem;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 28px;
}
.field {
  display: grid;
  gap: 0.4rem;
}
.field label {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--ink);
}
input,
textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}
textarea {
  min-height: 150px;
  resize: vertical;
}
.success {
  display: none;
  padding: 1rem;
  border-radius: 12px;
  background: #dfead6;
  color: #3f6333;
  font-weight: 800;
}
.success.show {
  display: block;
}
.map {
  min-height: 300px;
  margin-top: 1.5rem;
  border-radius: 24px;
  background: linear-gradient(135deg, #b6c8bd, #d8c8ac);
  display: grid;
  place-items: center;
  color: #315b59;
  font-weight: 800;
}
.legal {
  max-width: 820px;
}
.legal h2 {
  font-size: 2.5rem;
  margin: 3rem 0 1rem;
}
.legal h3 {
  font-size: 1.6rem;
  margin: 2rem 0 0.5rem;
}
.footer {
  padding: 4rem 0 1.5rem;
  background: var(--ink);
  color: #d9d0c5;
}
.footer .brand,
.footer h3 {
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2rem;
}
.footer h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.footer a {
  display: block;
  margin: 0.4rem 0;
  color: #d9d0c5;
}
.footer a:hover {
  color: #fff;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid #ffffff22;
  font-size: 0.78rem;
}
.reveal {
  animation: rise 0.7s both;
}
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 900px) {
  .hero-grid,
  .experience-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .menu-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .three-cols,
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .reasons {
    grid-template-columns: 1fr 1fr;
  }
  .reason:nth-child(2) {
    border-right: 0;
  }
  .reason:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .story-grid {
    grid-template-columns: auto;
  }
  .container {
    width: calc(100% - 2rem);
  }
  .header {
    padding: 1rem 0;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 1rem;
    right: 1rem;
    padding: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    background: var(--ivory);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 15px 30px #3c312a15;
  }
  .nav-links.open {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .nav > .button {
    display: none;
  }
  .hero,
  .section {
    padding: 4rem 0;
  }
  .hero-image {
    min-height: 390px;
  }
  .menu-cards,
  .three-cols,
  .team-grid,
  .service-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .menu-card:nth-child(2n) {
    margin-top: 0;
  }
  .section-head {
    display: block;
  }
  .reasons {
    grid-template-columns: 1fr;
  }
  .reason,
  .reason:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .reason:last-child {
    border-bottom: 0;
  }
  .collage {
    gap: 0.6rem;
  }
  .photo {
    min-height: 170px;
  }
  .photo:first-child {
    min-height: 350px;
  }
  .soft-card {
    padding: 2rem;
  }
  .footer-bottom {
    display: block;
  }
  .footer-bottom > * {
    margin-top: 0.5rem;
  }
}
