:root {
      --color-charcoal: #3d3d3d;
      --color-warm-grey: #5a5650;
      --color-cream: #f8f6f3;
      --color-gold: #c4a35a;
      --color-gold-light: #d4b978;
      --color-white: #ffffff;
      --font-display: 'Cormorant Garamond', Georgia, serif;
      --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;
    }

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

    body {
      font-family: var(--font-body);
      color: var(--color-charcoal);
      line-height: 1.6;
    }

    /* ===== HEADER ===== */
    .site-header {
      background: var(--color-charcoal);
      padding: 1rem 1.5rem;
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      flex-wrap: wrap;
      z-index: 100;
    }

    .logo {
      display: block;
      height: 32px;
      order: 1;
    }

    .logo img {
      height: 100%;
      width: auto;
    }

    .menu-toggle {
      display: flex;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
      position: absolute;
      right: 1rem;
      top: 1rem;
      z-index: 10;
      order: 2;
    }

    .menu-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--color-white);
      transition: transform 0.3s ease, opacity 0.3s ease;
    }
    
    /* Animate burger to X when menu is open */
    .menu-toggle.active span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
      opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .desktop-nav {
      display: none;
    }

    .mobile-nav {
      width: 100%;
      padding-top: 1rem;
      order: 3;
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transform: translateY(-20px);
      transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                  opacity 0.4s ease-out, 
                  transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-nav.active {
      max-height: 500px;
      opacity: 1;
      transform: translateY(0);
    }
    
    /* Stagger animation for menu items */
    .mobile-nav.active a {
      animation: slideInMenuItem 0.3s ease-out forwards;
      opacity: 0;
    }
    
    .mobile-nav.active a:nth-child(1) { animation-delay: 0.05s; }
    .mobile-nav.active a:nth-child(2) { animation-delay: 0.1s; }
    .mobile-nav.active a:nth-child(3) { animation-delay: 0.15s; }
    .mobile-nav.active a:nth-child(4) { animation-delay: 0.2s; }
    
    @keyframes slideInMenuItem {
      from {
        opacity: 0;
        transform: translateX(-20px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .mobile-nav a {
      display: block;
      color: var(--color-white);
      text-decoration: none;
      padding: 0.75rem 0;
      font-size: 0.85rem;
      font-weight: 400;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      opacity: 0;
      transform: translateX(-20px);
      animation: slideInMenu 0.3s ease forwards;
    }
    
    .mobile-nav.active a:nth-child(1) { animation-delay: 0.1s; }
    .mobile-nav.active a:nth-child(2) { animation-delay: 0.15s; }
    .mobile-nav.active a:nth-child(3) { animation-delay: 0.2s; }
    .mobile-nav.active a:nth-child(4) { animation-delay: 0.25s; }
    
    @keyframes slideInMenu {
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    /* ===== HERO ===== */
    .hero {
      position: relative;
      height: 85vh;
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: var(--color-white);
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(61, 61, 61, 0.3), rgba(61, 61, 61, 0.7)), 
                  url('images/wimpole-grand-5.jpg') center/cover no-repeat;
    }
    
    /* Contact page hero */
    body[data-page="contact"] .page-hero-bg {
      background: linear-gradient(to bottom, rgba(61, 61, 61, 0.3), rgba(61, 61, 61, 0.7)), 
                  url('images/contact-hero.jpg') center/cover no-repeat;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      padding: 2rem;
      max-width: 700px;
    }

    .hero-tagline {
      font-family: var(--font-body);
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--color-gold-light);
      margin-bottom: 1rem;
    }

    .hero-title {
      font-family: var(--font-display);
      font-size: 2.5rem;
      font-weight: 400;
      line-height: 1.2;
      margin-bottom: 1rem;
    }

    .hero-subtitle {
      font-size: 1rem;
      font-weight: 300;
      opacity: 0.9;
      margin-bottom: 2rem;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
    }

    .hero-cta {
      display: inline-flex;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: center;
    }

    .btn {
      display: inline-block;
      padding: 0.875rem 2rem;
      font-family: var(--font-body);
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .btn-primary {
      background: var(--color-gold);
      color: var(--color-white);
    }

    .btn-primary:hover {
      background: var(--color-gold-light);
    }
    
    .btn-light {
      background: #f2f2f2; /* Solid 5% grey */
      color: var(--color-charcoal);
      border: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    .btn-light:hover {
      background: #e8e8e8; /* Slightly darker 8% grey */
      border-color: rgba(255, 255, 255, 0.5);
      transform: translateY(-2px);
    }

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

    .btn-outline:hover {
      background: var(--color-white);
      color: var(--color-charcoal);
    }

    /* ===== INTRO SECTION ===== */
    .intro {
      padding: 4rem 1.5rem;
      background: var(--color-cream);
      text-align: center;
    }

    .intro-content {
      max-width: 700px;
      margin: 0 auto;
    }

    .section-tagline {
      font-family: var(--font-body);
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--color-charcoal);
      margin-bottom: 1rem;
    }

    .section-title {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 400;
      color: var(--color-charcoal);
      margin-bottom: 1.5rem;
    }

    .intro-text {
      font-size: 0.95rem;
      font-weight: 300;
      color: var(--color-warm-grey);
      line-height: 1.8;
    }

    /* ===== LOCATIONS SECTION ===== */
    .locations {
      padding: 4rem 1.5rem;
      background: var(--color-white);
    }

    .locations-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .locations-grid {
      display: grid;
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .location-card {
      position: relative;
      overflow: hidden;
      border-radius: 4px;
    }

    .location-card img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      display: block;
    }

    .location-card-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 2rem;
      background: linear-gradient(transparent, rgba(0,0,0,0.7));
      color: var(--color-white);
    }

    .location-card h3 {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 400;
      margin-bottom: 0.5rem;
    }

    .location-card p {
      font-size: 0.85rem;
      font-weight: 300;
      opacity: 0.9;
      margin-bottom: 1rem;
    }

    .location-card .btn {
      padding: 0.625rem 1.5rem;
      font-size: 0.75rem;
    }

    /* ===== FEATURES SECTION ===== */
    .features {
      padding: 2rem 1.5rem 4rem 1.5rem;
      background: var(--color-charcoal);
      color: var(--color-white);
    }

    .features-header {
      text-align: center;
      margin-bottom: 1.5rem;
    }

    .features-header .section-title {
      color: var(--color-white);
    }

    .features-grid {
      display: grid;
      gap: 2rem;
      max-width: 1000px;
      margin: 0 auto;
    }

    .feature-item {
      text-align: center;
      padding: 1.5rem;
    }

    .feature-icon {
      font-size: 2rem;
      color: var(--color-gold);
      margin-bottom: 0.375rem;
    }

    .feature-item h3 {
      font-family: var(--font-display);
      font-size: 1.25rem;
      font-weight: 400;
      margin-bottom: 0.56rem;
    }

    .feature-item p {
      font-size: 0.85rem;
      font-weight: 300;
      opacity: 0.8;
      line-height: 1.7;
    }

    /* ===== CTA SECTION ===== */
    .cta-section {
      padding: 4rem 1.5rem;
      background: var(--color-gold);
      text-align: center;
      color: var(--color-white);
    }

    .cta-section .section-title {
      color: var(--color-white);
      margin-bottom: 1rem;
    }

    .cta-section p {
      font-size: 0.95rem;
      font-weight: 300;
      margin-bottom: 2rem;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
    }
    
    .cta-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-direction: column;
      align-items: center;
    }
    
    .cta-buttons .btn {
      min-width: 200px;
      width: 100%;
      max-width: 300px;
    }
    
    @media (min-width: 768px) {
      .cta-buttons {
        flex-direction: row;
      }
      
      .cta-buttons .btn {
        width: auto;
      }
    }

    .cta-section .btn-light {
      background: #f2f2f2; /* Solid 5% grey - same as base */
      border-color: rgba(255, 255, 255, 0.3);
      color: var(--color-charcoal);
    }
    
    .cta-section .btn-light:hover {
      background: #e8e8e8; /* Darker grey on hover */
      border-color: rgba(255, 255, 255, 0.5);
      transform: translateY(-2px);
    }

    .cta-section .btn-outline {
      border-color: var(--color-white);
    }

    .cta-section .btn-outline:hover {
      background: var(--color-white);
      color: var(--color-gold);
    }

    /* ===== FOOTER ===== */
    .site-footer {
      background: var(--color-charcoal);
      color: var(--color-white);
      padding: 3rem 1.5rem 1.5rem;
    }

    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .footer-logo {
      display: block;
      height: 36px;
      margin: 0 auto 2rem auto;
    }

    .footer-logo img {
      height: 100%;
      width: auto;
    }

    .footer-grid {
      display: grid;
      gap: 2rem;
      margin-bottom: 2rem;
    }

    .footer-column h4 {
      font-family: var(--font-body);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--color-gold);
      margin-bottom: 1rem;
    }

    .footer-column p,
    .footer-column a {
      font-size: 0.85rem;
      font-weight: 300;
      color: rgba(255,255,255,0.8);
      text-decoration: none;
      line-height: 1.8;
    }

    .footer-column a:hover {
      color: var(--color-gold);
    }

    .footer-nav {
      list-style: none;
    }

    .footer-nav li {
      margin-bottom: 0.5rem;
    }

    .footer-bottom {
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255,255,255,0.1);
      text-align: center;
    }

    .footer-bottom p {
      font-size: 0.75rem;
      font-weight: 300;
      opacity: 0.6;
    }

    /* ===== DESKTOP STYLES ===== */
    @media (min-width: 768px) {
      .site-header {
        padding: 1rem 3rem;
        flex-direction: column;
      }

      .logo {
        height: 48px;
        margin-bottom: 1rem;
        order: 1;
      }

      .menu-toggle {
        display: none;
      }

      .desktop-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        order: 2;
      }

      .desktop-nav a {
        color: var(--color-white);
        text-decoration: none;
        font-size: 0.8rem;
        font-weight: 400;
        letter-spacing: 0.08em;
        text-transform: uppercase;
      }

      .desktop-nav a:hover {
        color: var(--color-gold);
      }

      .hero-title {
        font-size: 3.5rem;
      }

      .hero-subtitle {
        font-size: 1.1rem;
      }

      .section-title {
        font-size: 2.5rem;
      }

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

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

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

    @media (min-width: 1024px) {
      .intro {
        padding: 6rem 2rem;
      }

      .locations {
        padding: 6rem 2rem;
      }

      .features {
        padding: 6rem 2rem;
      }

      .location-card img {
        height: 400px;
      }
    }

