:root {
  --bg: #f0f0f0;          /* Slightly greyer light grey */
  --primary: #0f6abf;     /* Deep sky-ish blue */
  --primary-600: #0c57a0;
  --accent: #68b5ff;      /* Lighter sky blue */
  --ink: #0d1b2a;         /* Soft black/blue */
  --muted: #5c6b7a;
  --card: #ffffff;
  --ring: rgba(15,106,191,0.2);
  --shadow: 0 10px 25px rgba(0,0,0,.04); /* Softer shadow for boutique feel */
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: linear-gradient(to bottom, var(--bg), #f8f8f8); /* Gentle gradient to a lighter tone */
  color: var(--ink);
  line-height: 1.6;
}

img { max-width: 100%; height: auto; border-radius: 18px; } /* Softer radii */

a { color: var(--primary); text-decoration: none; }

a.button, button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  padding: 14px 20px;
  border-radius: 999px; /* Pill-shaped for modern look */
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, background 0.2s ease;
}

a.button:hover, button:hover {
  transform: scale(1.02);
  background: var(--primary-600);
}

a.button.secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

a.button.small { padding: 8px 14px; font-size: 13px; } /* For nav buttons */

header.site {
  position: sticky;
  top: 0;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  z-index: 50;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; } /* Wider for modern feel */

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

.brand {
  font-weight: 700;
  letter-spacing: .1px;
  color: var(--ink);
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 20px;
}

.brand .dot { width: 12px; height: 12px; background: var(--primary); border-radius: 50%; }

.nav a { margin-left: 20px; color: var(--ink); font-weight: 500; }

.hero {
  padding: 80px 0 60px;
  display: grid;
  gap: 32px;
  align-items: center;
  grid-template-columns: 1.3fr 0.7fr;
}

.hero h1 { font-size: 48px; margin: 0 0 16px; font-weight: 700; }

.hero p { font-size: 18px; color: var(--muted); max-width: 80%; }

.badge {
  display: inline-block;
  background: var(--accent);
  color: #08345a;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 16px;
}

.cta { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 20px; }

.section { padding: 60px 0; }

.section h2 { font-size: 32px; margin: 0 0 16px; font-weight: 700; }

.grid { display: grid; gap: 24px; }

.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--card);
  border-radius: 24px; /* Softer for boutique */
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.card:hover { transform: translateY(-4px); } /* Subtle hover for cards */

.card h3 { margin: 0 0 8px; font-size: 20px; font-weight: 600; }

.list { margin: 0; padding-left: 20px; color: var(--muted); font-size: 16px; }

.kv { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.location { display: grid; grid-template-columns: 1fr; gap: 16px; } /* Stacked for better mobile */

.hours td { padding: 8px 0; }

footer {
  background: #0b1220;
  color: #d8e3f8;
  padding: 60px 0;
  margin-top: 60px;
}

footer a { color: #d8e3f8; text-decoration: underline; }

.small { font-size: 14px; color: var(--muted); }

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

.form input, .form select, .form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #d7e3f1;
  outline: none;
  font-family: inherit;
}

.form input:focus, .form textarea:focus, .form select:focus {
  box-shadow: 0 0 0 4px var(--ring);
  border-color: var(--primary);
}

.notice { font-size: 14px; color: var(--muted); margin-bottom: 16px; }

@media (max-width: 900px) {
  .hero, .kv, .grid.cols-3, .grid.cols-2 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 36px; text-align: center; }
  .hero p { max-width: 100%; text-align: center; }
  .cta { justify-content: center; }
  .nav { flex-direction: column; gap: 16px; }
  .nav a { margin-left: 0; margin-right: 12px; }
}