*, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    html {
      scroll-behavior: smooth;
    }
    body { 
      font-family: 'Cormorant Garamond', sans-serif; 
      overflow-x: hidden; 
      background-color: #ffffff;
      color: #333333;
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    a {
      text-decoration: none;
      color: inherit;
    }

/* IMPORT FONTS */
    @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

    /* NAVBAR STYLES */
    #navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: #F4F2EE; /* Off-white background */
        transition: all 0.4s ease;
        border-bottom: 1px solid rgba(153, 126, 85, 0.1);
    }

    #navbar.navbar--scrolled {
        background-color: rgba(244, 242, 238, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        padding: 5px 0;
    }

    .navbar-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 15px 50px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    /* Logo Area */
    .navbar-brand {
        display: flex;
        align-items: center;
        text-decoration: none;
        flex: 0 0 auto;
    }

    .navbar-logo-img {
        height: 60px;
        width: auto;
        object-fit: contain;
    }

    /* Navigation Menu */
    .navbar-menu {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 30px;
        flex: 1;
        justify-content: center;
    }

    .navbar-menu-item {
        position: relative;
    }

    .navbar-link {
        font-family: 'Montserrat', sans-serif;
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        color: #2B2B2B;
        text-decoration: none;
        letter-spacing: 1.5px;
        transition: color 0.3s ease;
        padding: 5px 0;
    }

    .navbar-link:hover {
        color: #997E55;
    }

    /* Animated underline on hover */
    .navbar-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #997E55;
        transition: width 0.3s ease;
    }

    .navbar-link:hover::after {
        width: 100%;
    }

    /* Action Button (CTA) */
    .navbar-actions {
        flex: 0 0 auto;
    }

    .navbar-cta {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background-color: #997E55;
        color: #F8F5F1;
        padding: 12px 24px;
        border-radius: 2px;
        font-family: 'Montserrat', sans-serif;
        font-size: 13px;
        font-weight: 700;
        text-decoration: none;
        letter-spacing: 1px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 10px rgba(153, 126, 85, 0.2);
    }

    .navbar-cta:hover {
        background-color: #B5935F;
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(153, 126, 85, 0.3);
    }

    .navbar-cta svg {
        width: 18px;
        height: 18px;
        fill: currentColor;
    }

    /* Mobile Toggle (Hamburger) */
    .navbar-hamburger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 25px;
        height: 18px;
        cursor: pointer;
        background: transparent;
        border: none;
        padding: 0;
        z-index: 1001;
    }

    .navbar-hamburger span {
        width: 100%;
        height: 2px;
        background-color: #997E55;
        transition: all 0.3s ease;
    }

    /* Mobile Menu State */
    .navbar-hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .navbar-hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .navbar-hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* RESPONSIVE STYLES */
    @media (max-width: 1024px) {
        .navbar-container {
            padding: 15px 30px;
        }
        
        .navbar-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            height: 100vh;
            background-color: #F8F5F1;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transition: right 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
            box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
            z-index: 999;
        }

        .navbar-menu.active {
            right: 0;
        }

        .navbar-link {
            font-size: 20px;
            font-family: 'Cormorant Garamond', serif;
            text-transform: capitalize;
        }

        .navbar-hamburger {
            display: flex;
        }

        .navbar-actions {
            display: none; /* Hide CTA on small mobile or move inside menu */
        }
        
        .navbar-menu .navbar-cta-mobile {
            margin-top: 30px;
            display: inline-flex !important;
        }
    }

    @media (max-width: 480px) {
        .navbar-logo-img {
            height: 45px;
        }
        .navbar-container {
            padding: 12px 20px;
        }
    }