/* From pricing.html */
    /* ===== PAGE HEADER ===== */
/* ===== PAGE HERO ===== */
    .page-hero {
      position: relative;
      height: 60vh;
      min-height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: var(--color-white);
    }

    .page-hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    .page-hero-content {
      position: relative;
      z-index: 1;
      padding: 2rem;
      max-width: 800px;
    }

    .hero-tagline {
      font-family: var(--font-body);
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: #ffffff;
      text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
      margin-bottom: 0.5rem;
    }

    .hero-title {
      font-family: var(--font-display);
      font-size: 3rem;
      font-weight: 400;
      color: #ffffff;
      text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 0, 0, 0.5);
      margin-bottom: 1rem;
    }

    .hero-subtitle {
      font-family: var(--font-body);
      font-size: 1.1rem;
      font-weight: 400;
      color: #ffffff;
      text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.4);
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .page-hero {
        height: 50vh;
        min-height: 350px;
      }

      .hero-title {
        font-size: 2.25rem;
      }

      .hero-subtitle {
        font-size: 1rem;
      }
    }

/* From pricing.html */
    .page-header {
      padding: 6rem 1.5rem 3rem;
      background: var(--color-charcoal);
      text-align: center;
    }

/* From pricing.html */
    .page-header-tagline {
      font-family: var(--font-body);
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--color-gold-light);
      margin-bottom: 0.5rem;
    }

