:root {
  --bg-cream: #f5efe5;
  --bg-cream-soft: #f8f3ec;
  --bg-dark: #191919;
  --bg-dark-soft: #222222;
  --accent-taupe: #c1a484;
  --accent-taupe-dark: #a38562;
  --accent-teal: #0b5e6b;
  --text-main: #212121;
  --text-muted: #666666;
  --text-light: #f5f5f5;
  --border-subtle: #e2ddd4;
  --max-width: 1120px;
}

/* Reset-ish */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  background-color: var(--bg-cream);
  color: var(--text-main);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

/* Layout */

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
}

.section--tight {
  padding: 3rem 0;
}

.section-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 2.2rem;
  margin: 0 0 0.75rem;
}

.section-subtitle {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

/* Header */

.site-header {
  background-color: var(--bg-cream-soft);
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1.5rem;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.header-logo img {
  width: 44px;
  height: 44px;
  border-radius: 999px;
}

.logo-text-main {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.logo-text-sub {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.header-phone {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent-teal);
}

.main-nav {
  display: flex;
  gap: 1.75rem;
  font-size: 0.9rem;
}

.main-nav a {
  position: relative;
  padding-bottom: 0.35rem;
}

.main-nav a.active::after,
.main-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 55%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-teal), var(--accent-taupe));
}

/* Buttons */

.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease,
    border-color 0.18s ease, transform 0.12s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-teal), var(--accent-taupe));
  color: #fdfaf6;
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.btn-outline {
  background-color: transparent;
  border-color: #d1c7bb;
  color: #f5f3ee;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.06);
}

/* Hero (full-width background image) */

.hero {
  background-color: var(--bg-dark);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  min-height: 520px;
}

/* Background image covers entire hero */
.hero-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.32),
    rgba(0, 0, 0, 0.7)
  );
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text on top of image */
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 520px;
  padding: 0 1.5rem;
}

.hero-copy {
  max-width: 540px;
}

.hero-kicker {
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d1c7bb;
  margin-bottom: 0.75rem;
}

.hero-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 3.1rem;
  line-height: 1.1;
  margin: 0 0 1rem;
}

.hero-text {
  font-size: 0.98rem;
  max-width: 30rem;
  color: #e5dfd7;
  margin-bottom: 1.8rem;
}

/* Spotlight */

.spotlight {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 3.25rem 0 3.75rem;
}

.spotlight-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 2rem;
}

.spotlight-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.8rem;
  margin: 0;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.spot-card {
  background-color: #262626;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  min-height: 230px;
}

.spot-card-image {
  position: relative;
  height: 100%;
}

.spot-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spot-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
}

.spot-card-body {
  position: absolute;
  inset-inline: 1.1rem;
  bottom: 1.1rem;
}

.spot-card-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.spot-card-text {
  font-size: 0.85rem;
  color: #d5d5d5;
}

.spot-card-link {
  display: inline-block;
  margin-top: 0.7rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Specialties */

.specialties {
  background-color: var(--bg-cream-soft);
}

.specialties-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.specialties-intro {
  max-width: 540px;
}

.specialties-intro p {
  margin-top: 0.75rem;
  color: var(--text-muted);
}

.specialties-list {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.specialty-item-title {
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.specialty-item-text {
  font-size: 0.93rem;
  color: var(--text-muted);
}

.specialties-image {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.13);
}

/* Two-column cards */

.two-column-section {
  background-color: var(--bg-cream);
}

.two-column-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.05fr);
  gap: 2rem;
}

.card-elevated {
  background-color: #ffffff;
  border-radius: 1.5rem;
  padding: 1.9rem 1.8rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.card-elevated h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.35rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.card-elevated p {
  font-size: 0.94rem;
  color: var(--text-muted);
}

/* Contact layout */

.contact-hero {
  background-color: var(--bg-cream-soft);
  padding: 4rem 0 3rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.9fr);
  gap: 3rem;
  align-items: flex-start;
}

.contact-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 2.6rem;
  margin: 0 0 0.75rem;
}

.contact-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.form-field {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.input,
.textarea {
  width: 100%;
  border-radius: 0.4rem;
  border: 1px solid var(--border-subtle);
  padding: 0.7rem 0.85rem;
  font: inherit;
  background-color: #ffffff;
}

.textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-sidebar {
  background-color: var(--bg-dark-soft);
  color: var(--text-light);
  border-radius: 1.4rem;
  padding: 2rem 1.9rem;
}

.contact-sidebar h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.4rem;
  margin-top: 0;
  margin-bottom: 1rem;
}

.contact-sidebar p {
  font-size: 0.95rem;
  color: #e2ddd4;
  margin: 0.15rem 0;
}

/* Footer */

.site-footer {
  margin-top: auto;
  background-color: #141414;
  color: #cccccc;
  padding: 2rem 0 1.5rem;
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-inner {
    min-height: 420px;
  }

  .hero-content {
    min-height: 420px;
  }

  .spotlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .specialties-grid,
  .two-column-grid,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}

@media (max-width: 600px) {
  .spotlight-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .specialties-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-title {
    font-size: 2.4rem;
  }
}