/* FONTS IMPORT */
  @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

  /* HERO SECTION STYLES */
  #hero-section {
    --primary-brown: #997E55;
    --accent-gold: #B5935F;
    --bg-light: #F8F5F1;
    --bg-alt: #F4F2EE;
    --text-dark: #2B2B2B;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;

    background-color: var(--bg-light);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 8% 60px 8%; /* Margin-top wide from navbar */
  }

  .hero-section-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
  }

  /* LEFT COLUMN CONTENT */
  .hero-section-content {
    z-index: 2;
  }

  .hero-section-title {
    font-family: var(--font-serif);
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    line-height: 1.1;
    color: var(--text-dark);
    margin: 0 0 25px 0;
    font-weight: 700;
    letter-spacing: -1px;
    text-transform: uppercase;
  }

  .hero-section-title span {
    display: block;
  }

  .hero-section-divider {
    width: 60px;
    height: 3px;
    background-color: var(--primary-brown);
    margin-bottom: 30px;
  }

  .hero-section-description {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    max-width: 500px;
    margin-bottom: 40px;
  }

  /* CATEGORY GRID */
  .hero-section-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 45px;
    max-width: 500px;
  }

  .hero-section-cat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 10px;
    border-right: 1px solid rgba(153, 126, 85, 0.2);
  }

  .hero-section-cat-item:last-child {
    border-right: none;
  }

  .hero-section-cat-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 12px;
    object-fit: contain;
    opacity: 0.8;
  }

  .hero-section-cat-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-dark);
  }

  /* CTA BUTTON */
  .hero-section-btn {
    display: inline-block;
    padding: 18px 40px;
    background-color: var(--primary-brown);
    color: #FFFFFF;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 20px rgba(153, 126, 85, 0.2);
  }

  .hero-section-btn:hover {
    background-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(153, 126, 85, 0.3);
  }

  /* RIGHT COLUMN IMAGE */
  .hero-section-visual {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .hero-section-main-img {
    width: 110%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    filter: drop-shadow(20px 20px 50px rgba(0,0,0,0.15));
    /* Smooth merge effect */
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 85%, rgba(0,0,0,0));
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 85%, rgba(0,0,0,0));
  }

  /* RESPONSIVE DESIGN */
  @media (max-width: 1024px) {
    #hero-section {
      padding: 140px 5% 60px 5%;
    }
    .hero-section-wrapper {
      grid-template-columns: 1fr;
      text-align: center;
    }
    .hero-section-content {
      order: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .hero-section-divider {
      margin: 0 auto 30px;
    }
    .hero-section-visual {
      order: 1;
      justify-content: center;
      margin-bottom: 40px;
    }
    .hero-section-main-img {
      width: 80%;
      mask-image: none;
      -webkit-mask-image: none;
    }
    .hero-section-categories {
      margin: 0 auto 40px;
    }
  }

  @media (max-width: 480px) {
    .hero-section-title {
      font-size: 2.8rem;
    }
    .hero-section-categories {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    .hero-section-cat-item {
      border-right: none;
      border-bottom: 1px solid rgba(153, 126, 85, 0.1);
    }
    .hero-section-main-img {
      width: 100%;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

  :root {
    --ss-primary: #997E55;
    --ss-primary-light: #B5935F;
    --ss-bg-light: #F8F5F1;
    --ss-bg-solid: #F4F2EE;
    --ss-text-dark: #2B2B2B;
    --ss-text-muted: #555555;
    --ss-font-heading: 'Cormorant Garamond', serif;
    --ss-font-body: 'Montserrat', sans-serif;
  }

  #services-section {
    background-color: var(--ss-bg-solid);
    padding: 100px 8%;
    font-family: var(--ss-font-body);
    color: var(--ss-text-dark);
    overflow: hidden;
  }

  .services-section-header {
    max-width: 600px;
    margin-bottom: 60px;
    text-align: left;
  }

  .services-section-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--ss-primary);
    text-transform: uppercase;
    margin-bottom: 15px;
  }

  .services-section-headline {
    font-family: var(--ss-font-heading);
    font-size: 48px;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--ss-text-dark);
    position: relative;
    padding-bottom: 20px;
  }

  .services-section-headline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--ss-primary);
  }

  .services-section-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--ss-text-muted);
    margin-bottom: 30px;
    max-width: 500px;
  }

  .services-section-cta-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid var(--ss-primary);
    color: var(--ss-primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background: transparent;
  }

  .services-section-cta-outline:hover {
    background-color: var(--ss-primary);
    color: #ffffff;
  }

  .services-section-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
  }

  .services-section-card {
    background-color: var(--ss-bg-light);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(153, 126, 85, 0.1);
  }

  .services-section-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
  }

  .services-section-card-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
  }

  .services-section-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }

  .services-section-card:hover .services-section-card-image {
    transform: scale(1.1);
  }

  .services-section-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .services-section-card-title {
    font-family: var(--ss-font-heading);
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
  }

  .services-section-card-text {
    font-size: 14px;
    line-height: 1.5;
    color: var(--ss-text-muted);
    margin-bottom: 25px;
    flex-grow: 1;
  }

  .services-section-card-link {
    font-size: 12px;
    font-weight: 700;
    color: var(--ss-primary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
  }

  .services-section-card-link:hover {
    color: var(--ss-primary-light);
  }

  /* Responsive Design */
  @media (max-width: 1024px) {
    .services-section-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }
    #services-section {
      padding: 80px 5%;
    }
  }

  @media (max-width: 600px) {
    .services-section-grid {
      grid-template-columns: 1fr;
    }
    .services-section-headline {
      font-size: 36px;
    }
    #services-section {
      padding: 60px 20px;
    }
  }