/* From pricing.html */
    .page-header-title {
      font-family: var(--font-display);
      font-size: 2.5rem;
      font-weight: 400;
      color: var(--color-white);
      margin-bottom: 0.75rem;
    }

/* From pricing.html */
    .page-header-subtitle {
      font-family: var(--font-body);
      font-size: 0.95rem;
      font-weight: 300;
      color: rgba(255,255,255,0.9);
      max-width: 600px;
      margin: 0 auto;
    }

/* From pricing.html */
    /* ===== PRICING OVERVIEW ===== */
    .pricing-overview {
      padding: 4rem 1.5rem;
      background: var(--color-cream);
    }

/* From pricing.html */
    .pricing-overview-content {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }

/* From pricing.html */
    .pricing-intro {
      font-size: 0.95rem;
      font-weight: 300;
      color: #000;
      line-height: 1.8;
      margin-bottom: 2rem;
    }

/* From pricing.html */
    .discount-badges {
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

/* From pricing.html */
    .discount-badge {
      background: var(--color-white);
      padding: 1rem 1.5rem;
      border-radius: 4px;
      text-align: center;
      border-left: 3px solid var(--color-gold);
    }

/* From pricing.html */
    .discount-badge strong {
      display: block;
      font-size: 1.25rem;
      color: var(--color-gold);
      font-weight: 600;
    }

/* From pricing.html */
    .discount-badge span {
      font-size: 0.8rem;
      font-weight: 300;
      color: var(--color-warm-grey);
    }

/* From pricing.html */
    /* ===== ROOM CATEGORIES ===== */
    .room-categories {
      padding: 4rem 1.5rem;
      background: var(--color-white);
    }

/* From pricing.html */
    .room-category {
      max-width: 1000px;
      margin: 0 auto 4rem;
    }

/* From pricing.html */
    .room-category:last-child {
      margin-bottom: 0;
    }

/* From pricing.html */
    .room-category-header {
      display: grid;
      gap: 2rem;
      margin-bottom: 2rem;
    }

/* From pricing.html */
    /* ===== CAROUSEL ===== */
    .room-carousel {
      position: relative;
      width: 100%;
      overflow: hidden;
      border-radius: 4px;
    }

/* From pricing.html */
    .carousel-track {
      display: flex;
      transition: transform 0.4s ease;
    }

/* From pricing.html */
    .carousel-slide {
      min-width: 100%;
      height: 220px; /* Reduced from 280px for better mobile aspect ratio */
    }

/* From pricing.html */
    .carousel-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

/* From pricing.html */
    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255,255,255,0.9);
      border: none;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 1.25rem;
      color: var(--color-charcoal);
      z-index: 10;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }

/* From pricing.html */
    .carousel-btn:hover {
      background: var(--color-gold);
      color: white;
    }

/* From pricing.html */
    .carousel-btn.prev { left: 0.75rem; }
    .carousel-btn.next { right: 0.75rem; }

/* From pricing.html */
    .carousel-dots {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 0.75rem;
    }

/* From pricing.html */
    .carousel-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #ccc;
      border: none;
      cursor: pointer;
      transition: background 0.3s ease;
      padding: 0;
    }

/* From pricing.html */
    .carousel-dot.active {
      background: var(--color-gold);
    }

/* From pricing.html */
    .room-category-info h2 {
      font-family: var(--font-display);
      font-size: 1.75rem;
      font-weight: 500;
      color: var(--color-charcoal);
      margin-bottom: 0.75rem;
    }

/* From pricing.html */
    .room-category-info p {
      font-size: 0.9rem;
      font-weight: 300;
      color: #000;
      line-height: 1.7;
      margin-bottom: 1rem;
    }

/* From pricing.html */
    .room-list {
      font-size: 0.85rem;
      font-weight: 300;
      font-style: italic;
      color: var(--color-warm-grey);
    }

    .room-list .location-label {
      font-weight: 600;
      font-style: normal;
      color: var(--color-charcoal);
    }

/* From pricing.html */
    /* ===== PRICING TABLE ===== */
    .table-wrapper {
      width: 100%;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      margin-top: 1.5rem;
      position: relative;
    }
    
    /* Pricing table carousel navigation on mobile */
    @media (max-width: 768px) {
      .table-nav {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        margin-top: 1rem;
      }
      
      .table-nav-btn {
        background: var(--color-gold);
        color: white;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        font-size: 1.2rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.3s ease;
      }
      
      .table-nav-btn:hover {
        background: var(--color-gold-light);
      }
      
      .table-nav-btn:disabled {
        background: #ccc;
        cursor: not-allowed;
        opacity: 0.5;
      }
      
      .table-nav-indicator {
        font-size: 0.85rem;
        color: var(--color-charcoal);
      }
    }

    .pricing-table {
      width: 100%;
      border-collapse: collapse;
    }
    
    /* Only tables with multiple locations need min-width on mobile */
    @media (max-width: 768px) {
      .pricing-table.multi-location {
        min-width: 500px;
      }
      
      /* Make Hours/Week column sticky on mobile */
      .pricing-table th:first-child,
      .pricing-table td:first-child {
        position: sticky;
        left: 0;
        background: var(--color-white);
        z-index: 10;
      }
      
      .pricing-table thead th:first-child {
        background: var(--color-charcoal);
        z-index: 11;
      }
      
      .pricing-table tbody tr:nth-child(even) td:first-child {
        background: var(--color-cream);
      }
    }

