:root {
  --primary: #B07D5A;
  --primary-dark: #8E5E3F;
  --bg: #FAF7F2;
  --bg-alt: #F2EAE0;
  --text: #1F1A17;
  --text-soft: #5A5048;
  --line: #E2D7C8;
  --white: #FFFFFF;
  --shadow-soft: 0 8px 30px rgba(60, 40, 25, 0.08);
  --shadow-strong: 0 20px 50px rgba(60, 40, 25, 0.15);
  --radius: 14px;
  --radius-lg: 22px;
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
}
.logo-text { color: var(--text); }
.nav-links {
  display: flex;
  gap: 32px;
  font-size: 0.95rem;
  font-weight: 500;
}
.nav-links a {
  color: var(--text-soft);
  transition: color 200ms;
  position: relative;
}
.nav-links a:hover { color: var(--primary); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 200ms, box-shadow 200ms, background 200ms;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(176, 125, 90, 0.3);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(176, 125, 90, 0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.nav-cta { padding: 10px 20px; font-size: 0.9rem; }

/* Hero */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: scale(1.05);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20, 12, 8, 0.75) 0%, rgba(60, 30, 15, 0.55) 60%, rgba(20, 12, 8, 0.4) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 24px;
  max-width: 820px;
}
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
}
.hero .eyebrow { color: #E8C9A8; }
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1.05;
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.88);
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero-meta {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.meta-item { display: flex; flex-direction: column; }
.meta-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  color: #E8C9A8;
}
.meta-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
}

/* Section base */
.section { padding: 110px 0; }
.section-alt { background: var(--bg-alt); }
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 70px;
}
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.15;
}
.section-lead {
  font-size: 1.08rem;
  color: var(--text-soft);
  line-height: 1.7;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--white);
  padding: 36px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform 250ms, box-shadow 250ms;
  border: 1px solid var(--line);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}
.card-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  border-radius: 50%;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.card p {
  color: var(--text-soft);
  font-size: 0.97rem;
  line-height: 1.6;
  margin-bottom: 18px;
}
.card-price {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}

/* About */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
}
.about-images img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  height: 280px;
  object-fit: cover;
}
.about-images img:first-child {
  grid-row: span 2;
  height: 100%;
  min-height: 380px;
}
.about-text h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.15;
}
.about-text p {
  color: var(--text-soft);
  margin-bottom: 16px;
  font-size: 1.02rem;
  line-height: 1.7;
}
.about-list {
  list-style: none;
  margin-top: 24px;
}
.about-list li {
  padding: 10px 0;
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 1rem;
}
.about-list li span:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-soft);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.gallery-item:hover img {
  transform: scale(1.06);
}

/* Quote */
.quote-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 90px 0;
}
.quote {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.quote p {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 500;
  line-height: 1.4;
  font-style: italic;
  margin-bottom: 20px;
}
.quote footer {
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  opacity: 0.85;
  font-style: normal;
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.contact-text h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  margin-bottom: 18px;
  line-height: 1.15;
}
.contact-text p {
  color: var(--text-soft);
  font-size: 1.05rem;
  margin-bottom: 28px;
}
.contact-list {
  list-style: none;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  font-size: 1rem;
  border-bottom: 1px solid var(--line);
}
.contact-list li:last-child { border-bottom: none; }
.contact-list li span:first-child {
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
}
.contact-form input,
.contact-form textarea {
  font-family: var(--sans);
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-size: 0.98rem;
  background: var(--bg);
  transition: border-color 200ms, background 200ms;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
}
.contact-form .btn {
  align-self: flex-start;
  margin-top: 8px;
}
.form-success {
  background: #E8F5E9;
  color: #2E7D32;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
}

/* Footer */
.site-footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.7);
  padding: 30px 0;
  font-size: 0.9rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 200ms;
}
.footer-links a:hover { color: #E8C9A8; }
.footer-links span { margin: 0 10px; opacity: 0.4; }

/* Animation: staggered fade-in */
.hero-content, .section-head, .card, .about-images, .about-text, .gallery-item, .contact-text, .contact-form, .quote {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 700ms ease-out forwards;
}
.hero-content { animation-delay: 100ms; }
.section-head { animation-delay: 100ms; }
.card:nth-child(1) { animation-delay: 100ms; }
.card:nth-child(2) { animation-delay: 200ms; }
.card:nth-child(3) { animation-delay: 300ms; }
.card:nth-child(4) { animation-delay: 400ms; }
.card:nth-child(5) { animation-delay: 500ms; }
.card:nth-child(6) { animation-delay: 600ms; }
.about-images { animation-delay: 100ms; }
.about-text { animation-delay: 250ms; }
.gallery-item:nth-child(1) { animation-delay: 100ms; }
.gallery-item:nth-child(2) { animation-delay: 200ms; }
.gallery-item:nth-child(3) { animation-delay: 300ms; }
.gallery-item:nth-child(4) { animation-delay: 400ms; }
.contact-text { animation-delay: 100ms; }
.contact-form { animation-delay: 200ms; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr; gap: 40px; }
  .contact { grid-template-columns: 1fr; gap: 40px; }
  .section { padding: 80px 0; }
  .gallery { grid-template-columns: 1fr; }
  .about-images img { height: 220px; min-height: 220px; }
}

@media (max-width: 600px) {
  .cards { grid-template-columns: 1fr; }
  .hero-content { padding: 80px 24px; }
  .hero-meta { gap: 24px; }
  .nav-cta { display: none; }
  .contact-form { padding: 28px 22px; }
  .footer-inner { justify-content: center; text-align: center; }
}