/* PORTFOLIO SECTION STYLES */
  .portfolio-section-container {
    background-color: #2B2B2B;
    color: #F8F5F1;
    padding: 100px 0;
    overflow: hidden;
    position: relative;
    font-family: 'Montserrat', sans-serif;
  }

  .portfolio-section-wrapper {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 5%;
    gap: 60px;
  }

  /* Info Side (Left) */
  .portfolio-section-info {
    flex: 0 0 35%;
    z-index: 2;
  }

  .portfolio-section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    color: #997E55;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
  }

  .portfolio-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 25px;
  }

  .portfolio-section-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #F8F5F1;
    opacity: 0.8;
    margin-bottom: 40px;
    max-width: 400px;
  }

  .portfolio-section-btn {
    display: inline-block;
    padding: 15px 30px;
    border: 1px solid #F8F5F1;
    color: #F8F5F1;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background: transparent;
  }

  .portfolio-section-btn:hover {
    background-color: #997E55;
    border-color: #997E55;
    color: #F8F5F1;
  }

  /* Slider Side (Right) */
  .portfolio-section-slider-wrapper {
    flex: 0 0 65%;
    position: relative;
  }

  .portfolio-section-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    padding-right: 100px; /* To allow overflow look */
  }

  .portfolio-section-carousel::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
  }

  .portfolio-section-card {
    flex: 0 0 300px;
    height: 450px;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease;
  }

  .portfolio-section-card:hover {
    transform: translateY(-10px);
  }

  .portfolio-section-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
  }

  .portfolio-section-card:hover .portfolio-section-img {
    filter: brightness(1.1);
  }

  /* Navigation Arrows */
  .portfolio-section-nav {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    position: absolute;
    left: -42%; /* Adjusted to be under the text or specific position */
    bottom: -10px;
  }

  .portfolio-section-arrow {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(248, 245, 241, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: transparent;
    color: #F8F5F1;
    transition: all 0.3s ease;
  }

  .portfolio-section-arrow:hover {
    background: #997E55;
    border-color: #997E55;
  }

  /* Responsive Styling */
  @media (max-width: 1024px) {
    .portfolio-section-wrapper {
      flex-direction: column;
      padding: 0 5%;
    }
    .portfolio-section-info {
      flex: 1 1 100%;
      text-align: center;
      margin-bottom: 50px;
    }
    .portfolio-section-desc {
      margin-left: auto;
      margin-right: auto;
    }
    .portfolio-section-slider-wrapper {
      flex: 1 1 100%;
      width: 100%;
    }
    .portfolio-section-nav {
      position: relative;
      left: 0;
      justify-content: center;
      margin-top: 40px;
    }
    .portfolio-section-carousel {
      padding-right: 0;
    }
    .portfolio-section-card {
      flex: 0 0 250px;
      height: 380px;
    }
  }

  @media (max-width: 480px) {
    .portfolio-section-title {
      font-size: 36px;
    }
    .portfolio-section-card {
      flex: 0 0 220px;
      height: 330px;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

  #process-section {
    background-color: #F8F5F1;
    padding: 100px 5%;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
  }

  .process-section-header {
    text-align: center;
    margin-bottom: 80px;
  }

  .process-section-subtitle {
    font-family: 'Montserrat', sans-serif;
    color: #997E55;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: block;
  }

  .process-section-title {
    font-family: 'Cormorant Garamond', serif;
    color: #2B2B2B;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin: 0 auto;
    max-width: 800px;
    line-height: 1.2;
  }

  .process-section-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }

  .process-section-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 15px;
  }

  /* Connector Line */
  .process-section-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 55px; /* Aligned with icon center */
    left: 60%;
    width: 80%;
    height: 1px;
    background-color: #B5935F;
    opacity: 0.4;
    z-index: 1;
  }

  .process-section-visual {
    position: relative;
    width: 100%;
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    z-index: 2;
  }

  .process-section-number {
    position: absolute;
    top: 0;
    left: 20%;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #B5935F;
    font-weight: 600;
    opacity: 0.8;
  }

  .process-section-icon-container {
    background-color: #F8F5F1; /* Same as section bg to break the line */
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
  }

  .process-section-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: transform 0.4s ease;
  }

  .process-section-item:hover .process-section-icon {
    transform: scale(1.1) rotate(5deg);
  }

  .process-section-content {
    padding: 0 10px;
  }

  .process-section-label {
    font-family: 'Montserrat', sans-serif;
    color: #2B2B2B;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 1px;
  }

  .process-section-desc {
    color: #555;
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
  }

  /* Responsive Adjustments */
  @media (max-width: 1024px) {
    .process-section-item:not(:last-child)::after {
      width: 70%;
    }
  }

  @media (max-width: 768px) {
    .process-section-grid {
      flex-direction: column;
      gap: 50px;
    }

    .process-section-item {
      width: 100%;
    }

    .process-section-item:not(:last-child)::after {
      top: auto;
      bottom: -30px;
      left: 50%;
      width: 1px;
      height: 40px;
      transform: translateX(-50%);
    }

    .process-section-visual {
      height: auto;
      margin-bottom: 15px;
    }

    .process-section-number {
      position: static;
      margin-bottom: 5px;
    }
    
    .process-section-icon-container {
        width: 70px;
        height: 70px;
    }
  }

