
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --parchment: #FAF6F1;
  --linen:     #F2EBE0;
  --blush:     #E8D3C0;
  --rose:      #C4845A;
  --rose-dark: #A86840;
  --bark:      #3A2A20;
  --muted:     #9A8578;
  --white:     #FFFFFF;
  --border:    rgba(196,132,90,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito Sans', sans-serif;
  /*background: var(--parchment);*/
  background: white;
  color: var(--bark);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── Decorative background ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(196,132,90,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 0% 100%, rgba(196,132,90,0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}


/* Navbar main container */
  .nav-container-flex {
    position: sticky;
    top: 0;
     border-bottom: 1px solid #e8d9c8;
     /*background: #fdf8f3;*/
     background-color: black;
    z-index: 999;
    box-shadow: 0 2px 16px rgba(59,42,26,.07);
    transition: box-shadow .3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    padding: 0 5%;
  }

  .larkita{
   font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color:tan;
  text-decoration: none;
  }

  
.nav-order {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid tan;
  color: var(--parchment);
  padding: 0.5rem 1.3rem;
  text-decoration: none;
  transition: all 0.3s;
}
.nav-order:hover { background: var(--gold); color: var(--ink); }


  nav.scrolled { box-shadow: 0 4px 28px rgba(59,42,26,.13); }

  /* Navigation links */
  
 
  .btn-book-now{
   margin-left: 100px;
    width: 150px;
    height: 40px;
    
  }


  .nav-links a {
    color: var(--parchment);
    
    text-decoration: none;
    font-size: 0.8rem;
    padding: 10px;
    /*font-family: "raleway", sans-serif;*/
    font-weight: 400;
     text-transform: uppercase;
     
     position: relative;
      transition: color .3s;
      letter-spacing: 2px; 
      font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
 
  }

  
  .nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 1.5px; background: #c49a6c; transition: width .3s;
  }

  
  .nav-links a:hover, .nav-links a.active { color: tan; }
  .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

  
  /* Hamburger */
  .hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 5px;
  }

  
  .hamburger span {
    display: block; height: 2px; 
    background: #3b2a1a;
    border-radius: 2px; transition: all .35s;
  }

  
  .hamburger span:nth-child(1) { width: 24px; }
  .hamburger span:nth-child(2) { width: 18px; }
  .hamburger span:nth-child(3) { width: 24px; }

  
  /* Animate to X */
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 24px; }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
   

  
  /* ── OVERLAY ── */
  .overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,.45); z-index: 1000;
    opacity: 0; transition: opacity .3s;
  }

  
  .overlay.show { display: block; }
  .overlay.visible { opacity: 1; }

   /* ── MOBILE DRAWER ── */
  .drawer {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 70%; 
   /* background: #fdf8f3;*/
   background-color: #333;
     z-index: 1001;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    box-shadow: -8px 0 40px rgba(59,42,26,.18);
    display: flex; flex-direction: column;
  }

  .drawer.open { transform: translateX(0); }


  
  /* Drawer header */
  .drawer-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 22px; border-bottom: 1px solid #e8d9c8;
   /* background-color: ;*/
  }

  
  .close-btn {
    width: 38px; height: 38px; border-radius: 50%;
    background: #f5ede0; border: 1px solid #e8d9c8;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: #3b2a1a;
    transition: background .2s, transform .3s;
  }

  .close-btn:hover { background: #e8d0b8; transform: rotate(90deg); }

  /* Drawer links */
  .drawer-links { list-style: none; padding: 14px 0; flex: 1; overflow-y: auto; }
  .drawer-links li a {
    display: flex; align-items: center; gap: 13px;
    padding: 14px 26px; text-decoration: none;
    font-size: .8rem; font-weight: 500; letter-spacing: 2px;
    text-transform: uppercase; color: white;
    border-left: 3px solid transparent;
    transition: color .2s, background .2s, border-color .2s;
    font-family: "raleway", sans-serif;
  }

  
  .drawer-links li a .d-icon { font-size: 1.05rem; }
  .drawer-links li a:hover { background: #f5ede0; color: #c49a6c; }
  .drawer-links li a.active {
    color: #c49a6c; border-left-color: #c49a6c;
    font-weight: 700; background: #fdf0e2;
  }

  
  /* Drawer footer */
  .drawer-footer { padding: 20px 22px; border-top: 1px solid #e8d9c8; }
  .drawer-footer .btn-book { width: 100%; padding: 13px; font-size: .72rem; margin-bottom: 14px; }
  .drawer-socials { display: flex; justify-content: center; gap: 12px; margin-bottom: 12px; }
  .drawer-socials a {
    width: 50px; height: 50px; border-radius: 50%;
    
    display: flex; align-items: center; justify-content: center;
    font-size: .85rem; text-decoration: none; color: white;
    transition: border-color .2s, transform .2s;
  }

  
  .drawer-socials a:hover { border-color: #c49a6c; transform: translateY(-5px); }
  .drawer-tagline { text-align: center; font-size: .6rem; color: white; letter-spacing: 1px; }

   /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-right { display: none; }
    .hamburger { display: flex; }

  }



/* ── Page layout ── */
.page {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 68px);
}

/* ── Left panel ── */
.left-panel {
  padding: 5rem 4rem 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

/* Decorative circle */
.left-panel::before {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid var(--border);
  pointer-events: none;
}

.left-panel::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid var(--border);
  pointer-events: none;
}

/*.panel-top {}*/

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: tan;
}
.eyebrow span {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color:tan;
}

.panel-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.4rem;
}
.panel-heading em {
  font-style: italic;
  display: block;
  color: tan;
}