/* From pricing.html */
    .pricing-table th,
    .pricing-table td {
      padding: 0.875rem 1rem;
      text-align: left;
      font-size: 0.9rem;
      color: var(--color-charcoal);
    }
    
    /* Make Snow Hill and Wimpole columns equal width */
    .pricing-table.multi-location th:nth-child(2),
    .pricing-table.multi-location th:nth-child(3),
    .pricing-table.multi-location td:nth-child(2),
    .pricing-table.multi-location td:nth-child(3) {
      width: 35%;
    }
    
    .pricing-table.multi-location th:first-child,
    .pricing-table.multi-location td:first-child {
      width: 30%;
    }

/* From pricing.html */
    .pricing-table thead {
      background: var(--color-charcoal);
      color: var(--color-white);
    }

/* From pricing.html */
    .pricing-table thead th {
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      font-size: 0.75rem;
      color: var(--color-white) !important;
    }

/* From pricing.html */
    .pricing-table tbody tr {
      border-bottom: 1px solid #eee;
    }

/* From pricing.html */
    .pricing-table tbody tr:nth-child(even) {
      background: var(--color-cream);
    }

/* From pricing.html */
    .pricing-table .hours-col {
      font-weight: 600;
      color: var(--color-charcoal);
      font-size: 0.95rem;
    }

/* From pricing.html */
    .pricing-table .price {
      font-weight: 600;
      color: var(--color-charcoal);
    }

/* From pricing.html */
    /* ===== ADDITIONAL INFO ===== */
    .additional-info {
      padding: 4rem 1.5rem;
      background: var(--color-cream);
    }

/* From pricing.html */
    .additional-info-content {
      max-width: 800px;
      margin: 0 auto;
    }

/* From pricing.html */
    .info-grid {
      display: grid;
      gap: 2rem;
    }

/* From pricing.html */
    .info-card {
      background: var(--color-white);
      padding: 2rem;
      border-radius: 4px;
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-left: 3px solid var(--color-gold);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }

/* From pricing.html */
    .info-card h3 {
      font-family: var(--font-display);
      font-size: 1.25rem;
      font-weight: 500;
      color: var(--color-charcoal);
      margin-bottom: 1rem;
    }

/* From pricing.html */
    .info-card p {
      font-size: 0.9rem;
      font-weight: 300;
      color: #000;
      line-height: 1.7;
    }

/* From pricing.html - Desktop styles */
    @media (min-width: 768px) {
      .page-header-title { font-size: 3rem; }

      .room-category-header {
        grid-template-columns: 1fr 1fr;
        align-items: center;
      }

      .carousel-slide {
        height: 320px; /* Taller on desktop */
      }

      .room-category-image { height: 300px; }

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

/* From pricing.html */
    @media (min-width: 1024px) {
      .pricing-overview { padding: 5rem 2rem; }
      .room-categories { padding: 5rem 2rem; }
      .additional-info { padding: 5rem 2rem; }
    }

/* From contact.html */
    /* Modal Styles */
    .modal-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 1000;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    
    .modal-overlay.active { 
      display: flex; 
      animation: fadeIn 0.3s ease forwards;
    }
    
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    
    .modal-content {
      background: var(--color-white);
      padding: 3rem;
      border-radius: 8px;
      max-width: 450px;
      text-align: center;
      position: relative;
      margin: 1rem;
      transform: scale(0.9) translateY(-20px);
      opacity: 0;
      animation: modalSlideIn 0.4s ease 0.1s forwards;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }
    
    @keyframes modalSlideIn {
      from { 
        transform: scale(0.9) translateY(-20px);
        opacity: 0;
      }
      to { 
        transform: scale(1) translateY(0);
        opacity: 1;
      }
    }
    
    .modal-content h2 {
      font-family: var(--font-display);
      font-size: 2.5rem;
      color: var(--color-gold);
      margin-bottom: 1rem;
    }
    
    @keyframes bounceIn {
      0% { transform: scale(0.3); opacity: 0; }
      50% { transform: scale(1.05); }
      70% { transform: scale(0.9); }
      100% { transform: scale(1); opacity: 1; }
    }
    
    .modal-content p {
      color: var(--color-warm-grey);
      margin-bottom: 1.5rem;
    }
    
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .modal-close {
      background: var(--color-gold);
      color: var(--color-white);
      border: none;
      padding: 0.75rem 2rem;
      border-radius: 4px;
      font-family: var(--font-body);
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .modal-close:hover { 
      background: var(--color-gold-light);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(184, 151, 90, 0.3);
    }

/* From contact.html */
    /* ===== CONTACT SECTION ===== */
    .contact-section {
      padding: 4rem 1.5rem;
      background: var(--color-cream);
    }

/* From contact.html */
    .contact-content {
      max-width: 1000px;
      margin: 0 auto;
    }

/* From contact.html */
    .contact-grid {
      display: grid;
      gap: 3rem;
    }

/* From contact.html */
    /* Contact Info */
    .contact-info h2 {
      font-family: var(--font-display);
      font-size: 1.75rem;
      font-weight: 500;
      color: var(--color-charcoal);
      margin-bottom: 1.5rem;
    }

/* From contact.html */
    .contact-details {
      margin-bottom: 2rem;
    }

/* From contact.html */
    .contact-item {
      margin-bottom: 1.5rem;
    }

/* From contact.html */
    .contact-item h3 {
      font-family: var(--font-body);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--color-gold);
      margin-bottom: 0.5rem;
    }

/* From contact.html */
    .contact-item p,
    .contact-item a {
      font-size: 0.95rem;
      font-weight: 300;
      color: #000;
      text-decoration: none;
      line-height: 1.7;
    }

/* From contact.html */
    .contact-item a:hover {
      color: var(--color-gold);
    }

/* From contact.html */
    .team-member {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1rem;
    }

/* From contact.html */
    .team-avatar {
      width: 50px;
      height: 50px;
      min-width: 50px;
      min-height: 50px;
      border-radius: 50%;
      background: var(--color-charcoal);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-white);
      font-size: 1.25rem;
      flex-shrink: 0;
    }

