:root {
  --eye-cream-bg: #FCFAF7;
  --eye-sand-surface: #F5ECE1;
  --eye-clay-accent: #8D5B4C;
  --eye-clay-dark: #6E4336;
  --eye-charcoal-ink: #232323;
  --eye-muted-border: #D8CECE;
  --eye-warm-gradient: linear-gradient(135deg, #8D5B4C 0%, #B88E75 100%);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', Helvetica, Arial, sans-serif;
  --visual-radius: 2px;
}

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

body {
  background-color: var(--eye-cream-bg);
  color: var(--eye-charcoal-ink);
  font-family: var(--font-body);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--eye-charcoal-ink);
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease, border-color 0.3s ease;
}

/* Header Editorial Styling */
.editorial-head-bar {
  background-color: var(--eye-cream-bg);
  border-bottom: 1px solid var(--eye-muted-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1.5rem 2rem;
}

.editorial-head-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.editorial-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.editorial-brand-logo svg {
  fill: var(--eye-clay-accent);
  width: 32px;
  height: 32px;
}

.editorial-brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* Navigation & Hamburger */
.editorial-menu-checkbox {
  display: none;
}

.editorial-nav-box {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.editorial-nav-item {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 0.25rem 0;
}

.editorial-nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--eye-clay-accent);
  transition: width 0.3s ease;
}

.editorial-nav-item:hover::after {
  width: 100%;
}

.editorial-burger-trigger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.editorial-burger-trigger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--eye-charcoal-ink);
  transition: 0.3s ease;
}

/* Hero Section Editorial Split */
.editorial-hero-frame {
  display: flex;
  min-height: 85vh;
  border-bottom: 1px solid var(--eye-muted-border);
}

.editorial-hero-vertical {
  width: 30%;
  background-color: var(--eye-clay-accent);
  color: var(--eye-cream-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.editorial-hero-vertical-txt {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.85;
}

.editorial-hero-right {
  width: 70%;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 4rem;
}

.editorial-hero-right::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(252, 250, 247, 0.85);
  z-index: 1;
}

.editorial-hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.editorial-hero-tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--eye-clay-accent);
  margin-bottom: 1rem;
  font-weight: 700;
  display: block;
}

.editorial-hero-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.editorial-hero-lead {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: #4a4a4a;
}

.editorial-main-action {
  display: inline-block;
  background-color: var(--eye-clay-accent);
  color: var(--eye-cream-bg);
  padding: 1rem 2.5rem;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  border: 1px solid var(--eye-clay-accent);
  border-radius: var(--visual-radius);
  transition: all 0.3s ease;
}

.editorial-main-action:hover {
  background-color: transparent;
  color: var(--eye-clay-accent);
}

/* Content Pull-Quote Block */
.editorial-quote-bar {
  padding: 10dvh 2rem;
  background-color: var(--eye-sand-surface);
  text-align: center;
  border-bottom: 1px solid var(--eye-muted-border);
}

.editorial-quote-text {
  max-width: 900px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  line-height: 1.4;
  position: relative;
  padding: 0 2rem;
}

.editorial-quote-text::before {
  content: '“';
  font-size: 5rem;
  position: absolute;
  top: -2.5rem;
  left: -1rem;
  color: var(--eye-clay-accent);
  opacity: 0.3;
}

.editorial-quote-text::after {
  content: '”';
  font-size: 5rem;
  position: absolute;
  bottom: -4.5rem;
  right: -1rem;
  color: var(--eye-clay-accent);
  opacity: 0.3;
}

/* Content Split Section */
.editorial-content-split {
  display: flex;
  border-bottom: 1px solid var(--eye-muted-border);
}

.editorial-split-media {
  width: 45%;
  min-height: 500px;
  background-size: cover;
  background-position: center;
}

.editorial-split-info {
  width: 55%;
  padding: 10dvh 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.editorial-split-subtitle {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--eye-clay-accent);
  margin-bottom: 1rem;
  font-weight: 700;
}

.editorial-split-heading {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

.editorial-split-txt {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #4a4a4a;
}

/* Features Magazine Grid */
.editorial-features-section {
  padding: 16dvh 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.editorial-features-intro {
  text-align: center;
  margin-bottom: 6rem;
}

.editorial-features-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.editorial-magazine-grid {
  display: flex;
  gap: 3rem;
}

.editorial-big-card {
  width: 50%;
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 450px;
  display: flex;
  align-items: flex-end;
  padding: 3rem;
  border: 1px solid var(--eye-muted-border);
}

.editorial-big-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(35,35,35,0.9) 0%, rgba(35,35,35,0.2) 100%);
}

.editorial-big-card-content {
  position: relative;
  z-index: 2;
  color: var(--eye-cream-bg);
}

