:root {
  --bg: #f6f2e9;
  --paper: #fffaf1;
  --ink: #1b1f2a;
  --muted: #4f5c6f;
  --brand: #1d6f77;
  --accent: #d08b37;
  --line: #d9d5cb;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 10% 10%, #fff7e8, var(--bg) 45%);
}

a {
  color: var(--brand);
}

.hero {
  min-height: 72vh;
  padding: 1.25rem clamp(1rem, 3vw, 3rem) 4rem;
  background:
    linear-gradient(
      rgba(20, 28, 45, 0.55),
      rgba(20, 28, 45, 0.55)
    ),
    url("https://www.gstatic.com/bfe/apps/website/img/h/81473743-keys-door-1440.jpg")
      center / cover no-repeat;
  color: #fff;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  color: #fff;
  text-decoration: none;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
}

.nav-links {
  display: flex;
  gap: 1rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.hero-content {
  max-width: 780px;
  margin-top: 5rem;
  animation: reveal 700ms ease;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
}

.hero-photo {
  margin: 0;
  display: flex;
  justify-content: flex-end;
}

.hero-photo img {
  width: min(280px, 45vw);
  height: min(280px, 45vw);
  max-width: 280px;
  max-height: 280px;
  object-fit: cover;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  background: rgba(255, 255, 255, 0.12);
}

.eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

h1,
h2 {
  font-family: "Playfair Display", serif;
  line-height: 1.1;
  margin: 0 0 0.75rem;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
}

.hero-content p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  max-width: 66ch;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-block;
  border-radius: 999px;
  padding: 0.75rem 1.2rem;
  text-decoration: none;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #17150f;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.section {
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 4rem);
}

.section-intro {
  color: var(--muted);
  margin-top: 0;
}

.taggbox {
  min-height: 520px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.5rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.2rem;
}

.card blockquote {
  margin: 0 0 1rem;
  color: #2b3242;
  line-height: 1.5;
}

.author {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.review-link {
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--line);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.8rem;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 14px;
  border: 1px solid var(--line);
}

.contact {
  background: #f1ece2;
  border-top: 1px solid var(--line);
}

.site-version {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-photo {
    justify-content: flex-start;
  }
}

.review-status {
  margin: 0 0 1rem;
  color: var(--muted);
  font-weight: 600;
}

.stars {
  margin: 0 0 0.6rem;
  color: #b07016;
  letter-spacing: 0.08em;
  font-size: 1.05rem;
}

.meta {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 50;
}

.modal.is-open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.modal-panel {
  position: relative;
  max-width: 720px;
  margin: 8vh auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.lead-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
  color: #2b3242;
}

.lead-form input {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem 0.8rem;
  font: inherit;
  background: #fff;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-weight: 600;
}
