:root {
  --cream: #fff8ed;
  --paper: #fffdf8;
  --clay: #b86d42;
  --clay-dark: #72432c;
  --green: #405c3d;
  --sage: #dce7d1;
  --ink: #253024;
  --muted: #66705f;
  --shadow: 0 22px 60px rgba(37, 48, 36, .16);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.hero {
  min-height: 92vh;
  padding: 24px clamp(20px, 5vw, 72px);
  color: white;
  background: linear-gradient(90deg, rgba(31,44,28,.78), rgba(31,44,28,.28)), url("images/image1.jpg") center/cover;
  display: flex;
  flex-direction: column;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 12px 0;
}
.brandX {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}
.brand-mark{
  width:42px;height:42px;border-radius:50%;
  display:grid;place-items:center;
  background:var(--ink);
  color:var(--cream);
  font-weight:700;
  letter-spacing:.04em;
}
.brand strong{display:block;text-transform:uppercase;letter-spacing:.08em}
.brand small{display:block;color:var(--cream);font-size:.78rem}

.nav-links { display: flex; gap: 22px; flex-wrap: wrap; font-weight: 600; }
.hero-content {
  max-width: 780px;
  margin: auto 0;
  padding: 90px 0;
}
.eyebrow, .section-kicker {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .84rem;
  font-weight: 700;
  color: #f3d09a;
}
h1, h2, h3 { font-family: "Playfair Display", serif; line-height: 1.08; margin: 0; }
h1 { font-size: clamp(3rem, 8vw, 6.8rem); max-width: 980px; }
h2 { font-size: clamp(2.2rem, 5vw, 4rem); }
h3 { font-size: 1.55rem; }
.lead { max-width: 650px; font-size: 1.25rem; margin: 26px 0 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--clay);
  color: white;
  font-weight: 700;
  box-shadow: var(--shadow);
}
.button.ghost { background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.5); }
main { padding: clamp(36px, 7vw, 96px) clamp(20px, 5vw, 72px); }
.intro {
  display: grid;
  grid-template-columns: minmax(240px, .8fr) 1fr;
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
  margin-bottom: 54px;
}
.intro p:last-child { font-size: 1.25rem; color: var(--muted); margin: 0; }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 90px;
}
.card, .contact, .feature {
  background: var(--paper);
  border: 1px solid rgba(64,92,61,.12);
  border-radius: 30px;
  box-shadow: var(--shadow);
}
.card { padding: 30px; }
.card span { color: var(--clay); font-weight: 800; }
.card p { color: var(--muted); margin-bottom: 0; }
.feature {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 28px;
  overflow: hidden;
  margin-bottom: 90px;
}
.feature-text { padding: clamp(30px, 6vw, 64px); align-self: center; }
.feature-text p:not(.section-kicker) { color: var(--muted); font-size: 1.18rem; }
.feature img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.section-heading { margin-bottom: 24px; }

.carousel {
  position: relative;
  margin-top: 10px;
}
.carousel-viewport {
  overflow: hidden;
  border-radius: 30px;
  cursor: grab;
}
.carousel-viewport:active { cursor: grabbing; }
.carousel-track {
  display: flex;
  gap: 18px;
  will-change: transform;
  transition: transform .55s ease;
}
.carousel-slide {
  flex: 0 0 clamp(260px, 32vw, 430px);
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
  background: var(--sage);
}
.carousel-slide img {
  width: 100%;
  height: clamp(360px, 48vw, 540px);
  object-fit: cover;
}
.carousel-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 253, 248, .86);
  color: var(--ink);
  font-weight: 700;
  backdrop-filter: blur(10px);
}
.carousel-button {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 253, 248, .9);
  color: var(--green);
  box-shadow: var(--shadow);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
.carousel-prev { left: 12px; }
.carousel-next { right: 12px; }
.carousel-button:hover { background: white; }
.contact {
  margin-top: 90px;
  padding: clamp(30px, 6vw, 58px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, var(--paper), var(--sage));
}
.contact p { font-size: 1.2rem; }
footer { text-align: center; padding: 28px; color: var(--muted); }
@media (max-width: 900px) {
  .intro, .feature, .contact { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .carousel-slide { flex-basis: clamp(240px, 74vw, 390px); }
  .nav { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 560px) {
  .nav-links { gap: 12px; font-size: .95rem; }
  .carousel-button { display: none; }
  .carousel-slide img { height: 360px; }
  .contact { align-items: flex-start; }
}
.cardx {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  padding: 1.4rem;
  box-shadow: 0 10px 30px rgba(79, 56, 32, 0.08);
 }

.cardx p, .legal p { color: var(--muted); margin-bottom: 0; }