.panel-sub {
  font-size: 0.88rem;
  color: #333;
  line-height: 1.85;
  max-width: 360px;
  font-weight: 300;
}

/* ── Info cards ── */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 3rem 0;
}

.info-card {
  background: var(--white);
  border: 1px solid tan;
  border-radius: 2px;
  padding: 1.3rem 1.4rem;
  transition: border-color 0.25s, transform 0.25s;
}
.info-card:hover {
  border-color: rgba(196,132,90,0.4);
  transform: translateY(-2px);
}

.info-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  /*background: rgba(196,132,90,0.08);*/
  background-color: tan;
  border-radius: 50%;
  margin-bottom: 0.75rem;
}
.info-icon svg { width: 14px; height: 14px; stroke: black; fill: none; stroke-width: 1.5; }

.info-label {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.info-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--bark);
  line-height: 1.4;
}

.mailto-link{
  text-decoration: none;
  color: black;
  font-family: 'Cormorant Garamond', serif;
  border-bottom: 1px solid tan;
}

.phone-number-link{
  text-decoration: none;
  color: black;
  font-family: 'Cormorant Garamond', serif;
  border-bottom: 1px solid tan;
}

/* Hours block */
.hours-block {
  /*background: var(--linen);*/
  background: white;
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 1.4rem 1.5rem;
}

.hours-title {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color:tan;
  margin-bottom: 1rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(196,132,90,0.1);
}
.hours-row:last-child { border-bottom: none; }

.day-name {
  font-size: 0.75rem;
  color: var(--bark);
  font-weight: 300;
  letter-spacing: 0.05em;
}
.day-time {
  font-size: 0.72rem;
  color: var(--muted);
  font-family: 'Cormorant Garamond', serif;
}
.day-closed {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  /*color: rgba(154,133,120,0.5);*/
  color: tan;
}

/* Social links */
.social-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.25s;
  /*background: var(--white);*/
  background: white;
}
.social-btn:hover { border-color: var(--rose); color: var(--rose); background: rgba(196,132,90,0.06); }
.social-btn svg { width: 15px; height: 15px; fill: currentColor; }

/* ── Right panel – Form ── */
.right-panel {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-head {
  margin-bottom: 2.5rem;
}

.form-head-label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: tan;
  margin-bottom: 0.6rem;
}

.form-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.2;
}
.form-head h2 em { font-style: italic; color:tan; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #333;
}

.field input,
.field select,
.field textarea {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--bark);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
}

.field input::placeholder,
.field textarea::placeholder { color: rgba(154,133,120,0.5); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(196,132,90,0.08);
}

.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239A8578' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.field textarea { resize: none; height: 120px; line-height: 1.65; }

/* Service pills */
.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.pill {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-family: 'Nunito Sans', sans-serif;
  transition: all 0.2s;
}
.pill:hover { border-color: var(--rose); color: var(--rose); }
.pill.selected { background: var(--rose); border-color: var(--rose); color: var(--white); }