/* From contact.html */
    .team-name {
      font-size: 0.95rem;
      font-weight: 400;
      color: var(--color-charcoal);
    }

/* From contact.html */
    .team-role {
      font-size: 0.8rem;
      font-weight: 300;
      color: var(--color-warm-grey);
    }

/* From contact.html */
    /* Contact Form */
    .contact-form {
      background: var(--color-white);
      padding: 2rem 1.5rem; /* Reduced horizontal padding from 2.5rem to 1.5rem */
      border-radius: 4px;
    }

/* From contact.html */
    .contact-form h2 {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 500;
      color: var(--color-charcoal);
      margin-bottom: 1.5rem;
    }

/* From contact.html */
    .form-group {
      margin-bottom: 1.5rem;
    }

/* From contact.html */
    .form-group label {
      display: block;
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--color-charcoal);
      margin-bottom: 0.5rem;
    }

/* From contact.html */
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 0.875rem 1rem;
      font-family: var(--font-body);
      font-size: 0.9rem;
      border: 1px solid #ddd;
      border-radius: 4px;
      background: var(--color-cream);
      transition: border-color 0.3s ease;
    }

/* From contact.html */
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--color-gold);
    }

/* From contact.html */
    .form-group textarea {
      min-height: 120px;
      resize: vertical;
    }

/* From contact.html */
    /* ===== LOCATIONS SECTION ===== */
    .locations-section {
      padding: 4rem 1.5rem;
      background: var(--color-white);
    }

/* From contact.html */
    .locations-content {
      max-width: 1000px;
      margin: 0 auto;
    }

/* From contact.html */
    .location-card .transport {
      font-size: 0.85rem;
      color: var(--color-warm-grey);
    }

/* From contact.html */
    .maps-grid {
      display: grid;
      gap: 2rem;
      margin-top: 2rem;
    }

/* From contact.html */
    .map-container {
      border-radius: 4px;
      overflow: hidden;
      height: 250px;
    }

/* From contact.html */
    .map-container iframe {
      width: 100%;
      height: 100%;
      border: none;
      filter: grayscale(100%);
      transition: filter 0.3s ease;
    }

/* From contact.html */
    .map-container iframe:hover {
      filter: grayscale(50%);
    }

/* From contact.html */
    @media (min-width: 768px) {
      .locations-grid,
      .maps-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

/* From contact.html */
    @media (min-width: 1024px) {
      .contact-section { padding: 5rem 2rem; }
      .locations-section { padding: 5rem 2rem; }

/* From contact.html */
      .contact-grid { grid-template-columns: 1fr 1fr; }
    }

/* From how-it-works.html */
    /* ===== CONTRACTS OVERVIEW ===== */
    .contracts-overview {
      padding: 4rem 1.5rem;
      background: var(--color-cream);
    }

/* From how-it-works.html */
    .contracts-overview-content {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }

/* From how-it-works.html */
    .contracts-intro {
      font-size: 0.95rem;
      font-weight: 300;
      color: #000;
      line-height: 1.8;
      margin-bottom: 2rem;
    }

/* From how-it-works.html */
    .eligibility-note {
      background: var(--color-white);
      padding: 1.5rem;
      border-radius: 4px;
      border-left: 3px solid var(--color-gold);
      text-align: left;
    }

/* From how-it-works.html */
    .eligibility-note h3 {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 500;
      margin-bottom: 0.5rem;
    }

/* From how-it-works.html */
    .eligibility-note p {
      font-size: 0.85rem;
      font-weight: 300;
      color: #000;
      line-height: 1.7;
    }

/* From how-it-works.html */
    /* ===== CONTRACT TYPES ===== */
    .contract-types {
      padding: 4rem 1.5rem;
      background: var(--color-white);
    }

/* From how-it-works.html */
    .contract-types-content {
      max-width: 1000px;
      margin: 0 auto;
    }

/* From how-it-works.html */
    .contract-grid {
      display: grid;
      gap: 2rem;
    }

/* From how-it-works.html */
    .contract-card {
      background: var(--color-cream);
      padding: 2.5rem;
      border-radius: 4px;
      position: relative;
    }

/* From how-it-works.html */
    .contract-card.featured {
      border: 2px solid var(--color-gold);
    }

/* From how-it-works.html */
    .contract-card.featured::before {
      content: 'Most Popular';
      position: absolute;
      top: -12px;
      left: 2rem;
      background: var(--color-gold);
      color: var(--color-white);
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.25rem 0.75rem;
      border-radius: 2px;
    }

/* From how-it-works.html */
    .contract-card h2 {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 500;
      color: var(--color-charcoal);
      margin-bottom: 1rem;
    }

/* From how-it-works.html */
    .contract-card .contract-ideal {
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--color-gold);
      margin-bottom: 1.5rem;
    }

/* From how-it-works.html */
    .contract-card p {
      font-size: 0.9rem;
      font-weight: 300;
      color: #000;
      line-height: 1.8;
      margin-bottom: 1rem;
    }

/* From how-it-works.html */
    .contract-features {
      list-style: none;
      margin-top: 1.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(0,0,0,0.1);
    }

/* From how-it-works.html */
    .contract-features li {
      font-size: 0.85rem;
      font-weight: 300;
      color: #000;
      padding: 0.5rem 0;
      padding-left: 1.5rem;
      position: relative;
    }

/* From how-it-works.html */
    .contract-features li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--color-gold);
      font-weight: 600;
    }

/* From how-it-works.html */
    /* ===== HOW TO BOOK ===== */
    .how-to-book {
      padding: 4rem 1.5rem;
      background: var(--color-charcoal);
      color: var(--color-white);
    }

/* From how-it-works.html */
    .how-to-book-content {
      max-width: 1000px;
      margin: 0 auto;
      text-align: center;
    }

/* From how-it-works.html */
    .how-to-book .section-title {
      color: var(--color-white);
    }

