  body {
    margin: 0;
    background-color: #fff;
  }

  :root{
  --accent: #f87c14;
  --heading-color: rgba(47,62,73,0.95);
  --body-color: rgba(47,62,73,0.85);
  --serif: "Playfair Display", Georgia, serif;
  --ui: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  }

  header{
    margin:0;
    padding:60px 20px 20px 20px;
    background-color:white;
    position:relative;
    background-size:auto;
    background-repeat:repeat;
    color:#373F51;
    width:100%;
    box-sizing:border-box;
    transition:all var(--transition-speed) ease;
    z-index:1000;
  }

  .header-logo{
    position:absolute;
    top:10px;
    left:20px;
    max-width:180px;
    width:20%;
    height:auto;
    transform:translateY(0);
    transition:transform var(--transition-speed) ease,opacity var(--transition-speed) ease,visibility var(--transition-speed) ease;
  }

  header h1{
    font-size:36px;
    font-family:"Playfair Display Flex",serif;
    letter-spacing:2px;
    margin:0;
    font-weight:bold;
    text-align:center;
    padding-bottom:67px;
    transition:all var(--transition-speed) ease;
    color:#373F51;
  }

  .desktop-nav{
    margin-top:20px;
    text-align:center;
    transition:all var(--transition-speed) ease;
  }

  .desktop-nav ul{
    list-style:none;
    padding:0;
    margin:0;
    display:inline-flex;
    gap:30px;
    align-items:center;
  }

  .desktop-nav ul li{
    font-size:20px;
  }

  .desktop-nav ul li a{
    text-decoration:none;
    transition:color 0.3s ease;
    color:#707786;
  }

  .desktop-nav ul li a.active{
    color:#ff6600;
  }

  .desktop-nav ul li a:hover{
    color:#A7ABB5;
  }

  .nav-toggle{
    background:transparent;
    border:0;
    color:inherit;
    position:absolute;
    right:20px;
    top:18px;
  }

  .nav-toggle__box{display:inline-block}

  .nav-toggle__bar{display:block;width:22px;height:2px;margin:4px 0;background:#ddd}

  @media (max-width:768px){
    .header-logo{max-width:120px;left:10px;top:50%;transform:translateY(-50%)}
    header h1{font-size:28px;padding-bottom:40px}
  }

  @media (max-width:480px){
    .header-logo{max-width:40px;height:auto;position:absolute;top:50%;left:10px;transform:translateY(-50%)}
    .desktop-nav{display:none}
    header{
      position:fixed;
      top:0;
      left:0;
      width:100%;
      padding:10px 20px;
      box-sizing:border-box;
    }
    header h1{font-size:20px;line-height:24px;padding:0;margin:0;text-align:center}
  }

  @media (min-width:769px){
    header.scrolled{
      position:fixed;
      top:0;
      left:0;
      width:100%;
      height:var(--scrolled-height);
      padding:8px 20px;
      box-shadow:0 4px 12px rgba(0,0,0,0.08);
      transition:all var(--transition-speed) ease;
    }

    header.scrolled .header-logo{
      opacity:0;
      transform:translateY(-20px) scale(.95);
      visibility:hidden;
      pointer-events:none;
    }

    header.scrolled h1{
      opacity:0;
      height:0;
      padding:0;
      margin:0;
      overflow:hidden;
      transform:translateY(-10px);
    }

    header.scrolled .desktop-nav{
      margin-top:0;
      display:flex;
      align-items:center;
      justify-content:center;
      height:100%;
    }

    header.scrolled .nav-toggle{
      display:none;
    }
  }

  @media (max-width:480px){
    header.scrolled .desktop-nav{display:flex !important}
  }

  #header-spacer{
    height:0;
    transition:height var(--transition-speed) ease;
  }

  .about-section {
      padding: 72px 20px 48px;
      text-align: center;
      font-family: var(--ui);
      color: var(--body-color);
      background: #fff;
      }

      .about-section .about-title {
      font-family: var(--serif);
      font-weight: 400;
      font-size: clamp(36px, 4.8vw, 56px);
      color: var(--heading-color);
      margin: 0 0 10px;
      line-height: 1.05;
      }

      .about-section .title-underline {
      width: 72px;
      height: 6px;
      background: var(--accent);
      border-radius: 4px;
      margin: 14px auto 28px;
      }

      .about-section .about-copy {
      max-width: 920px;
      margin: 0 auto;
      font-size: 18px;
      line-height: 1.8;
      color: var(--body-color);
      padding: 0 14px;
      }

      .about-gallery {
      max-width: 1200px;
      margin: 40px auto 0;
      display: flex;
      gap: 20px; 
      justify-content: center;
      align-items: stretch;
      padding: 0 18px 48px;
      box-sizing: border-box;
      }

      .about-gallery .about-card:first-child {
      flex: 2 1 62%;    
      max-width: calc(62% - 10px);
      border-radius: 18px;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 12px 36px rgba(16,24,32,0.12);
      }

      .about-gallery .about-card:last-child {
      flex: 1 1 38%;
      max-width: calc(38% - 10px);
      border-radius: 18px;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 12px 36px rgba(16,24,32,0.12);
      }

      .about-card { display: block; }

      .about-card img {
      width: 100%;
      height: 480px;  
      object-fit: cover;
      display: block;
      }

      @media (min-width:1400px){
      .about-card img { height: 520px; }
      }

      .services-two {
      background: #fff;
      padding: 48px 20px 100px;
      box-sizing: border-box;
      font-family: var(--ui);
      color: var(--body-color);
      }

      .services-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      gap: 48px;
      align-items: flex-start;
      justify-content: center;
      padding: 0 18px;
      box-sizing: border-box;
      flex-wrap: wrap;
      }

      .services-left {
      flex: 0 0 38%;
      min-width: 260px;
      max-width: 460px;
      }

      .services-left h2 {
      font-family: var(--serif);
      font-weight: 400;
      color: var(--heading-color);
      font-size: clamp(28px, 3.6vw, 40px);
      margin: 0 0 8px;
      line-height: 1.08;
      }

      .services-left .section-underline {
      width: 72px;
      height: 6px;
      background: var(--accent);
      border-radius: 4px;
      margin-top: 12px;
      margin-bottom: 18px;
      }

      .services-right {
      flex: 1 1 52%;
      min-width: 260px;
      color: var(--body-color);
      font-size: 16px;
      line-height: 1.75;
      }

      @media (max-width: 920px) {
      .about-gallery {
          flex-direction: column;
          gap: 18px;
          padding-bottom: 32px;
      }

      .about-gallery .about-card:first-child,
      .about-gallery .about-card:last-child {
          flex: 1 1 100%;
          max-width: 100%;
      }

      .about-card img { height: 380px; }

      .services-inner { flex-direction: column; align-items: center; text-align: center; }
      .services-left { max-width: 640px; order: 1; }
      .services-right { order: 2; max-width: 720px; }
      .services-right p { margin-top: 6px; }

      .about-section .about-copy { padding: 0 12px; }
      }

      @media (max-width: 480px) {
      .about-card img { height: 300px; }
      .about-section { padding: 48px 14px 32px; }
      .services-two { padding: 36px 14px 64px; }
      .about-section .about-title { font-size: 28px; }
      .services-left h2 { font-size: 26px; }
      .about-section .about-copy { font-size: 15px; line-height: 1.6; }
      .services-left .section-underline { margin-top: 8px; margin-bottom: 12px; width: 56px; height:5px; }
      }