/* Import Google Fonts if not already available */
  @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

  #cta-banner {
    position: relative;
    width: 100%;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(rgba(43, 43, 43, 0.75), rgba(43, 43, 43, 0.75)), url('');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect for premium feel */
    overflow: hidden;
    padding: 60px 5%;
    box-sizing: border-box;
  }

  .cta-banner-wrapper {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    z-index: 2;
  }

  .cta-banner-content {
    flex: 1;
  }

  .cta-banner-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #F4F2EE;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-weight: 400;
  }

  .cta-banner-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    color: #F8F5F1;
    line-height: 1.1;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
  }

  .cta-banner-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #F4F2EE;
    max-width: 500px;
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
  }

  .cta-banner-action {
    flex-shrink: 0;
  }

  .cta-banner-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: #997E55;
    color: #F8F5F1;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 18px 36px;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
  }

  .cta-banner-button:hover {
    background-color: #B5935F;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  }

  .cta-banner-icon {
    width: 24px;
    height: 24px;
    fill: #F8F5F1;
    transition: transform 0.3s ease;
  }

  .cta-banner-button:hover .cta-banner-icon {
    transform: scale(1.1) rotate(5deg);
  }

  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .cta-banner-wrapper {
      flex-direction: column;
      text-align: center;
      gap: 35px;
    }

    .cta-banner-description {
      margin: 0 auto;
    }
    
    #cta-banner {
        padding: 80px 20px;
    }
  }

  @media (max-width: 576px) {
    .cta-banner-headline {
      font-size: 2rem;
    }
    
    .cta-banner-subtitle {
      font-size: 0.9rem;
    }

    .cta-banner-button {
      width: 100%;
      justify-content: center;
      padding: 16px 24px;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Montserrat:wght@300;400;500;600&display=swap');

  :root {
    --footer-primary: #997E55;
    --footer-secondary: #B5935F;
    --footer-dark: #2B2B2B;
    --footer-bg: #F8F5F1;
    --footer-light: #F4F2EE;
    --footer-font-serif: 'Cormorant Garamond', serif;
    --footer-font-sans: 'Montserrat', sans-serif;
  }

  .footer-section {
    background-color: var(--footer-bg);
    color: var(--footer-dark);
    font-family: var(--footer-font-sans);
    padding: 80px 0 0 0;
    overflow: hidden;
    border-top: 1px solid rgba(153, 126, 85, 0.2);
  }

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 60px;
  }

  .footer-brand-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .footer-logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    align-self: flex-start;
  }

  .footer-brand-description {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin: 0;
    max-width: 320px;
  }

  .footer-column-title {
    font-family: var(--footer-font-serif);
    font-size: 18px;
    font-weight: 700;
    color: var(--footer-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    position: relative;
  }

  .footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-nav-item {
    margin-bottom: 12px;
  }

  .footer-nav-link {
    text-decoration: none;
    color: var(--footer-dark);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
  }

  .footer-nav-link:hover {
    color: var(--footer-primary);
    transform: translateX(5px);
  }

  .footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.5;
  }

  .footer-contact-icon {
    color: var(--footer-primary);
    flex-shrink: 0;
    width: 18px;
    margin-top: 2px;
  }

  .footer-social-wrapper {
    margin-top: 25px;
    display: flex;
    gap: 15px;
  }

  .footer-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--footer-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .footer-social-icon:hover {
    background-color: var(--footer-dark);
    transform: translateY(-3px);
  }

  .footer-social-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
  }

  .footer-bottom-bar {
    border-top: 1px solid #e0ddd8;
    padding: 25px 0;
    background-color: var(--footer-light);
  }

  .footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-copyright {
    font-size: 12px;
    color: #888;
    margin: 0;
  }

  .footer-tagline {
    font-size: 12px;
    color: #888;
    font-style: italic;
    margin: 0;
  }

  /* Responsive Design */
  @media (max-width: 1024px) {
    .footer-container {
      grid-template-columns: 1fr 1fr;
      gap: 50px;
    }
  }

  @media (max-width: 600px) {
    .footer-section {
      padding: 60px 0 0 0;
    }
    .footer-container {
      grid-template-columns: 1fr;
      gap: 40px;
      text-align: center;
    }
    .footer-logo-img {
      align-self: center;
    }
    .footer-brand-description {
      max-width: 100%;
    }
    .footer-nav-link:hover {
      transform: translateY(-2px);
    }
    .footer-contact-item {
      justify-content: center;
    }
    .footer-social-wrapper {
      justify-content: center;
    }
    .footer-bottom-container {
      flex-direction: column;
      gap: 10px;
      text-align: center;
    }
  }