/* From how-it-works.html */
    .steps-grid {
      display: grid;
      gap: 2rem;
      margin-top: 3rem;
      text-align: left;
    }

/* From how-it-works.html */
    .step {
      display: flex;
      gap: 1.5rem;
      align-items: flex-start;
    }

/* From how-it-works.html */
    .step-number {
      flex-shrink: 0;
      width: 50px;
      height: 50px;
      border: 2px solid var(--color-gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-size: 1.25rem;
      color: var(--color-gold);
    }

/* From how-it-works.html */
    .step-content h3 {
      font-family: var(--font-display);
      font-size: 1.25rem;
      font-weight: 400;
      margin-bottom: 0.5rem;
    }

/* From how-it-works.html */
    .step-content p {
      font-size: 0.9rem;
      font-weight: 300;
      opacity: 0.85;
      line-height: 1.7;
    }

/* From how-it-works.html */
    /* ===== INCLUDED ===== */
    .whats-included {
      padding: 4rem 1.5rem;
      background: var(--color-cream);
    }

/* From how-it-works.html */
    .whats-included-content {
      max-width: 1000px;
      margin: 0 auto;
      text-align: center;
    }

/* From how-it-works.html */
    .included-grid {
      display: grid;
      gap: 1.5rem;
      margin-top: 2rem;
      text-align: left;
    }

/* From how-it-works.html */
    .included-item {
      background: var(--color-white);
      padding: 1.5rem;
      border-radius: 4px;
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }

/* From how-it-works.html */
    .included-icon {
      font-size: 1.25rem;
      color: var(--color-gold);
    }

/* From how-it-works.html */
    .included-item h3 {
      font-family: var(--font-body);
      font-size: 0.95rem;
      font-weight: 500;
      margin-bottom: 0.25rem;
    }

/* From how-it-works.html */
    .included-item p {
      font-size: 0.85rem;
      font-weight: 300;
      color: var(--color-warm-grey);
    }

/* From how-it-works.html */
    /* ===== DOWNLOAD SECTION ===== */
    .download-section {
      padding: 4rem 1.5rem;
      background: var(--color-white);
    }

/* From how-it-works.html */
    .download-content {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }

/* From how-it-works.html */
    .download-card {
      background: var(--color-cream);
      padding: 2.5rem;
      border-radius: 8px;
      margin-top: 2rem;
      border-left: 4px solid var(--color-gold);
    }

/* From how-it-works.html */
    .download-card h3 {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 500;
      color: var(--color-charcoal);
      margin-bottom: 1rem;
    }

/* From how-it-works.html */
    .download-card p {
      font-size: 0.9rem;
      font-weight: 300;
      color: var(--color-warm-grey);
      margin-bottom: 1.5rem;
      line-height: 1.7;
    }

/* From how-it-works.html */
    .download-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--color-charcoal);
      color: var(--color-white);
      padding: 0.875rem 1.75rem;
      border-radius: 4px;
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      transition: all 0.3s ease;
    }

/* From how-it-works.html */
    .download-btn:hover {
      background: var(--color-gold);
    }

/* From how-it-works.html */
    .download-btn svg {
      width: 18px;
      height: 18px;
    }

/* From how-it-works.html */
    @media (min-width: 1024px) {
      .contracts-overview { padding: 5rem 2rem; }
      .contract-types { padding: 5rem 2rem; }
      .how-to-book { padding: 5rem 2rem; }
      .whats-included { padding: 5rem 2rem; }

/* From how-it-works.html */
      .contract-grid { grid-template-columns: repeat(2, 1fr); }

/* From how-it-works.html */
      .steps-grid { grid-template-columns: repeat(2, 1fr); }

/* From how-it-works.html */
      .included-grid { grid-template-columns: repeat(3, 1fr); }
    }

/* From our-rooms.html */
    /* ===== LOCATION TABS ===== */
    .location-tabs {
      display: flex;
      background: var(--color-charcoal);
      border-top: 1px solid rgba(255,255,255,0.1);
    }

/* From our-rooms.html */
    .location-tab {
      flex: 1;
      padding: 1rem;
      text-align: center;
      color: var(--color-white);
      text-decoration: none;
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border-bottom: 2px solid transparent;
      transition: all 0.3s ease;
    }

/* From our-rooms.html */
    .location-tab:hover {
      color: var(--color-white);
    }

/* From our-rooms.html */
    .location-tab.active {
      color: var(--color-white);
    }

/* From our-rooms.html */
    /* ===== LOCATION SECTIONS ===== */
    .location-section {
      padding: 4rem 1.5rem 2rem;
      background: var(--color-cream);
    }

/* From our-rooms.html */
    .location-content {
      max-width: 1200px;
      margin: 0 auto;
    }

/* From our-rooms.html */
    .location-header {
      margin-bottom: 2rem;
    }

/* From our-rooms.html */
    .location-name {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 500;
      color: var(--color-charcoal);
      margin-bottom: 0.5rem;
    }

/* From our-rooms.html */
    .location-address {
      font-family: var(--font-body);
      font-size: 0.8rem;
      font-weight: 300;
      color: #000;
    }

/* From our-rooms.html */
    .location-description {
      font-family: var(--font-body);
      font-size: 0.9rem;
      font-weight: 300;
      line-height: 1.7;
      color: #000;
      margin: 1rem 0 2rem;
    }

/* From our-rooms.html */
    .gallery-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0.75rem;
    }

/* From our-rooms.html */
    .gallery-item {
      cursor: pointer;
      overflow: hidden;
      border-radius: 4px;
    }

