:root {
  --bg: #ffffff;
  --text: #1d2433;
  --muted: #5e6676;
  --line: rgba(29, 36, 51, 0.1);
  --card: rgba(255, 255, 255, 0.92);
  --soft: #f7f8fc;
  --accent: #b08a68;
  --accent-2: #e9ddd2;
  --shadow: 0 20px 55px rgba(31, 38, 65, 0.10);
  --radius: 26px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.bg-shape {
  position: fixed;
  border-radius: 999px;
  filter: blur(20px);
  z-index: -1;
  opacity: .55;
}
.bg-shape-1 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(176,138,104,.20), transparent 70%);
  top: -60px;
  right: -60px;
}
.bg-shape-2 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(233,221,210,.55), transparent 70%);
  bottom: 40px;
  left: -70px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-kicker {
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--accent);
  margin-bottom: .25rem;
}
.brand strong {
  font-size: 1rem;
}

.nav {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}
.nav a {
  color: var(--muted);
  font-weight: 500;
}
.nav a:hover { color: var(--text); }

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: white;
  border-radius: 12px;
  font-size: 1.2rem;
  width: 48px;
  height: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-radius: 999px;
  padding: .95rem 1.35rem;
  font-weight: 700;
  transition: .28s ease;
}
.btn-small { padding: .8rem 1.1rem; }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #8d6b4e);
  color: white;
  box-shadow: 0 14px 30px rgba(176,138,104,.25);
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-secondary {
  background: white;
  border: 1px solid var(--line);
  color: var(--text);
}
.btn-secondary:hover {
  border-color: rgba(176,138,104,.4);
  transform: translateY(-2px);
}

.hero {
  padding: 4rem 0 2.5rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 2rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .75rem;
  font-weight: 700;
  color: var(--accent);
}

h1, h2, h3 {
  margin: 0 0 1rem;
  line-height: 1.08;
}

h1, h2 {
  font-family: 'Playfair Display', serif;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: 1.25rem;
}

.hero-text,
.section-heading p,
.text-block p,
.feature-panel p,
.banner-copy p,
.social-card p,
.contact-card p,
.site-footer p,
.card p,
.card li {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin: 1.8rem 0;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}
.hero-points span,
.mini-tags span {
  padding: .62rem .95rem;
  border-radius: 999px;
  background: white;
  border: 1px solid rgba(176,138,104,.16);
  color: var(--text);
  font-size: .92rem;
  box-shadow: 0 8px 18px rgba(20, 25, 45, .05);
}

.hero-photo {
  position: relative;
  padding: 1rem 1rem 3rem 2rem;
}
.photo-frame {
  background: linear-gradient(180deg, #fff, #f5f1ed);
  border-radius: 34px;
  padding: 16px;
  box-shadow: var(--shadow);
  max-width: 520px;
  margin-left: auto;
}
.photo-frame img {
  width: 100%;
  height: 690px;
  object-fit: contain;
  object-position: center center;
  border-radius: 24px;
  background: #f7f5f2;
}

.floating-card {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 330px;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.8);
  box-shadow: var(--shadow);
  border-radius: 22px;
  padding: 1rem 1.1rem;
}
.floating-card strong {
  display: block;
  margin-bottom: .35rem;
}
.floating-card p {
  margin: 0;
  color: var(--muted);
  font-size: .96rem;
}

.section {
  padding: 5rem 0;
}
.soft-section {
  background: linear-gradient(180deg, #fff, #fbfbfd);
}

.two-col,
.split-grid,
.banner-card,
.footer-wrap {
  display: grid;
  gap: 1.5rem;
}
.two-col {
  grid-template-columns: .95fr 1.05fr;
  align-items: start;
}
.split-grid {
  grid-template-columns: 1fr 1fr;
}
.banner-card {
  grid-template-columns: 1.1fr .9fr;
  background: linear-gradient(135deg, #fff 0%, #fcf8f5 100%);
  padding: 1.5rem;
  border-radius: 34px;
  box-shadow: var(--shadow);
  align-items: center;
}
.banner-image-wrap img {
  width: 100%;
  height: 460px;
  object-fit: contain;
  object-position: center top;
  border-radius: 28px;
  background: #f9f6f2;
}

.section-heading.centered {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 2rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.card,
.feature-panel,
.value-card,
.social-card,
.contact-card {
  background: var(--card);
  border: 1px solid rgba(176,138,104,.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card,
.feature-panel {
  padding: 1.5rem;
}
.card ul {
  margin: 0;
  padding-left: 1.1rem;
}
.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent-2), white);
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 1rem;
}
.accent-card {
  background: linear-gradient(135deg, #fff, #faf3ee);
}

.feature-panel {
  min-height: 100%;
}
.mini-tags {
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.value-card {
  padding: 2rem 1rem;
  text-align: center;
  font-size: 1.05rem;
}

.social-card,
.contact-card {
  padding: 2rem;
  text-align: center;
}
.contact-actions {
  display: flex;
  justify-content: center;
  gap: .85rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.4rem 0 2rem;
}
.footer-wrap {
  grid-template-columns: 1fr auto;
  align-items: center;
}
.site-footer a {
  color: var(--accent);
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-grid,
  .two-col,
  .split-grid,
  .banner-card,
  .cards-grid,
  .value-grid,
  .footer-wrap {
    grid-template-columns: 1fr 1fr;
  }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { align-items: start; }
}

@media (max-width: 860px) {
  .nav,
  .nav-wrap > .btn-small {
    display: none;
  }
  .menu-toggle { display: inline-grid; place-items: center; }
  .nav.active {
    display: flex;
    position: absolute;
    top: 84px;
    left: 1rem;
    right: 1rem;
    background: rgba(255,255,255,.97);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 1rem;
    flex-direction: column;
    box-shadow: var(--shadow);
  }
  .hero-grid,
  .two-col,
  .split-grid,
  .banner-card,
  .footer-wrap,
  .cards-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 2rem;
  }
  .hero-photo {
    padding: 0 0 3rem;
  }
  .photo-frame {
    margin: 0 auto;
    max-width: 100%;
  }
  .photo-frame img {
    height: auto;
    max-height: 78vh;
  }
  .floating-card {
    position: static;
    margin-top: 1rem;
    max-width: none;
  }
  .banner-image-wrap img {
    height: auto;
    max-height: 78vh;
  }
}

@media (max-width: 560px) {
  h1 { font-size: 2.6rem; }
  h2 { font-size: 2rem; }
  .section { padding: 4rem 0; }
  .photo-frame { padding: 10px; border-radius: 24px; }
  .photo-frame img,
  .banner-image-wrap img { border-radius: 18px; }
  .card,
  .feature-panel,
  .social-card,
  .contact-card { padding: 1.25rem; }
}
