:root {
  --bg: #f5f5f5;
  --bg-alt: #f0f0f0;
  --card: #ffffff;
  --accent: #bfa76f;
  --accent-soft: rgba(191, 167, 111, 0.18);
  --text: #151515;
  --muted: #666666;
  --border-subtle: #dddddd;
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.08);
  --shadow-subtle: 0 8px 20px rgba(0, 0, 0, 0.06);
  --max-width: 1120px;
}


*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #ffffff 0, #f5f5f5 45%, #f0f0f0 100%);
  color: var(--text);
  line-height: 1.6;
}

/* Layout helpers */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: #f7f7f7;
  backdrop-filter: blur(12px);
}

.section-title {
  font-size: 2.1rem;
  margin-bottom: 0.75rem;
}

.section-subtitle,
.lede {
  color: var(--muted);
  max-width: 40rem;
}

.section-subtitle {
  margin-bottom: 2.5rem;
}

.section-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .section-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    align-items: flex-start;
  }
}

/* Header / Nav */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 40%;
  background: radial-gradient(circle at 30% 20%, #fef3c7, #f97316, #7c2d12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #0b1120;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.65);
}

.logo-text {
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 0.95rem;
}

.nav {
  display: flex;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: none;
  align-items: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--muted);
  position: relative;
  padding-bottom: 0.1rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #f97316, #facc15);
  transition: width 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a:focus::after {
  width: 100%;
}

.nav-toggle {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0.4rem;
  display: inline-flex;
  flex-direction: column;
  gap: 0.18rem;
}

.nav-toggle-bar {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

@media (min-width: 800px) {
  .nav-toggle {
    display: none;
  }
  .nav-links {
    display: flex;
  }
}

/* Mobile nav open state */

.nav-open .nav-links {
  position: absolute;
  top: 56px;
  right: 1.25rem;
  flex-direction: column;
  align-items: flex-start;
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: var(--shadow-soft);
  padding: 0.85rem 1.1rem;
  display: flex;
}

@media (min-width: 800px) {
  .nav-open .nav-links {
    position: static;
    flex-direction: row;
    border: none;
    box-shadow: none;
    background: transparent;
    padding: 0;
  }
}

/* Hero */

.hero {
  padding: 5rem 0 4rem;
}

.hero-grid {
  display: grid;
  gap: 2.75rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  }
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 3.2vw + 1.8rem, 3.4rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

.accent-text {
  background: linear-gradient(to right, #f97316, #facc15, #f97316);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  color: var(--muted);
  max-width: 32rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, color 0.12s ease, border-color 0.12s ease;
}

.btn.primary {
  background: linear-gradient(to right, #f97316, #facc15);
  color: #0b1120;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.7);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.85);
}

.btn.ghost {
  background: #f5f5f5;
  color: var(--text);
  border-color: rgba(148, 163, 184, 0.5);
}

.btn.ghost:hover {
  background: #ffffff;
  transform: translateY(-1px);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-meta span {
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: #f3f3f3;
  border: 1px solid rgba(148, 163, 184, 0.35);
}

/* Hero side card */

.hero-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: var(--shadow-soft);
  padding: 1.5rem 1.5rem 1.75rem;
}

.hero-photo {
  width: 100%;
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(249, 115, 22, 0.45), rgba(250, 204, 21, 0.28)),
    radial-gradient(circle at 10% 0, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 1)),
    #ffffff;
  aspect-ratio: 4 / 4.2;
  margin-bottom: 1.25rem;
  position: relative;
  overflow: hidden;
}

/* You can later set background-image: url('your-headshot.jpg'); on .hero-photo */

.hero-card-body h2 {
  margin: 0 0 0.2rem;
  font-size: 1.3rem;
}

.hero-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
}

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-highlights li {
  margin-bottom: 0.3rem;
  padding-left: 1.1rem;
  position: relative;
}

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

/* About section */

.about-grid {
  display: grid;
  gap: 1.8rem;
  margin-top: 2.2rem;
}

@media (min-width: 880px) {
  .about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.about-block {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: var(--shadow-subtle);
}

.about-block h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.resume-btn {
  margin-top: 0.6rem;
  margin-bottom: 0.6rem;
}

/* Cards grid (booking, blog preview) */

.cards-grid {
  display: grid;
  gap: 1.7rem;
  margin-top: 2.2rem;
}

@media (min-width: 880px) {
  .cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.5rem 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: var(--shadow-subtle);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
}

.card p {
  margin-top: 0;
  margin-bottom: 0.9rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.card li {
  margin-bottom: 0.35rem;
}

/* Booking */

.booking-grid {
  display: grid;
  gap: 1.7rem;
  margin-top: 2.2rem;
}

@media (min-width: 880px) {
  .booking-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.booking-cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
}

/* Blog preview & list */

.blog-preview-grid {
  margin-top: 2.2rem;
}

.blog-view-all {
  margin-top: 2rem;
}

.blog-list {
  display: grid;
  gap: 1.8rem;
  margin-top: 2.2rem;
}

.blog-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.5rem 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: var(--shadow-subtle);
}

.blog-card-title {
  margin: 0 0 0.3rem;
  font-size: 1.1rem;
}

.blog-card-meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.7rem;
}

.blog-card-excerpt {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.blog-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.blog-card-tag {
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
}

/* Post page */

.post-article {
  max-width: 44rem;
  margin: 0 auto;
  padding: 1.8rem 1.7rem;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--shadow-soft);
}

.post-title {
  margin-top: 0;
  margin-bottom: 0.3rem;
  font-size: 1.9rem;
}

.post-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
}

.post-content h2,
.post-content h3,
.post-content h4 {
  margin-top: 1.7rem;
  margin-bottom: 0.6rem;
}

.post-content p {
  margin-bottom: 0.9rem;
}

.post-content ul,
.post-content ol {
  margin: 0.6rem 0 0.9rem 1.2rem;
}

.post-content li {
  margin-bottom: 0.35rem;
}

.post-share {
  max-width: 44rem;
  margin: 1.4rem auto 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.post-share-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.45rem;
}

.post-share-links a {
  font-size: 0.82rem;
  text-decoration: none;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.post-back-link {
  max-width: 44rem;
  margin: 1.4rem auto 0;
}

/* Lists */

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.bullet-list.compact {
  margin-top: 0.4rem;
}

.bullet-list li {
  margin-bottom: 0.4rem;
  padding-left: 1.1rem;
  position: relative;
}

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

/* Contact */

.contact-meta {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-meta li {
  margin-bottom: 0.3rem;
}

.contact-form {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 1.6rem 1.6rem 1.9rem;
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.form-field label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  border-radius: 0.7rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: #ffffff;
  padding: 0.6rem 0.75rem;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.4);
}

.form-field textarea {
  resize: vertical;
}

.form-footnote {
  margin-top: 0.7rem;
  font-size: 0.76rem;
  color: var(--muted);
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  padding: 1.25rem 0 1.75rem;
  background: #f3f3f3;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text);
}

@media (min-width: 600px) {
  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* General */

p {
  margin-top: 0;
}

a {
  color: inherit;
}

/* Small screens tweaks */

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero {
    padding-top: 4rem;
  }

  .booking-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