.editorial-big-card-title {
  color: var(--eye-cream-bg);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.editorial-small-card-stack {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.editorial-small-card {
  background-color: var(--eye-sand-surface);
  padding: 2.5rem;
  border-top: 4px solid var(--eye-clay-accent);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.editorial-small-card svg {
  fill: var(--eye-clay-accent);
  width: 40px;
  height: 40px;
}

.editorial-small-card-title {
  font-size: 1.5rem;
}

/* How It Works Steps */
.editorial-steps-section {
  background-color: var(--eye-sand-surface);
  border-top: 1px solid var(--eye-muted-border);
  border-bottom: 1px solid var(--eye-muted-border);
  padding: 16dvh 2rem;
}

.editorial-steps-container {
  max-width: 1200px;
  margin: 0 auto;
}

.editorial-steps-header {
  text-align: center;
  margin-bottom: 6rem;
}

.editorial-steps-track {
  display: flex;
  gap: 2rem;
}

.editorial-step-node {
  flex: 1;
  position: relative;
  padding: 2rem;
  background-color: var(--eye-cream-bg);
  border: 1px solid var(--eye-muted-border);
}

.editorial-step-num {
  position: absolute;
  top: -1.5rem;
  right: 1.5rem;
  font-size: 6rem;
  font-family: var(--font-display);
  font-weight: 950;
  line-height: 1;
  color: var(--eye-clay-accent);
  opacity: 0.1;
}

.editorial-step-heading {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.editorial-step-desc {
  color: #555;
  position: relative;
  z-index: 2;
}

/* CTA Strip */
.editorial-cta-strip {
  padding: 16dvh 2rem;
  text-align: center;
  background-color: var(--eye-cream-bg);
}

.editorial-cta-inner {
  max-width: 800px;
  margin: 0 auto;
}

.editorial-cta-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.editorial-cta-desc {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: #4a4a4a;
}

.editorial-cta-btn {
  display: inline-block;
  border: 1px solid var(--eye-clay-accent);
  padding: 1rem 3rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: transparent;
  color: var(--eye-clay-accent);
  border-radius: var(--visual-radius);
  transition: all 0.3s ease;
}

.editorial-cta-btn:hover {
  background-color: var(--eye-clay-accent);
  color: var(--eye-cream-bg);
}

/* Expert Page Custom Layout */
.expert-editorial-stats {
  display: flex;
  justify-content: space-around;
  border-bottom: 1px solid var(--eye-muted-border);
  padding: 4rem 2rem;
  background-color: var(--eye-cream-bg);
}

.expert-stat-block {
  text-align: center;
}

.expert-stat-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--eye-clay-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.expert-stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #555;
}

/* Reserve Page Custom Layout */
.reserve-editorial-intro {
  display: flex;
  gap: 2rem;
  max-width: 1200px;
  margin: 6rem auto 3rem auto;
  padding: 0 2rem;
}

.reserve-info-col {
  flex: 1;
  border-top: 3px solid var(--eye-clay-accent);
  padding-top: 1.5rem;
}

.reserve-info-title {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.reserve-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.reserve-info-list li {
  position: relative;
  padding-left: 1.5rem;
}

.reserve-info-list li::before {
  content: '•';
  color: var(--eye-clay-accent);
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

.reserve-form-holder {
  max-width: 700px;
  margin: 0 auto 10dvh auto;
  padding: 4rem;
  background-color: var(--eye-sand-surface);
  border: 1px solid var(--eye-muted-border);
}

.reserve-form-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
}

.reserve-form-group {
  margin-bottom: 1.5rem;
}

.reserve-form-group label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.reserve-form-group input,
.reserve-form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--eye-muted-border);
  background-color: var(--eye-cream-bg);
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: var(--visual-radius);
}

.reserve-form-group input:focus,
.reserve-form-group textarea:focus {
  outline: none;
  border-color: var(--eye-clay-accent);
}

.reserve-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 2rem 0;
}

.reserve-checkbox-group input {
  margin-top: 0.25rem;
}

.reserve-checkbox-label {
  font-size: 0.85rem;
  color: #4a4a4a;
}

.reserve-submit-btn {
  width: 100%;
  background-color: var(--eye-clay-accent);
  color: var(--eye-cream-bg);
  border: none;
  padding: 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: var(--visual-radius);
  transition: background-color 0.3s ease;
}

.reserve-submit-btn:hover {
  background-color: var(--eye-clay-dark);
}

.reserve-editorial-faq {
  max-width: 800px;
  margin: 0 auto 16dvh auto;
  padding: 0 2rem;
}

.reserve-faq-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 4rem;
}

.reserve-faq-item {
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--eye-muted-border);
  padding-bottom: 1.5rem;
}

.reserve-faq-quest {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.reserve-faq-answ {
  color: #555;
  font-size: 1rem;
}

/* Legal Pages Styling */
.legal-main-section {
  max-width: 900px;
  margin: 6rem auto;
  padding: 0 2rem;
  min-height: 100vh;
}

.legal-main-title {
  font-size: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--eye-muted-border);
  padding-bottom: 1rem;
}

