:root {
  --gk-clay-bg: #FAF9F5;
  --gk-forest-main: #14321A;
  --gk-forest-light: #234E2D;
  --gk-sand-accent: #B28247;
  --gk-sand-soft: #EFECE3;
  --gk-ink-dark: #101612;
  --gk-ash-light: #E7E4D9;
  --gk-crystal-base: #FFFFFF;
  --gk-accent-gradient: linear-gradient(135deg, #14321A 0%, #295F35 100%);
  --gk-font-display: 'Montserrat', sans-serif;
  --gk-font-body: 'Open Sans', sans-serif;
  
  --gk-radius-soft: 16px;
  --gk-shadow-raised: 0 10px 30px rgba(20, 50, 26, 0.08);
  --gk-shadow-hover: 0 15px 35px rgba(20, 50, 26, 0.12);
}

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

body {
  font-family: var(--gk-font-body);
  background-color: var(--gk-clay-bg);
  color: var(--gk-ink-dark);
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--gk-font-display);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gk-forest-main);
  letter-spacing: 0.5px;
}

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

/* Header & Navigation (Preset B Style: Light with border) */
.gk-top-stripe {
  background-color: var(--gk-sand-accent);
  color: var(--gk-crystal-base);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.gk-top-stripe a {
  text-decoration: underline;
  margin-left: 5px;
}

.gk-brand-header {
  background-color: var(--gk-crystal-base);
  border-bottom: 1px solid var(--gk-ash-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
  transition: box-shadow 0.3s ease;
}

.gk-brand-header:focus-within {
  box-shadow: 0 4px 20px rgba(20, 50, 26, 0.1);
}

.gk-header-holder {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
}

.gk-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--gk-font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gk-forest-main);
}

.gk-logo-link svg {
  fill: var(--gk-sand-accent);
  width: 32px;
  height: 32px;
}

/* CSS-only Hamburger Menu */
.gk-menu-switch {
  display: none;
}

.gk-hamburger-icon {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.gk-hamburger-icon span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--gk-forest-main);
  transition: 0.3s;
}

.gk-nav-list {
  display: flex;
  gap: 30px;
  list-style: none;
  align-items: center;
}

.gk-nav-link-item {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  padding: 5px 0;
}

.gk-nav-link-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gk-sand-accent);
  transition: width 0.3s ease;
}

.gk-nav-link-item:hover::after,
.gk-nav-link-item.gk-active::after {
  width: 100%;
}

/* Buttons */
.gk-action-btn {
  display: inline-block;
  background: var(--gk-accent-gradient);
  color: var(--gk-crystal-base);
  padding: 14px 28px;
  border-radius: var(--gk-radius-soft);
  font-family: var(--gk-font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  box-shadow: var(--gk-shadow-raised);
}

.gk-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--gk-shadow-hover);
}

