*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1a1a1a;
  background-color: #f7f4f1;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #000;
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 9999;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background-color: #efe6dd;
}

.section-intro {
  max-width: 640px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  color: #a87b58;
  margin-bottom: 0.5rem;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", "Georgia", serif;
  font-weight: 500;
  color: #1b120d;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.4rem, 3vw + 1.4rem, 3.2rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.9rem, 2.4vw + 1rem, 2.4rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

@media (max-width: 768px) {
  .two-column {
    grid-template-columns: minmax(0, 1fr);
  }
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.pill {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  font-size: 0.8rem;
}

.image-stack {
  position: relative;
}

.image-stack .image-main {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.image-stack .image-floating {
  position: absolute;
  right: -12%;
  bottom: -12%;
  width: 55%;
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.14);
}

@media (max-width: 900px) {
  .image-stack .image-floating {
    position: static;
    width: 70%;
    margin-top: 1.5rem;
  }
}

.btn-primary,
.btn-outline,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: #1e1a17;
  color: #f8f5f1;
}

.btn-primary:hover {
  background: #3a3029;
}

.btn-outline {
  border-color: #d1b39a;
  color: #3f2a1c;
  background: transparent;
}

.btn-outline:hover {
  background: #d1b39a;
  color: #23140d;
}

.btn-ghost {
  background: transparent;
  color: #3a3029;
}

.btn-ghost:hover {
  background: rgba(0, 0, 0, 0.04);
}

.btn-primary.full-width {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(247, 244, 241, 0.9);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(145deg, #b48c69, #e8cbb0);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1rem;
  font-weight: 600;
}

.logo-subtitle {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #8a7b70;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 0.9rem;
}

.main-nav a {
  position: relative;
  padding-bottom: 0.2rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: #a87b58;
  transition: width 0.2s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

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

.hero {
  position: relative;
  color: #f8f5f1;
  min-height: min(80vh, 720px);
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 6, 3, 0.85), rgba(10, 6, 3, 0.25));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 6rem 0 4.5rem;
  max-width: 640px;
}

.hero-content .eyebrow {
  color: #f8f5f1;
}

.hero-content h1 {
  color: #f8f5f1;
}

.hero-text {
  font-size: 1rem;
  margin-bottom: 1.6rem;
  color: #f8f5f1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

@media (max-width: 768px) {
  .hero-content {
    padding-top: 5rem;
  }
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
  margin-top: 2.5rem;
}

@media (max-width: 960px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .card-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card img {
  height: 190px;
  width: 100%;
  object-fit: cover;
}

.card-body {
  padding: 1.4rem 1.4rem 1.3rem;
}

.card-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #a87b58;
  margin-bottom: 0.3rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: #754c2f;
}

.card-link::after {
  content: "↗";
  font-size: 0.8rem;
}

.testimonials .card-body {
  padding-block: 1.8rem;
}

.rating {
  margin-bottom: 0.5rem;
  letter-spacing: 0.08em;
}

.card-author {
  font-weight: 500;
  margin-top: 0.5rem;
}

.faq {
  margin-top: 2rem;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #fdfbf8;
  padding: 0.5rem 0.9rem;
}

details {
  padding: 0.45rem 0.4rem;
}

details + details {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

summary {
  cursor: pointer;
  font-weight: 500;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

.bullet-list {
  padding-left: 1.1rem;
}

.bullet-list li + li {
  margin-top: 0.35rem;
}

.info-tabs {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.info-tab {
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.5rem 1rem;
  background: #fdfbf8;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.18s ease;
}

.info-tab.active {
  background: #1e1a17;
  color: #fdfbf8;
  border-color: #1e1a17;
}

.info-panels {
  margin-top: 1.4rem;
}

.info-panel {
  display: none;
  padding: 1.5rem 1.6rem;
  border-radius: 18px;
  background: #fdfbf8;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.info-panel.active {
  display: block;
}

.gallery-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-grid figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
}

.gallery-grid img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

@media (max-width: 960px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .gallery-grid img {
    height: 260px;
  }
}

.contact-card {
  background: #1f1b17;
  color: #fdfbf8;
  border-radius: 18px;
  padding: 1.8rem 1.6rem 1.4rem;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.4rem;
}

.contact-list li + li {
  margin-top: 0.4rem;
}

.contact-card a {
  color: #fbe0c1;
}

.site-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 1.4rem 0 1.6rem;
  background: #f2ebe4;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.footer-copy {
  color: #8b7b6f;
}

.footer-other-property {
  margin: 0;
  font-size: 0.85rem;
}

.footer-other-property a {
  color: #a87b58;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-other-property a:hover {
  color: #754c2f;
  text-decoration: underline;
}

@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer-links {
    align-items: flex-start;
  }
}