/* ── Validation styles ── */
.field input.invalid,
.field select.invalid,
.field textarea.invalid {
  border-color: #C0392B !important;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.08) !important;
}
.field input.valid,
.field select.valid,
.field textarea.valid {
  border-color: #7B9E6B !important;
  box-shadow: 0 0 0 3px rgba(123,158,107,0.06) !important;
}
.field-error {
  font-size: 0.63rem;
  color: #C0392B;
  letter-spacing: 0.04em;
  margin-top: 0.22rem;
  display: none;
  align-items: center;
  gap: 0.3rem;
  line-height: 1.4;
}
.field-error.show { display: flex; }
.field-error::before {
  content: '✕';
  font-size: 0.55rem;
  font-weight: 700;
  flex-shrink: 0;
}
.char-counter {
  font-size: 0.6rem;
  color: var(--muted);
  text-align: right;
  margin-top: 0.2rem;
  transition: color 0.2s;
}
.char-counter.warn { color: #E67E22; }
.char-counter.over { color: #C0392B; font-weight: 600; }

.form-error-banner {
  display: none;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.1rem;
  background: rgba(192,57,43,0.06);
  border: 1px solid rgba(192,57,43,0.22);
  border-radius: 2px;
}
.form-error-banner.show { display: flex; }
.form-error-banner p { font-size: 0.76rem; color: #C0392B; line-height: 1.5; }

.config-notice {
  background: rgba(196,132,90,0.07);
  border: 1px dashed rgba(196,132,90,0.4);
  border-radius: 2px;
  padding: 0.75rem 1rem;
  font-size: 0.71rem;
  color: var(--muted);
  line-height: 1.65;
}
.config-notice strong { color: var(--rose); }
.config-notice code {
  background: rgba(196,132,90,0.12);
  color: var(--bark);
  padding: 0.05rem 0.3rem;
  border-radius: 2px;
  font-family: monospace;
  font-size: 0.68rem;
}

/* Policy note */
.policy-note {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
}
.policy-note a { color: var(--rose); text-decoration: none; }

/* Submit button */
.submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-submit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: tan;
  color: var(--white);
  border: none;
  padding: 1rem 2.2rem;
  border-radius: 1px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
}
.btn-submit:hover {
  background: white;
  gap: 1.1rem;
  color: #333;
}
.btn-submit svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; transition: transform 0.25s; }
.btn-submit:hover svg { transform: translateX(3px); }

/* Success state */
.success-msg {
  display: none;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.4rem;
  background: rgba(196,132,90,0.08);
  border: 1px solid var(--border);
  border-radius: 2px;
}
.success-msg.show { display: flex; }
.success-msg svg { width: 18px; height: 18px; stroke: var(--rose); fill: none; stroke-width: 2; flex-shrink: 0; }
.success-msg p { font-size: 0.8rem; color: var(--bark); line-height: 1.5; font-weight: 300; }
.success-msg strong { font-weight: 600; color: var(--rose); }

/* ── Map placeholder ── */
.map-strip {
  position: relative;
  z-index: 1;
  height: 220px;
  /*background: var(--linen);*/
  background: black;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.map-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(196,132,90,0.04) 0px, rgba(196,132,90,0.04) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(90deg, rgba(196,132,90,0.04) 0px, rgba(196,132,90,0.04) 1px, transparent 1px, transparent 40px);
}

.map-pin {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.map-pin-icon {
  width: 44px;
  height: 44px;
  /*background: var(--rose);*/
  background: white;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(196,132,90,0.3);
}
.map-pin-icon svg {
  transform: rotate(45deg);
  width: 18px;
  height: 18px;
  stroke: black;
  fill: none;
  stroke-width: 2;
}

.map-address {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: tan;
}

.map-link {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: tan;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1px;
  transition: border-color 0.2s;
}
.map-link:hover { border-color: var(--rose); }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.left-panel, .right-panel {
  animation: fadeUp 0.7s ease both;
}
.right-panel { animation-delay: 0.12s; }

/* ── Responsive ── */
@media (max-width: 900px) {
  nav { padding: 1.2rem 1.5rem; }
  .nav-links { display: none; }
  .page { grid-template-columns: 1fr; }
  .left-panel { padding: 3rem 1.5rem; border-right: none; border-bottom: 1px solid var(--border); }
  .right-panel { padding: 3rem 1.5rem; }
  .info-grid { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
  .info-grid { grid-template-columns: 1fr; }
}