.gk-action-btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--gk-sand-accent);
  border: 2px solid var(--gk-sand-accent);
  padding: 12px 26px;
  border-radius: var(--gk-radius-soft);
  font-family: var(--gk-font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gk-action-btn-secondary:hover {
  background: var(--gk-sand-accent);
  color: var(--gk-crystal-base);
}

/* Sections Base Styling */
.gk-outer-wrap {
  padding: 13dvh 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero Section (Preset B: Split Screen) */
.gk-hero-split {
  display: flex;
  min-height: 80vh;
  background-color: var(--gk-crystal-base);
  overflow: hidden;
  border-bottom: 1px solid var(--gk-ash-light);
}

.gk-hero-split-left {
  flex: 55;
  background-color: var(--gk-sand-soft);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.gk-hero-split-right {
  flex: 45;
  background-size: cover;
  background-position: center;
  min-height: 400px;
}

.gk-hero-intro-label {
  color: var(--gk-sand-accent);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.gk-hero-main-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 25px;
}

.gk-hero-description {
  font-size: 1.1rem;
  margin-bottom: 35px;
  color: var(--gk-ink-dark);
}

/* Magazine Image Strip & 3 Columns (Preset B Style) */
.gk-magazine-strip {
  width: 100%;
  height: 45vh;
  object-fit: cover;
  display: block;
}

.gk-magazine-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 13dvh 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.gk-magazine-col {
  border-top: 3px solid var(--gk-sand-accent);
  padding-top: 25px;
}

.gk-magazine-col-title {
  font-size: 1.15rem;
  margin-bottom: 15px;
}

/* Masonry Features Section (Preset B Style) */
.gk-masonry-deck {
  columns: 3 300px;
  column-gap: 30px;
}

.gk-masonry-item {
  break-inside: avoid;
  background-color: var(--gk-crystal-base);
  border-radius: var(--gk-radius-soft);
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: var(--gk-shadow-raised);
}

.gk-masonry-item:hover {
  box-shadow: var(--gk-shadow-hover);
}

.gk-masonry-icon-box {
  background-color: var(--gk-sand-soft);
  display: inline-flex;
  padding: 12px;
  border-radius: var(--gk-radius-soft);
  margin-bottom: 20px;
}

.gk-masonry-icon-box svg {
  width: 32px;
  height: 32px;
  fill: var(--gk-forest-main);
}

.gk-masonry-item h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

/* How It Works Progress Track (Preset B Style) */
.gk-progress-track {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  margin-top: 60px;
  position: relative;
}

.gk-progress-item {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
}

.gk-progress-circle {
  width: 60px;
  height: 60px;
  background-color: var(--gk-crystal-base);
  border: 3px solid var(--gk-ash-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gk-forest-main);
  transition: all 0.3s ease;
}

.gk-progress-item.gk-active .gk-progress-circle {
  background-color: var(--gk-sand-accent);
  border-color: var(--gk-sand-accent);
  color: var(--gk-crystal-base);
  transform: scale(1.1);
}

.gk-progress-line {
  position: absolute;
  top: 30px;
  left: 5%;
  right: 5%;
  height: 2px;
  border-top: 2px dashed var(--gk-ash-light);
  z-index: 1;
}

.gk-progress-item h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.gk-progress-item p {
  font-size: 0.9rem;
}

/* CTA Strip (Preset B Style) */
.gk-accent-strip {
  background: var(--gk-clay-bg);
  padding: 13dvh 24px;
}

.gk-accent-strip-box {
  background: var(--gk-accent-gradient);
  color: var(--gk-crystal-base);
  border-radius: var(--gk-radius-soft);
  padding: 80px 40px;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: var(--gk-shadow-raised);
}

.gk-accent-strip-box h2 {
  color: var(--gk-crystal-base);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 20px;
}

.gk-accent-strip-box p {
  max-width: 600px;
  margin: 0 auto 35px;
  font-size: 1.1rem;
}

/* Expert Page Layout (Preset B) */
.gk-expert-bio-split {
  display: flex;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.gk-expert-bio-image {
  flex: 1;
  border-radius: var(--gk-radius-soft);
  box-shadow: var(--gk-shadow-raised);
  overflow: hidden;
  max-height: 550px;
}

.gk-expert-bio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gk-expert-bio-content {
  flex: 1;
}

.gk-expert-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
  background-color: var(--gk-crystal-base);
  padding: 40px;
  border-radius: var(--gk-radius-soft);
  box-shadow: var(--gk-shadow-raised);
  margin-bottom: 100px;
}

.gk-stat-number {
  font-family: var(--gk-font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gk-sand-accent);
  line-height: 1;
  margin-bottom: 10px;
}

.gk-stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gk-forest-main);
}

.gk-sc-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.gk-sc-accordion-item {
  background-color: var(--gk-crystal-base);
  border-radius: var(--gk-radius-soft);
  box-shadow: var(--gk-shadow-raised);
  padding: 24px;
}

.gk-sc-accordion-item h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--gk-sand-soft);
  padding-bottom: 10px;
}

/* Reserve Page Split (Preset B) */
.gk-reserve-split {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.gk-reserve-info {
  flex: 1;
}

.gk-reserve-form-side {
  flex: 1;
  background-color: var(--gk-crystal-base);
  padding: 50px 40px;
  border-radius: var(--gk-radius-soft);
  box-shadow: var(--gk-shadow-raised);
}

.gk-reserve-card {
  background-color: var(--gk-crystal-base);
  padding: 30px;
  border-radius: var(--gk-radius-soft);
  box-shadow: var(--gk-shadow-raised);
  margin-bottom: 25px;
}

.gk-reserve-card h3 {
  font-size: 1.15rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.gk-reserve-card h3 svg {
  width: 24px;
  height: 24px;
  fill: var(--gk-sand-accent);
}

.gk-bullet-list {
  list-style: none;
}

.gk-bullet-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.gk-bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: var(--gk-sand-accent);
  border-radius: 50%;
}

.gk-form-field {
  margin-bottom: 25px;
}

.gk-form-field label {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 8px;
  color: var(--gk-forest-main);
}

.gk-form-field input[type="text"],
.gk-form-field input[type="tel"],
.gk-form-field input[type="email"],
.gk-form-field textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--gk-ash-light);
  border-radius: var(--gk-radius-soft);
  background-color: var(--gk-clay-bg);
  font-family: var(--gk-font-body);
  font-size: 1rem;
  color: var(--gk-ink-dark);
}

