:root {
  --bg-dark: #0a0a0a;
  --bg-card: #111111;
  --primary: #e8d5b7;
  --accent: #f4a261;
  --text-light: #fafafa;
  --text-muted: #8a8a8a;
  --border: rgba(232, 213, 183, 0.2);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(244, 162, 97, 0.15), transparent 45%),
    radial-gradient(circle at 85% 5%, rgba(232, 213, 183, 0.18), transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(244, 162, 97, 0.12), transparent 45%);
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.15'/%3E%3C/svg%3E");
  opacity: 0.12;
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: -1;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.8rem, 4vw, 4.4rem);
}

h2 {
  font-size: clamp(2.2rem, 3vw, 3.4rem);
}

h3 {
  font-size: 1.6rem;
}

p {
  color: var(--text-light);
}

.muted {
  color: var(--text-muted);
}

.section {
  padding: 8rem 0;
  position: relative;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  background: var(--primary);
  color: #0a0a0a;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  z-index: 99;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
  z-index: 50;
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.75rem 1.75rem;
  max-width: 1400px;
  margin: 1.5rem auto 0;
  background: rgba(17, 17, 17, 0.92);
  border: 1px solid rgba(232, 213, 183, 0.18);
  border-radius: 20px;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.45);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: 1px solid rgba(232, 213, 183, 0.3);
  border-radius: 999px;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
}

.nav-toggle-bar {
  width: 20px;
  height: 2px;
  background: var(--primary);
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-weight: 500;
}

.nav-links a {
  color: var(--text-muted);
  transition: color 0.3s ease;
}

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