/* From our-rooms.html */
    .gallery-item img {
      width: 100%;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

/* From our-rooms.html */
    .gallery-item:hover img {
      transform: scale(1.05);
    }

/* From our-rooms.html */
    .location-cta {
      margin-top: 1.5rem;
      text-align: center;
    }

/* From our-rooms.html */
    /* Second location */
    .location-section:nth-child(even) {
      background: var(--color-white);
    }

/* From our-rooms.html */
    @media (min-width: 768px) {
      .page-header-title { font-size: 3rem; }
      .location-name { font-size: 1.75rem; }

      .gallery-item img { 
        height: 220px; 
        aspect-ratio: auto;
      }
    }

/* From our-rooms.html */
    @media (min-width: 1024px) {
      .location-section { padding: 5rem 2rem; }
      .gallery-grid { grid-template-columns: repeat(4, 1fr); }
      .gallery-item img { 
        height: 250px;
        aspect-ratio: auto;
      }
    }

/* From wimpole-street.html */
    /* ===== HERO ===== */
    .location-hero {
      position: relative;
      height: 60vh;
      min-height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: var(--color-white);
    }

/* From wimpole-street.html */
    .location-hero[data-location="wimpole"] .location-hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(61, 61, 61, 0.3), rgba(61, 61, 61, 0.7)), 
                  url('images/wimpole-exterior.jpg') center/cover no-repeat;
    }
    
    .location-hero[data-location="snowhill"] .location-hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(61, 61, 61, 0.3), rgba(61, 61, 61, 0.7)), 
                  url('images/snow-hill-exterior-angle.jpg') center/cover no-repeat;
    }

/* From wimpole-street.html */
    .location-hero-content {
      position: relative;
      z-index: 1;
      padding: 2rem;
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }

/* From wimpole-street.html */
    .location-hero-tagline {
      font-family: var(--font-body);
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: #ffffff;
      text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
      margin-bottom: 0.5rem;
    }

/* From wimpole-street.html */
    .location-hero-title {
      font-family: var(--font-display);
      font-size: 2.5rem;
      font-weight: 400;
      color: #ffffff;
      text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 0, 0, 0.5);
      margin-bottom: 1rem;
      line-height: 1.2;
      word-wrap: break-word;
      overflow-wrap: break-word;
      hyphens: none;
    }

/* From wimpole-street.html */
    .location-hero-address {
      font-size: 1rem;
      font-weight: 400;
      color: #ffffff;
      text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.4);
      opacity: 1;
    }

/* From wimpole-street.html */
    /* ===== ABOUT SECTION ===== */
    .location-about {
      padding: 4rem 1.5rem;
      background: var(--color-cream);
    }

/* From wimpole-street.html */
    .location-about-content {
      max-width: 800px;
      margin: 0 auto;
    }

/* From wimpole-street.html */
    .about-grid {
      display: grid;
      gap: 2rem;
    }

/* From wimpole-street.html */
    .about-text h2 {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 500;
      color: var(--color-charcoal);
      margin-bottom: 1.5rem;
      word-wrap: break-word;
      overflow-wrap: break-word;
      hyphens: none;
      white-space: normal;
    }

/* From wimpole-street.html */
    .about-text p {
      font-size: 0.95rem;
      font-weight: 300;
      color: #000;
      line-height: 1.8;
      margin-bottom: 1rem;
    }

/* From wimpole-street.html */
    .about-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      margin-top: 2rem;
    }

/* From wimpole-street.html */
    .stat {
      text-align: center;
      padding: 1.5rem;
      background: var(--color-white);
      border-radius: 4px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

/* From wimpole-street.html */
    .stat-number {
      font-family: var(--font-display);
      font-size: 2.5rem;
      color: var(--color-gold);
      display: block;
      min-height: 3rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }

/* From wimpole-street.html */
    .stat-label {
      font-size: 0.75rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--color-warm-grey);
    }

/* From wimpole-street.html */
    /* ===== GALLERY ===== */
    .location-gallery {
      padding: 4rem 1.5rem 1rem;
      background: var(--color-white);
    }

/* From wimpole-street.html */
    .gallery-header {
      text-align: center;
      margin-bottom: 2rem;
    }

/* From wimpole-street.html */
/* From wimpole-street.html */
    .gallery-item img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

/* From wimpole-street.html */
    /* ===== LIGHTBOX ===== */
    .lightbox {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.95);
      z-index: 1000;
      align-items: center;
      justify-content: center;
    }

/* From wimpole-street.html */
    .lightbox.active {
      display: flex;
    }

/* From wimpole-street.html */
    .lightbox-content {
      position: relative;
      max-width: 90vw;
      max-height: 85vh;
    }

/* From wimpole-street.html */
    .lightbox-content img {
      max-width: 90vw;
      max-height: 85vh;
      object-fit: contain;
      border-radius: 4px;
    }

/* From wimpole-street.html */
    .lightbox-close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: rgba(255,255,255,0.9);
      border: none;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 1.5rem;
      color: var(--color-charcoal);
      z-index: 1001;
      display: flex;
      align-items: center;
      justify-content: center;
    }

/* From wimpole-street.html */
    .lightbox-close:hover {
      background: var(--color-gold);
      color: white;
    }

/* From wimpole-street.html */
    .lightbox-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255,255,255,0.9);
      border: none;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 1.5rem;
      color: var(--color-charcoal);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

/* From wimpole-street.html */
    .lightbox-nav:hover {
      background: var(--color-gold);
      color: white;
    }

/* From wimpole-street.html */
    .lightbox-prev { left: 1rem; }
    .lightbox-next { right: 1rem; }

/* From wimpole-street.html */
    .lightbox-counter {
      position: absolute;
      bottom: 1rem;
      left: 50%;
      transform: translateX(-50%);
      color: white;
      font-size: 0.9rem;
      font-weight: 300;
    }

/* From wimpole-street.html */
    /* ===== DIRECTIONS ===== */
    .location-directions {
      padding: 4rem 1.5rem;
      background: var(--color-charcoal);
      color: var(--color-white);
    }

/* From wimpole-street.html */
    .directions-content {
      max-width: 1000px;
      margin: 0 auto;
    }

/* From wimpole-street.html */
    .directions-header {
      text-align: center;
      margin-bottom: 2rem;
    }

