:root {
  color-scheme: light;
  --bg: #f8f7f3;
  --text: #1c1c1a;
  --muted: #5a5a56;
  --brand: #0f172a;
  --accent: #d6b88a;
  --accent-dark: #b78d58;
  --card: #ffffff;
  --border: #e4e0d7;
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem clamp(1rem, 4vw, 4rem);
  background: rgba(248, 247, 243, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.logo-wrapper {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.logo {
  width: 64px;
  height: 64px;
}

.brand-abbrev {
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-tagline {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-weight: 500;
  position: relative;
}

.main-nav a.active::after,
.main-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--text);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  padding: 0.25rem;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
}

.cta-header {
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--text);
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}

.cta-header:hover {
  background: var(--text);
  color: #fff;
}

.hero {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: calc(100vh - 90px);
}

.hero-media {
  background-image: linear-gradient(
      180deg,
      rgba(10, 14, 28, 0.25),
      rgba(10, 14, 28, 0.75)
    ),
    url("https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
}

.hero-content {
  padding: clamp(2rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

h1,
h2,
h3,
.hero-content h1,
.section-header h2 {
  font-family: "Playfair Display", serif;
  line-height: 1.2;
  color: var(--brand);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  border: 1px solid var(--brand);
  font-weight: 600;
  transition: transform 0.2s, background 0.2s, color 0.2s;
}

.btn.primary {
  background: var(--brand);
  color: #fff;
}

.btn.primary:hover {
  transform: translateY(-2px);
}

.btn.ghost {
  background: transparent;
}

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.section {
  padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 8vw, 6rem);
}

.workspaces {
  background: #fff;
}

.workspace-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

.workspace-content h2 {
  margin-top: 0.5rem;
}

.workspace-media img {
  width: 100%;
  border-radius: 32px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.section-header {
  max-width: 650px;
  margin-bottom: 2rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--card);
  border-radius: 28px;
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.service-card ul {
  padding-left: 1.1rem;
}

.local {
  background: #fff;
}

.local-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
}

.pill-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pill-list li {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--border);
}

.local-details {
  background: #101828;
  color: #fff;
  border-radius: 28px;
  padding: 2rem;
  display: grid;
  gap: 1rem;
  box-shadow: var(--shadow);
}

.local-details strong {
  color: #f5e8d0;
}

.about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

.about-media {
  min-height: 360px;
  border-radius: 32px;
  background-image: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.checklist {
  list-style: none;
  padding: 0;
}

.checklist li::before {
  content: "✓";
  margin-right: 0.75rem;
  color: var(--accent-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.gallery-card {
  border-radius: 26px;
  position: relative;
  overflow: hidden;
  padding-top: 70%;
  background-color: #f3f2ec;
  background-image: var(--gallery, none);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 8, 16, 0.05), rgba(5, 8, 16, 0.6));
}

.gallery-card figcaption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  margin: 0;
  color: #fff;
  font-weight: 600;
}

.quote {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: #fff;
  border-radius: 32px;
  margin: 4rem clamp(1rem, 6vw, 6rem);
  padding: clamp(2rem, 6vw, 4rem);
  box-shadow: var(--shadow);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem 1.5rem;
}

.quote-form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-weight: 600;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  transition: border 0.2s, box-shadow 0.2s;
  background: var(--bg);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 3px rgba(214, 184, 138, 0.3);
}

.quote-form .btn {
  grid-column: span 2;
}

.quote-form .full {
  grid-column: span 2;
}

.form-feedback {
  grid-column: span 2;
  min-height: 1.5rem;
  margin: 0;
  font-weight: 600;
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding: 3rem clamp(1.5rem, 8vw, 5rem);
  background: #111;
  color: #fff;
}

.site-footer h4 {
  margin-bottom: 0.5rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.floating-cta {
  position: fixed;
  right: clamp(1rem, 3vw, 2.5rem);
  bottom: clamp(1rem, 3vw, 2.5rem);
  background: var(--accent-dark);
  color: #fff;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 320px;
  }

  .workspace-grid {
    grid-template-columns: 1fr;
  }

  .quote {
    grid-template-columns: 1fr;
    margin: 3rem 1rem;
  }

  .quote-form .btn,
  .quote-form .full {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .site-header {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav ul {
    flex-direction: column;
    position: absolute;
    right: 1rem;
    top: 80px;
    background: var(--card);
    padding: 1rem 1.5rem;
    border-radius: 18px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: none;
  }

  .main-nav[data-open="true"] ul {
    display: flex;
  }

  .hero-content {
    padding: 2rem 1.5rem 3rem;
  }

  .local-grid {
    grid-template-columns: 1fr;
  }

  .quote-form {
    grid-template-columns: 1fr;
  }

  .quote-form .btn,
  .quote-form .full {
    grid-column: span 1;
  }
}