.legal-block {
  margin-bottom: 2.5rem;
}

.legal-block h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.legal-block p {
  color: #4a4a4a;
  margin-bottom: 1rem;
}

/* Thank You Page Styling */
.thank-frame {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  position: relative;
  background-size: cover;
  background-position: center;
}

.thank-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(252, 250, 247, 0.9);
  z-index: 1;
}

.thank-card {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  background-color: var(--eye-cream-bg);
  padding: 4rem;
  border: 1px solid var(--eye-muted-border);
}

.thank-header {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.thank-text {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: #4a4a4a;
}

/* Footer Editorial Styling */
.editorial-foot {
  background-color: var(--eye-sand-surface);
  border-top: 1px solid var(--eye-muted-border);
  padding: 6rem 2rem 3rem 2rem;
}

.editorial-foot-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.editorial-foot-grid {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4rem;
  gap: 3rem;
}

.editorial-foot-brand {
  max-width: 350px;
}

.editorial-foot-desc {
  margin-top: 1.5rem;
  color: #555;
  font-size: 0.95rem;
}

.editorial-foot-links-group {
  display: flex;
  gap: 4rem;
}

.editorial-foot-col-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: var(--eye-clay-accent);
}

.editorial-foot-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.editorial-foot-links a {
  font-size: 0.9rem;
  color: #4a4a4a;
}

.editorial-foot-links a:hover {
  color: var(--eye-clay-accent);
}

.editorial-foot-disclaimer {
  border-top: 1px solid var(--eye-muted-border);
  padding-top: 2rem;
  margin-bottom: 2rem;
  font-size: 0.8rem;
  color: #777;
  text-align: center;
  line-height: 1.5;
}

.editorial-foot-copy {
  font-size: 0.8rem;
  color: #777;
  text-align: center;
}

/* Cookie Banner styling */
.editorial-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--eye-charcoal-ink);
  color: var(--eye-cream-bg);
  padding: 1.5rem 2rem;
  z-index: 9999;
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.editorial-cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.editorial-cookie-text {
  font-size: 0.9rem;
  line-height: 1.4;
}

.editorial-cookie-btns {
  display: flex;
  gap: 1rem;
}

.editorial-cookie-btn {
  padding: 0.5rem 1.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  cursor: pointer;
  border-radius: var(--visual-radius);
  border: 1px solid transparent;
}

.editorial-cookie-btn.accept {
  background-color: var(--eye-clay-accent);
  color: var(--eye-cream-bg);
}

.editorial-cookie-btn.accept:hover {
  background-color: var(--eye-clay-dark);
}

.editorial-cookie-btn.decline {
  background-color: transparent;
  color: var(--eye-cream-bg);
  border-color: rgba(255, 255, 255, 0.3);
}

.editorial-cookie-btn.decline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .editorial-hero-frame {
    flex-direction: column;
  }
  .editorial-hero-vertical {
    width: 100%;
    padding: 1rem;
  }
  .editorial-hero-vertical-txt {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 1.5rem;
    letter-spacing: 4px;
  }
  .editorial-hero-right {
    width: 100%;
    padding: 3rem 1.5rem;
  }
  .editorial-hero-title {
    font-size: 2.5rem;
  }
  .editorial-content-split {
    flex-direction: column;
  }
  .editorial-split-media {
    width: 100%;
    min-height: 300px;
  }
  .editorial-split-info {
    width: 100%;
    padding: 4rem 1.5rem;
  }
  .editorial-split-heading {
    font-size: 2rem;
  }
  .editorial-magazine-grid {
    flex-direction: column;
  }
  .editorial-big-card, .editorial-small-card-stack {
    width: 100%;
  }
  .editorial-steps-track {
    flex-direction: column;
    gap: 3rem;
  }
  .reserve-editorial-intro {
    flex-direction: column;
  }
  .editorial-foot-grid {
    flex-direction: column;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .editorial-burger-trigger {
    display: flex;
  }
  .editorial-nav-box {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background-color: var(--eye-cream-bg);
    border-bottom: 1px solid var(--eye-muted-border);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    z-index: 999;
  }
  .editorial-menu-checkbox:checked ~ .editorial-nav-box {
    transform: translateY(0);
  }
  .editorial-menu-checkbox:checked ~ .editorial-burger-trigger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .editorial-menu-checkbox:checked ~ .editorial-burger-trigger span:nth-child(2) {
    opacity: 0;
  }
  .editorial-menu-checkbox:checked ~ .editorial-burger-trigger span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  .reserve-form-holder {
    padding: 2rem 1rem;
  }
  .editorial-cookie-inner {
    flex-direction: column;
    text-align: center;
  }
  .expert-editorial-stats {
    flex-direction: column;
    gap: 2rem;
  }
}