:root {
  color-scheme: light;
  --bg: #f7f4ef;
  --text: #1b1b1b;
  --muted: #6d6458;
  --accent: #0066ff;
  --accent-dark: #004fcc;
  --white: #ffffff;
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Manrope", sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--accent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.brand-name {
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  color: var(--white);
}

.site-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-dark);
  transition: width 0.3s ease;
}

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

.cta-button,
.secondary-button {
  border: none;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(0, 102, 255, 0.35);
}

.secondary-button {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.cta-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
}

.cta-button:hover {
  background: var(--accent-dark);
}

.site-header .cta-button {
  background: var(--white);
  color: var(--accent);
  box-shadow: none;
}

.site-header .cta-button:hover {
  background: var(--accent-dark);
  color: var(--white);
}

.hero {
  padding: 80px 0 100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 20px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-dark);
  margin-bottom: 16px;
}

.hero-description {
  color: var(--muted);
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-highlights {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-highlights strong {
  font-size: 1.4rem;
  display: block;
}

.hero-highlights span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.hero-card h2 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.hero-card ul {
  margin: 20px 0 24px;
  list-style: none;
  color: var(--muted);
}

.hero-card li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.hero-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.section {
  padding: 80px 0;
}

.section-header {
  margin-bottom: 32px;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.section-header p {
  color: var(--muted);
}

.muted {
  background: #efe9e1;
}

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

.card {
  background: var(--white);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-dark);
  margin-bottom: 12px;
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
  margin-bottom: 16px;
}

.card-meta {
  font-weight: 600;
}

.experience-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.experience-list {
  display: grid;
  gap: 20px;
}

.experience-item {
  background: var(--white);
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.concierge {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.concierge-grid {
  display: grid;
  gap: 16px;
  background: var(--white);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.1);
}

.concierge-grid h3 {
  margin-bottom: 8px;
}

.contact {
  background: #1f1d1a;
  color: var(--white);
}

.contact-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.contact-details {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.site-footer {
  padding: 40px 0 24px;
  background: #151413;
  color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}

.footer-links {
  display: grid;
  gap: 8px;
  font-size: 0.95rem;
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

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

@media (max-width: 600px) {
  .header-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding: 60px 0 80px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