.nav-links .nav-cta {
  margin-left: 0.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #0a0a0a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.logo-text {
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease,
    color 0.3s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #0a0a0a;
  box-shadow: 0 16px 32px rgba(244, 162, 97, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(244, 162, 97, 0.35);
}

.btn-outline {
  border: 1px solid var(--primary);
  color: var(--text-light);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.text-link {
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.text-link::after {
  content: "+";
  color: var(--accent);
}

.hero {
  padding-top: 9rem;
  position: relative;
  overflow: hidden;
}

.home-page .hero {
  padding-top: 6.75rem;
}

.home-page .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(244, 162, 97, 0.12), transparent 55%),
    radial-gradient(circle at 70% 20%, rgba(232, 213, 183, 0.16), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.1rem;
  margin: 1.5rem 0 2rem;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-grid {
  position: relative;
  z-index: 1;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.hero-stats h3 {
  font-size: 2rem;
}

.hero-card {
  display: flex;
  justify-content: flex-end;
}

.hero-media {
  display: grid;
  gap: 1.5rem;
  position: relative;
}

.hero-image {
  width: 100%;
  border-radius: 28px;
  border: 1px solid rgba(232, 213, 183, 0.18);
  box-shadow: var(--shadow);
  object-fit: cover;
  min-height: 360px;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  justify-self: end;
}

.hero-visual .hero-image {
  max-width: 420px;
  max-height: 360px;
  aspect-ratio: 4 / 3;
  position: relative;
  z-index: 1;
}

.hero-glow {
  position: absolute;
  width: 65%;
  height: 65%;
  background: radial-gradient(circle, rgba(244, 162, 97, 0.28), transparent 65%);
  filter: blur(40px);
  opacity: 0.5;
  z-index: 0;
}


.hero-bars {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.focus-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-radius: 18px;
  background: rgba(17, 17, 17, 0.72);
  border: 1px solid rgba(232, 213, 183, 0.14);
  overflow: hidden;
}

.focus-tab {
  padding: 1rem 1.2rem;
  display: grid;
  gap: 0.35rem;
  border-right: 1px solid rgba(232, 213, 183, 0.1);
}

.focus-tab:last-child {
  border-right: none;
}

.tab-title {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  color: rgba(244, 162, 97, 0.8);
  font-weight: 600;
}

.tab-text {
  color: var(--text-light);
  font-size: 0.95rem;
}

.luxury-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.55);
  border: 1px solid rgba(232, 213, 183, 0.12);
}

.luxury-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  color: rgba(244, 162, 97, 0.8);
  font-weight: 600;
}

.luxury-chip {
  border: 1px solid rgba(232, 213, 183, 0.22);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  color: var(--text-light);
  font-size: 0.85rem;
  background: rgba(17, 17, 17, 0.6);
}

.glass-card {
  background: rgba(17, 17, 17, 0.85);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 3rem;
  box-shadow: var(--shadow);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.grid {
  display: grid;
  gap: 2rem;
}

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

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

.card {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: 24px;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
}

.empty-state {
  border: 1px dashed rgba(232, 213, 183, 0.35);
  background: rgba(17, 17, 17, 0.6);
}

.card-media {
  width: 100%;
  border-radius: 18px;
  margin-bottom: 1.75rem;
  border: 1px solid rgba(232, 213, 183, 0.12);
  object-fit: cover;
  min-height: 160px;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(232, 213, 183, 0.3);
  box-shadow: var(--shadow);
}

.card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(232, 213, 183, 0.15);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.price {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 1.5rem 0;
}

.price span {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.feature-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
  color: var(--text-muted);
}

.feature-list li::before {
  content: "\2022";
  color: var(--accent);
  margin-right: 0.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(244, 162, 97, 0.12);
  border: 1px solid rgba(244, 162, 97, 0.4);
  color: var(--accent);
  font-size: 0.75rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.quote {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.cta {
  background: linear-gradient(120deg, rgba(232, 213, 183, 0.12), rgba(244, 162, 97, 0.08));
  border-top: 1px solid rgba(232, 213, 183, 0.1);
  border-bottom: 1px solid rgba(232, 213, 183, 0.1);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer {
  padding: 4rem 0 0;
  border-top: 1px solid rgba(232, 213, 183, 0.08);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  padding-bottom: 3rem;
}

.footer-links {
  display: grid;
  gap: 0.75rem;
}

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

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

.newsletter {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.newsletter input {
  flex: 1 1 220px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(232, 213, 183, 0.2);
  background: rgba(17, 17, 17, 0.7);
  color: var(--text-light);
  padding: 0 1rem;
}

.newsletter input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(244, 162, 97, 0.2);
}

.hero-alt .hero-grid {
  align-items: start;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.filter-btn {
  border: 1px solid rgba(232, 213, 183, 0.3);
  background: transparent;
  color: var(--text-light);
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 44px;
}

.filter-btn:hover,
.filter-btn.is-active {
  background: rgba(232, 213, 183, 0.15);
  border-color: var(--accent);
  color: var(--accent);
}

.testimonial-slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.testimonial-track {
  display: grid;
  gap: 1.5rem;
}

.testimonial-card {
  display: none;
}

.testimonial-card.is-active {
  display: block;
}

.slider-btn {
  border: 1px solid rgba(232, 213, 183, 0.3);
  background: transparent;
  color: var(--text-light);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  min-height: 44px;
}

.faq-grid {
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border-radius: 18px;
  border: 1px solid rgba(232, 213, 183, 0.12);
  padding: 1.2rem 1.5rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] {
  border-color: rgba(232, 213, 183, 0.4);
}

.blog-hero .section-heading {
  align-items: flex-start;
}

.blog-search input {
  width: 100%;
  max-width: 520px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(232, 213, 183, 0.2);
  background: rgba(17, 17, 17, 0.7);
  color: var(--text-light);
  padding: 0 1.25rem;
  margin: 1.5rem 0 2rem;
}

.featured-post {
  background: var(--bg-card);
  border-radius: 28px;
  border: 1px solid rgba(232, 213, 183, 0.2);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.featured-post img {
  border-radius: 20px;
  border: 1px solid rgba(232, 213, 183, 0.1);
  min-height: 260px;
  object-fit: cover;
}

.blog-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2.5rem;
}

.blog-sidebar {
  background: var(--bg-card);
  border-radius: 20px;
  border: 1px solid rgba(232, 213, 183, 0.12);
  padding: 2rem;
  height: fit-content;
}

.category-filters {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.category-filters button {
  background: transparent;
  border: 1px solid rgba(232, 213, 183, 0.2);
  color: var(--text-light);
  padding: 0.5rem 0.8rem;
  border-radius: 12px;
  cursor: pointer;
  text-align: left;
  min-height: 44px;
}

.category-filters button.is-active {
  border-color: var(--accent);
  color: var(--accent);
}

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

.blog-card {
  display: grid;
  gap: 1rem;
}

.blog-card img {
  border-radius: 18px;
  min-height: 180px;
  object-fit: cover;
  border: 1px solid rgba(232, 213, 183, 0.12);
}

.blog-card .tag {
  color: var(--accent);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pagination {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.pagination button {
  border: 1px solid rgba(232, 213, 183, 0.2);
  background: transparent;
  color: var(--text-light);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
  min-height: 44px;
}

.pagination button.is-active {
  border-color: var(--accent);
  color: var(--accent);
}

.blog-post-hero img {
  width: 100%;
  border-radius: 28px;
  border: 1px solid rgba(232, 213, 183, 0.15);
  margin-bottom: 2rem;
}

.blog-post-meta {
  max-width: 900px;
}

.post-details {
  display: flex;
  gap: 1.5rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.post-details span:empty {
  display: none;
}

.blog-post-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2.5rem;
}

.blog-post-content h2 {
  margin: 2rem 0 1rem;
}

.blog-post-content {
  max-width: 780px;
}

.blog-post-content ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
}

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

.blog-post-sidebar {
  display: grid;
  gap: 2rem;
}

.author-box {
  background: var(--bg-card);
  border-radius: 20px;
  border: 1px solid rgba(232, 213, 183, 0.12);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.author-box img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.share-box {
  background: var(--bg-card);
  border-radius: 20px;
  border: 1px solid rgba(232, 213, 183, 0.12);
  padding: 1.5rem;
}

.share-links {
  display: grid;
  gap: 0.5rem;
  margin-top: 1rem;
}

.share-links a {
  color: var(--text-muted);
}

.share-links a:hover {
  color: var(--accent);
}

.split-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}

.image-stack {
  display: grid;
  gap: 1.5rem;
}

.image-stack img {
  border-radius: 24px;
  border: 1px solid rgba(232, 213, 183, 0.15);
  box-shadow: var(--shadow);
  object-fit: cover;
  min-height: 240px;
}

.stat-row {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-details {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
}

.contact-form {
  display: grid;
  gap: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.form-field {
  display: grid;
  gap: 0.5rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(17, 17, 17, 0.7);
  border: 1px solid rgba(232, 213, 183, 0.2);
  border-radius: 12px;
  color: var(--text-light);
  padding: 0.75rem 1rem;
  font-family: inherit;
}

.form-field input,
.form-field select {
  min-height: 48px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(244, 162, 97, 0.2);
}

.form-field .is-invalid {
  border-color: rgba(244, 162, 97, 0.8);
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-note {
  min-height: 1.5rem;
}

.contact-card img {
  border-radius: 16px;
  margin: 1.5rem 0;
  border: 1px solid rgba(232, 213, 183, 0.12);
}

.contact-hours {
  display: grid;
  gap: 1.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(232, 213, 183, 0.08);
  padding: 1.5rem 0;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