.gk-form-field input:focus,
.gk-form-field textarea:focus {
  outline: none;
  border-color: var(--gk-sand-accent);
  background-color: var(--gk-crystal-base);
}

.gk-checkbox-field {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 30px;
  font-size: 0.85rem;
}

.gk-checkbox-field input {
  margin-top: 4px;
}

/* FAQ Accordion Section */
.gk-faq-sc {
  margin-top: 100px;
}

.gk-faq-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.gk-faq-panel {
  background-color: var(--gk-crystal-base);
  border-radius: var(--gk-radius-soft);
  padding: 25px 30px;
  box-shadow: var(--gk-shadow-raised);
}

.gk-faq-panel h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--gk-forest-main);
}

/* Footer (Common) */
.gk-brand-footer {
  background-color: var(--gk-forest-main);
  color: var(--gk-ash-light);
  padding: 80px 24px 30px;
  border-top: 4px solid var(--gk-sand-accent);
}

.gk-footer-holder {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.gk-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--gk-font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gk-crystal-base);
}

.gk-footer-logo svg {
  fill: var(--gk-sand-accent);
  width: 40px;
  height: 40px;
}

.gk-footer-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.gk-footer-links a {
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.gk-footer-links a:hover {
  color: var(--gk-sand-accent);
}

.gk-footer-disclaimer {
  max-width: 800px;
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(231, 228, 217, 0.6);
  border-top: 1px solid rgba(231, 228, 217, 0.15);
  padding-top: 30px;
}

.gk-footer-copyright {
  font-size: 0.8rem;
  color: rgba(231, 228, 217, 0.4);
}

/* Cookie Policy & Support alignment classes */
.gk-legal-article {
  max-width: 800px;
  margin: 0 auto;
}

.gk-legal-article h1 {
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.gk-legal-article h2 {
  font-size: 1.4rem;
  margin-top: 40px;
  margin-bottom: 20px;
}

.gk-legal-article p {
  margin-bottom: 20px;
  font-size: 0.95rem;
}

/* Cookie Banner (fixed, bottom) */
.gk-cookie-box {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--gk-crystal-base);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
  border-top: 3px solid var(--gk-sand-accent);
  padding: 24px;
  z-index: 9999;
  display: none;
}

.gk-cookie-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.gk-cookie-text {
  font-size: 0.9rem;
}

.gk-cookie-buttons {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.gk-cookie-btn-accept {
  background: var(--gk-accent-gradient);
  color: var(--gk-crystal-base);
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
}

.gk-cookie-btn-decline {
  background: transparent;
  color: var(--gk-forest-main);
  border: 1px solid var(--gk-ash-light);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
}

/* Responsive Rules */
@media (max-width: 991px) {
  .gk-hero-split {
    flex-direction: column;
  }
  .gk-hero-split-left {
    padding: 60px 40px;
  }
  .gk-hero-split-right {
    min-height: 350px;
  }
  .gk-magazine-columns {
    grid-template-columns: 1fr;
  }
  .gk-expert-bio-split {
    flex-direction: column;
  }
  .gk-expert-stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .gk-reserve-split {
    flex-direction: column;
  }
  .gk-reserve-form-side {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .gk-hamburger-icon {
    display: flex;
  }
  
  .gk-nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--gk-crystal-base);
    flex-direction: column;
    padding: 24px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-top: 1px solid var(--gk-ash-light);
    gap: 20px;
    align-items: stretch;
    text-align: center;
  }
  
  .gk-menu-switch:checked ~ .gk-nav-list {
    display: flex;
  }

  .gk-progress-track {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 40px;
  }
  
  .gk-progress-line {
    top: 0;
    bottom: 0;
    left: 20px;
    width: 2px;
    height: 90%;
    border-left: 2px dashed var(--gk-ash-light);
    border-top: none;
  }
  
  .gk-progress-item {
    text-align: left;
    display: flex;
    gap: 20px;
    align-items: center;
  }
  
  .gk-progress-circle {
    margin: 0;
    flex-shrink: 0;
  }
  
  .gk-cookie-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}