/* From wimpole-street.html */
    .directions-header .section-title {
      color: var(--color-white);
    }

/* From wimpole-street.html */
    .directions-grid {
      display: grid;
      gap: 2rem;
    }

/* From wimpole-street.html */
    .directions-text h3 {
      font-family: var(--font-display);
      font-size: 1.25rem;
      font-weight: 400;
      margin-bottom: 1rem;
      color: var(--color-gold-light);
    }

/* From wimpole-street.html */
    .directions-text p {
      font-size: 0.9rem;
      font-weight: 300;
      line-height: 1.8;
      opacity: 0.9;
      margin-bottom: 1.5rem;
    }

/* From wimpole-street.html */
    .transport-list {
      list-style: none;
    }

/* From wimpole-street.html */
    .transport-list li {
      font-size: 0.9rem;
      font-weight: 300;
      padding: 0.5rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      display: flex;
      justify-content: space-between;
    }

/* From wimpole-street.html */
    .transport-list li span {
      color: var(--color-gold-light);
    }

/* From wimpole-street.html */
    .map-container {
      height: 300px;
      border-radius: 4px;
      overflow: hidden;
    }

/* From wimpole-street.html */
    .map-container iframe {
      width: 100%;
      height: 100%;
      border: 0;
      filter: grayscale(100%);
      transition: filter 0.3s ease;
    }

/* From wimpole-street.html */
    .map-container:hover iframe {
      filter: grayscale(50%);
    }

/* From wimpole-street.html */

/* From wimpole-street.html */

/* From wimpole-street.html */

/* From wimpole-street.html */

/* From wimpole-street.html */
    @media (min-width: 1024px) {
      .location-about { padding: 5rem 2rem; }
      .location-gallery { padding: 5rem 2rem; }
      .location-directions { padding: 5rem 2rem; }

/* From wimpole-street.html */
      .gallery-grid { grid-template-columns: repeat(4, 1fr); }
      .directions-grid { grid-template-columns: 1fr 1fr; }
    }

/* From snow-hill.html */
/* From snow-hill.html */
    .stat {
      text-align: center;
      padding: 1.5rem;
      background: var(--color-white);
      border-radius: 4px;
    }

/* From snow-hill.html */
    .stat-number {
      font-family: var(--font-display);
      font-size: 2.5rem;
      color: var(--color-gold);
      display: block;
    }
/* ===== MOBILE FONT WEIGHT FIX ===== */
/* Make body text more readable on mobile by using Regular weight instead of Light */
@media (max-width: 768px) {
  body,
  p,
  .intro-text,
  .hero-subtitle,
  .pricing-intro,
  .contracts-intro,
  .feature-item p,
  .info-card p,
  .contact-item p,
  .contact-item a,
  .about-text p,
  .included-item p,
  .footer-column p,
  .footer-column a,
  .footer-bottom p,
  li,
  td,
  .room-list,
  .step-content p,
  .address-block,
  tbody td {
    font-weight: 400 !important;
  }
}

/* ===== ANIMATIONS ===== */

/* Fade-in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delay for multiple elements */
.fade-in:nth-child(1) { transition-delay: 0.1s; }
.fade-in:nth-child(2) { transition-delay: 0.3s; }
.fade-in:nth-child(3) { transition-delay: 0.5s; }
.fade-in:nth-child(4) { transition-delay: 0.7s; }

/* Button hover effects */
.btn {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.btn:hover, .btn:active {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn:active {
  transform: translateY(-2px) scale(1.02);
}

/* Card hover effects */
.room-card, .contract-card, .feature-item {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.room-card:hover, .contract-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Subtle parallax for heroes */
.page-hero-bg, .location-hero-bg, .hero-image {
  transition: transform 0.1s ease-out;
  will-change: transform;
}

/* Image hover effects */
.gallery-item img {
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.15);
}

/* Mobile: Make animations MORE obvious, not less */
@media (max-width: 768px) {
  .fade-in {
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
  }
  
  .btn:hover, .btn:active {
    transform: translateY(-4px) scale(1.05);
  }
  
  .room-card:hover, .contract-card:hover {
    transform: translateY(-8px);
  }
  
  .gallery-item:hover img {
    transform: scale(1.08);
  }
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
  .fade-in,
  .btn,
  .room-card,
  .contract-card,
  .gallery-item img,
  .page-hero-bg,
  .location-hero-bg,
  .hero-image {
    transition: none !important;
    transform: none !important;
  }
}

/* Mobile line breaks for location tabs */
.mobile-br {
  display: none;
}

@media (max-width: 768px) {
  .mobile-br {
    display: block;
  }
}

/* Prevent text breaking into single words on mobile */
h1, h2, h3, h4, h5, h6 {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: none;
  white-space: normal;
}

/* Mobile hero height fix */
@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 500px;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  
  .hero-content {
    padding: 1.5rem;
    margin-top: auto;
    margin-bottom: auto;
  }
}

/* Mobile header fix - prevent logo/burger overlap */
@media (max-width: 768px) {
  .site-header {
    flex-direction: row;
    justify-content: center;
    padding: 1rem 1.5rem 0 1.5rem;
  }
  
  .logo {
    margin-right: 3rem;
  }
}

/* Remove browser spell-check underlines */
* {
  -webkit-text-decoration-skip: none;
  text-decoration-skip-ink: none;
}

p, h1, h2, h3, h4, h5, h6, span, div {
  -webkit-text-decoration: none;
}

/* Force remove all text decorations that might be added by browser */
.location-address,
.footer-column p,
.footer-column a,
p {
  text-decoration: none !important;
  -webkit-text-decoration-line: none !important;
  text-decoration-line: none !important;
  -webkit-text-decoration-style: none !important;
  text-decoration-style: none !important;
  -webkit-text-decoration-color: transparent !important;
  text-decoration-color: transparent !important;
}
