/* ============================================================
     The Meeting Room – Highcliffe on Sea  |  style.css
     Palette: Sage Teal #5a9a94 · Warm Beige #b8a99a · Cream #faf9f7
     ============================================================ */
  
  @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Lato:wght@300;400;700&display=swap');
  
  /* ── Reset & Base ── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  
  :root {
    --teal:        #5a9a94;
    --teal-dark:   #3d7a74;
    --teal-light:  #e6f4f3;
    --beige:       #b8a99a;
    --beige-light: #f2ede8;
    --cream:       #faf9f7;
    --charcoal:    #3a3a3a;
    --mid-grey:    #6b6b6b;
    --white:       #ffffff;
    --border:      #ddd8d0;
    --shadow:      0 4px 24px rgba(0,0,0,.08);
    --shadow-lg:   0 8px 40px rgba(0,0,0,.12);
    --radius:      12px;
    --transition:  .3s ease;
  }
  
  html { scroll-behavior: smooth; }
  
  body {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.75;
    font-size: 17px;
  }
  
  h1,h2,h3,h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    line-height: 1.2;
    color: var(--charcoal);
  }
  
  a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
  a:hover { color: var(--teal-dark); }
  
  img { display: block; max-width: 100%; height: auto; }
  
  /* ── HEADER ── */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(250,249,247,.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
  }
  
  .header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    gap: 24px;
  }
  
  .logo-link {
    margin-right: auto;
    flex-shrink: 0;
  }

  .logo-link img {
    height: 72px;
    width: auto;
  }
  
  .site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
  }
  
  .site-nav a {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--charcoal);
    padding: 8px 16px;
    border-radius: 50px;
    transition: all var(--transition);
  }
  
  .site-nav a:hover,
  .site-nav a.active {
    background: var(--teal-light);
    color: var(--teal-dark);
  }
  
  .btn-client-login {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--white) !important;
    background: var(--teal);
    padding: 10px 22px !important;
    border-radius: 50px !important;
    border: 2px solid var(--teal);
    transition: all var(--transition) !important;
    white-space: nowrap;
  }
  
  .btn-client-login:hover {
    background: var(--teal-dark) !important;
    border-color: var(--teal-dark) !important;
    color: var(--white) !important;
  }
  
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
  }
  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: var(--transition);
  }
  
  /* ── HERO ── */
  .hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--beige-light);
  }
  
  .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/office2.jpg');
    background-size: cover;
    background-position: center 30%;
    filter: brightness(.92);
  }
  
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(90,154,148,.08) 0%, rgba(0,0,0,.15) 100%);
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 40px 24px;
  }
  
  .hero-logo {
    width: 240px;
    max-width: 80%;
    margin: 0 auto 32px;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,.4));
  }
  
  .hero-content h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    color: var(--white);
    letter-spacing: .02em;
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0,0,0,.4);
  }
  
  .hero-content p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,.9);
    margin-bottom: 36px;
    font-weight: 300;
    letter-spacing: .03em;
  }
  
  .hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .btn {
    display: inline-block;
    padding: 15px 36px;
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: all var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
  }
  
  .btn-primary {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
  }
  .btn-primary:hover {
    background: var(--teal-dark);
    border-color: var(--teal-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(90,154,148,.4);
  }
  
  .btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.8);
  }
  .btn-outline:hover {
    background: rgba(255,255,255,.15);
    color: var(--white);
    transform: translateY(-2px);
  }
  
  /* ── SECTION WRAPPER ── */
  .section {
    padding: 90px 24px;
  }
  
  .section-inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .section-label {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 12px;
  }
  
  .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    color: var(--charcoal);
  }
  
  .section-subtitle {
    font-size: 1.1rem;
    color: var(--mid-grey);
    max-width: 600px;
    margin-bottom: 56px;
  }
  
  .section-alt { background: var(--beige-light); }
  .section-teal { background: var(--teal-light); }
  
  /* ── DIVIDER ── */
  .divider {
    width: 60px;
    height: 3px;
    background: var(--teal);
    border-radius: 2px;
    margin: 0 0 32px;
  }
  .divider-center { margin: 0 auto 32px; }
  
  /* ── FEATURES GRID ── */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    margin-top: 56px;
  }

  /* ── FEATURES + VIDEO SIDE-BY-SIDE LAYOUT ── */
  .features-video-wrap {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 56px;
    margin-top: 56px;
    align-items: start;
  }

  .features-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 0;
  }

  .features-video-col {
    position: sticky;
    top: 100px;
  }

  .features-video-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 10px;
    line-height: 1.25;
  }

  .features-video-sub {
    font-size: .92rem;
    color: var(--mid-grey);
    margin-bottom: 20px;
    line-height: 1.65;
  }

  .features-video-wrap-inner {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--border);
    aspect-ratio: 9/16;
    max-height: 70vh;
    background: #1a1a1a;
  }

  .features-video-wrap-inner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
  }
  
  .feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    background: var(--teal-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 26px;
  }
  
  .feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    font-weight: 600;
  }
  
  .feature-card p {
    font-size: .93rem;
    color: var(--mid-grey);
    line-height: 1.65;
  }
  
  /* ── SPLIT SECTION (image + text) ── */
  .split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  
  .split-reverse { direction: rtl; }
  .split-reverse > * { direction: ltr; }
  
  .split-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
  }
  
  .split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
  }
  .split-image:hover img { transform: scale(1.04); }
  
  .split-text .section-label { margin-bottom: 8px; }
  .split-text h2 { margin-bottom: 20px; }
  .split-text p { color: var(--mid-grey); margin-bottom: 16px; }
  
  /* ── AVAILABILITY TABLE ── */
  .hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 40px;
  }
  
  .hours-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    border-top: 4px solid var(--teal);
    box-shadow: var(--shadow);
  }
  
  .hours-card .day {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--teal-dark);
    margin-bottom: 8px;
  }
  
  .hours-card .time {
    font-size: .9rem;
    color: var(--mid-grey);
    font-weight: 400;
  }
  
  /* ── PRICING STRIP ── */
  .pricing-strip {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 48px;
    justify-content: center;
  }
  
  .pricing-item {
    flex: 1;
    min-width: 200px;
    max-width: 260px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: all var(--transition);
  }
  
  .pricing-item:hover,
  .pricing-item.featured {
    border-color: var(--teal);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }
  
  .pricing-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--teal-dark);
  }
  
  .pricing-item p {
    font-size: .92rem;
    color: var(--mid-grey);
  }
  
  /* ── VIDEO PLACEHOLDER ── */
  .video-section {
    padding: 90px 24px;
    background: var(--charcoal);
    text-align: center;
  }
  
  .video-section .section-label { color: rgba(255,255,255,.6); }
  .video-section .section-title { color: var(--white); }
  .video-section .section-subtitle { color: rgba(255,255,255,.65); margin: 0 auto 48px; }
  
  .video-placeholder-wrap {
    max-width: 540px;
    margin: 0 auto;
    position: relative;
  }
  
  .video-placeholder {
    aspect-ratio: 9/16;
    max-height: 70vh;
    background: #1a1a1a;
    border-radius: 20px;
    border: 3px solid rgba(255,255,255,.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
  }
  
  .video-placeholder .play-icon {
    width: 72px;
    height: 72px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
  }
  
  .video-placeholder .vp-label {
    font-size: .85rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
  }
  
  .video-placeholder .vp-note {
    font-size: .78rem;
    color: rgba(255,255,255,.25);
  }
  
  /* ── GALLERY ROW ── */
  .gallery-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 48px;
  }
  
  .gallery-row img {
    border-radius: var(--radius);
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    box-shadow: var(--shadow);
    transition: transform .5s ease;
  }
  
  .gallery-row img:hover { transform: scale(1.02); }
  
  /* ── CONTACT INFO BAR ── */
  .contact-bar {
    background: var(--teal);
    color: var(--white);
    padding: 24px;
    text-align: center;
  }
  
  .contact-bar-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
  }
  
  .contact-bar a { color: var(--white); font-weight: 700; }
  .contact-bar a:hover { opacity: .8; }
  
  .contact-bar .cb-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .95rem;
  }
  
  .contact-bar .cb-icon {
    font-size: 18px;
    opacity: .85;
  }
  
  /* ── CONTACT PAGE ── */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    align-items: start;
    margin-top: 56px;
  }
  
  .contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  .info-item {
    display: flex;
    gap: 14px;
    margin-bottom: 24px;
    align-items: flex-start;
  }
  
  .info-item .icon {
    width: 44px;
    height: 44px;
    background: var(--teal-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }
  
  .info-item .text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
  }
  
  .info-item .text p, .info-item .text a {
    font-size: .92rem;
    color: var(--mid-grey);
  }
  
  /* ── FORM ── */
  .contact-form-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 48px 40px;
    box-shadow: var(--shadow-lg);
  }
  
  .form-group {
    margin-bottom: 24px;
  }
  
  .form-group label {
    display: block;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 8px;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    color: var(--charcoal);
    background: var(--cream);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(90,154,148,.15);
    background: var(--white);
  }
  
  .form-group textarea { min-height: 150px; resize: vertical; }
  
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .form-submit { width: 100%; padding: 17px; font-size: 15px; }
  
  .alert {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: .95rem;
  }
  .alert-success { background: #e6f4f3; color: var(--teal-dark); border: 1px solid var(--teal); }
  .alert-error   { background: #fdecea; color: #c0392b; border: 1px solid #e74c3c; }
  
  /* ── CALENDAR PAGE ── */
  .calendar-hero {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    padding: 80px 24px;
    text-align: center;
  }
  
  .calendar-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 16px; }
  .calendar-hero p  { color: rgba(255,255,255,.85); font-size: 1.1rem; max-width: 580px; margin: 0 auto; }
  
  .calendar-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 24px;
  }
  
  .calendar-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
  }
  
  .calendar-card-header {
    background: var(--teal-light);
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }
  
  .calendar-card-header .cal-icon {
    width: 48px;
    height: 48px;
    background: var(--teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
  }
  
  .calendar-card-header h2 {
    font-size: 1.4rem;
    color: var(--teal-dark);
  }
  
  .calendar-card-header p {
    font-size: .88rem;
    color: var(--mid-grey);
    margin-top: 2px;
  }
  
  .calendar-iframe-wrap {
    padding: 28px;
  }
  
  .calendar-info-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    padding: 24px 28px;
    background: var(--beige-light);
    border-top: 1px solid var(--border);
  }
  
  .cal-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .88rem;
    color: var(--mid-grey);
  }
  
  .cal-info-item span:first-child {
    font-size: 20px;
  }
  
  /* ── FOOTER ── */
  .site-footer {
    background: var(--charcoal);
    color: rgba(255,255,255,.7);
    padding: 60px 24px 30px;
  }
  
  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  
  .footer-logo img { height: 84px; filter: brightness(1.1); margin-bottom: 20px; }
  .footer-logo p   { font-size: .9rem; line-height: 1.7; max-width: 280px; }
  
  .footer-col h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 600;
  }
  
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  
  .footer-col a {
    color: rgba(255,255,255,.65);
    font-size: .9rem;
    transition: color var(--transition);
  }
  .footer-col a:hover { color: var(--teal); }
  
  .footer-col .contact-line {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: .9rem;
  }
  
  .footer-col .contact-line .icon { font-size: 16px; margin-top: 3px; opacity: .7; }
  
  .footer-bottom {
    padding-top: 28px;
    text-align: center;
    font-size: .82rem;
    color: rgba(255,255,255,.35);
  }

  .footer-credits {
    margin-top: 6px;
    font-size: .78rem;
    color: rgba(255,255,255,.28);
  }

  .footer-credits a {
    color: rgba(255,255,255,.45);
    text-decoration: none;
  }

  .footer-credits a:hover {
    color: rgba(255,255,255,.75);
    text-decoration: underline;
  }
  
  /* ── PAGE HERO (inner pages) ── */
  .page-hero {
    background: var(--beige-light);
    padding: 80px 24px;
    text-align: center;
    border-bottom: 1px solid var(--border);
  }
  
  .page-hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    margin-bottom: 14px;
  }
  
  .page-hero p {
    font-size: 1.1rem;
    color: var(--mid-grey);
    max-width: 560px;
    margin: 0 auto;
  }
  
  /* ── ABOUT PAGE ── */
  .about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-top: 48px;
  }
  
  .amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 40px;
  }
  
  .amenity-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px 20px;
    box-shadow: var(--shadow);
  }
  
  .amenity-icon {
    width: 48px;
    height: 48px;
    background: var(--teal-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
  }
  
  .amenity-item h4 { font-size: 1rem; margin-bottom: 4px; }
  .amenity-item p  { font-size: .88rem; color: var(--mid-grey); }
  
  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .split, .split-reverse { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
    .split-reverse .split-image { order: -1; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid  { grid-template-columns: 1fr 1fr; }
    .about-intro  { grid-template-columns: 1fr; }
    .features-video-wrap { grid-template-columns: 1fr; }
    .features-video-col { position: static; }
    .features-video-wrap-inner {
      aspect-ratio: 16/9 !important;
      max-height: 56vw;
      width: 100%;
      max-width: 100%;
    }
  }
  
  @media (max-width: 680px) {
    .site-nav { display: none; flex-direction: column; position: absolute; top: 80px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 16px 0; gap: 0; box-shadow: var(--shadow); }
    .site-nav.open { display: flex; }
    .site-nav a { display: block; padding: 12px 24px; border-radius: 0; }
    .hamburger { display: flex; }
    .form-row  { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .header-inner { height: 80px; }
    .logo-link img { height: 50px; }
    .hamburger { margin-left: auto; }
    nav { flex: 0; }
    .contact-bar-inner { gap: 20px; }
    .gallery-row { grid-template-columns: 1fr; }
  }