﻿:root {
  --bg: #fcfbf8;
  --bg-soft: #f4efe3;
  --text: #181717;
  --muted: #5c564b;
  --accent: #c79f39;
  --accent-soft: #ecd9a8;
  --glass: rgba(255, 255, 255, 0.62);
  --line: rgba(175, 149, 93, 0.35);
  --radius-lg: 28px;
  --radius-md: 20px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 15% 8%, #fffef8 0%, var(--bg) 45%), var(--bg);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

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

.background-glow {
  position: fixed;
  z-index: -1;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(65px);
  opacity: 0.32;
}

.background-glow-left {
  background: #f7e7b7;
  top: -80px;
  left: -120px;
}

.background-glow-right {
  background: #e9d099;
  right: -120px;
  bottom: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem 5vw;
  backdrop-filter: blur(12px);
  background: rgba(252, 251, 248, 0.75);
  border-bottom: 1px solid rgba(199, 159, 57, 0.18);
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.65rem, 2.6vw, 2rem);
  text-decoration: none;
  color: var(--text);
  letter-spacing: 0.03em;
}

.brand span {
  color: var(--accent);
}

nav {
  display: flex;
  gap: clamp(0.7rem, 2vw, 1.4rem);
}

nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

nav a:hover {
  color: var(--accent);
}

.section {
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.8rem, 4vw, 3.5rem);
  align-items: center;
  min-height: calc(100vh - 80px);
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.1;
  color: #151413;
}

h1 {
  font-size: clamp(2.3rem, 6vw, 4.5rem);
  margin-top: 0.5rem;
}

.lead {
  margin-top: 1rem;
  color: var(--muted);
  max-width: 54ch;
}

.hero-cta {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-block;
  padding: 0.78rem 1.2rem;
  border-radius: 999px;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(120deg, #be9432, #d7b157);
  color: #fff;
}

.btn-soft {
  color: #6f5518;
  border-color: rgba(199, 159, 57, 0.44);
  background: rgba(255, 255, 255, 0.75);
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(102, 77, 25, 0.18);
}

.glass-card {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.9rem 1rem;
  width: min(90%, 340px);
  border-radius: 14px;
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
}

.glass-card p {
  color: #5f5340;
  font-size: 0.88rem;
}

.glass-card strong {
  color: #2e2618;
}

.section-head {
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.8rem, 4.4vw, 3rem);
  margin-top: 0.45rem;
}

.masonry-grid {
  columns: 3 240px;
  column-gap: 1rem;
}

.card {
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(191, 164, 103, 0.23);
  background: #fff;
  break-inside: avoid;
  box-shadow: 0 12px 30px rgba(90, 67, 19, 0.08);
}

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

.services {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(247, 239, 222, 0.45));
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding-inline: clamp(1rem, 4vw, 2.4rem);
}

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

.service-card {
  padding: 1.1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(199, 159, 57, 0.24);
  backdrop-filter: blur(8px);
}

h3 {
  font-size: 1.6rem;
}

.service-card p {
  color: var(--muted);
  margin-top: 0.45rem;
}

.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: center;
}

.story-text p {
  color: var(--muted);
  margin-top: 0.95rem;
}

.quote {
  font-family: "Cormorant Garamond", serif;
  color: #3b2e15;
  font-size: 1.3rem;
  margin-top: 1.2rem;
}

.story-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.story-images img {
  border-radius: 16px;
  min-height: 320px;
  object-fit: cover;
  border: 1px solid rgba(199, 159, 57, 0.25);
}

.footer {
  padding-top: 0;
}

.contact-panel {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(199, 159, 57, 0.4);
  background: linear-gradient(160deg, #fffdfa, #f5ecd5);
  padding: clamp(1.2rem, 4vw, 2.2rem);
  text-align: center;
}

.contact-panel p {
  color: var(--muted);
  margin-top: 0.7rem;
}

.contact-links {
  margin-top: 1.2rem;
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.contact-links a {
  text-decoration: none;
  color: #4c3a14;
  border: 1px solid rgba(199, 159, 57, 0.5);
  background: rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-weight: 600;
}

.copyright {
  text-align: center;
  color: #8a7b5a;
  font-size: 0.86rem;
  margin-top: 1rem;
}

.direct-order-btn {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 20;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #be9432, #d8b35c);
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  padding: 0.8rem 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 30px rgba(96, 72, 21, 0.27);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.direct-order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(96, 72, 21, 0.3);
}

.reveal,
.reveal-delay {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-delay {
  transition-delay: 0.12s;
}

.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .hero,
  .story,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 1rem;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    flex-wrap: wrap;
  }

  .story-images {
    grid-template-columns: 1fr;
  }

  .story-images img {
    min-height: 240px;
  }
}

@media (max-width: 520px) {
  .section {
    width: min(1120px, 94vw);
  }

  nav a {
    font-size: 0.78rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .direct-order-btn {
    right: 0.7rem;
    bottom: 0.8rem;
    padding: 0.72rem 1rem;
  }
}
