    @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&family=Playfair+Display:wght@700&display=swap');
   
   
   :root {
      --accent: #1a1a1a;
      --bg: #fff;
      --text: #222;
      --subtle: #eee;
      --max-width: 800px;
      --nav-height: 64px;
	  --team-gap: 2.2rem;
    }
	
	
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'Montserrat', Arial, sans-serif;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }
   nav {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    height: 64px;
    display: flex;
    align-items: center;
    z-index: 100;
    position: sticky;
    top: 0;
  }
  .nav-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    height: 64px;
    position: relative;
  }
  .logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #1a1a1a;
    text-align: left;
    user-select: none;
  }
  .nav-menu {
    display: flex;
    gap: 2.2rem;
    align-items: center;
    list-style: none;
    transition: none;
  }
  .nav-menu li a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 1.02rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    transition: color 0.17s;
    padding: 0.2em 0;
    position: relative;
  }
  .nav-menu li a::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: #1a1a1a;
    transition: width 0.18s;
    position: absolute;
    bottom: -2px;
    left: 0;
  }
  .nav-menu li a:hover::after,
  .nav-menu li a:focus::after {
    width: 100%;
  }
  .nav-menu li a:hover,
  .nav-menu li a:focus {
    color: #444;
  }
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 201;
    margin-left: 1rem;
    background: none;
    border: none;
    padding: 0;
  }
  .hamburger span {
    height: 3px;
    width: 100%;
    background: #1a1a1a;
    border-radius: 2px;
    margin: 5px 0;
    transition: 0.3s;
    display: block;
  }
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
  .nav-overlay {
    display: none;
  }
  @media (max-width: 700px) {
    .nav-container {
      padding: 0 1rem;
    }
    .logo {
      font-size: 1.4rem;
    }
    .nav-menu {
      position: fixed;
      top: 0;
      right: 0;
      width: 72vw;
      max-width: 340px;
      height: 100vh;
      background: #fff;
      flex-direction: column;
      gap: 0;
      text-align: left;
      align-items: flex-start;
      padding: 2rem 1.5rem 2rem 2rem;
      box-shadow: -2px 0 24px 0 rgba(30,30,30,0.09);
      display: none;
      z-index: 300;
      transition: transform 0.2s;
    }
    .nav-menu.open {
      display: flex;
      animation: slideInMenu 0.23s cubic-bezier(.72,.22,.38,.79);
    }
    @keyframes slideInMenu {
      from { transform: translateX(60px); opacity: 0; }
      to { transform: translateX(0); opacity: 1; }
    }
    .nav-menu li {
      width: 100%;
      margin-bottom: 2rem;
    }
    .nav-menu li:last-child {
      margin-bottom: 0;
    }
    .hamburger {
      display: flex;
    }
    .nav-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(30,30,30,0.11);
      z-index: 200;
      transition: opacity 0.2s;
      opacity: 0;
      pointer-events: none;
    }
    .nav-overlay.active {
      display: block;
      opacity: 1;
      pointer-events: all;
    }
  }
    main.hero-section {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 3rem 2rem 6rem 2rem;
      min-height: 60vh;
      position: relative;
    }
    .accent-line {
      width: 52px;
      height: 3px;
      background: var(--accent);
      margin-bottom: 2.5rem;
      border-radius: 2px;
    }
    .hero-location {
      font-size: 0.95rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: #aaa;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }
    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: 2.9rem;
      line-height: 1.1;
      font-weight: 700;
      color: var(--accent);
      margin-bottom: 1.2rem;
      letter-spacing: -0.02em;
      max-width: 90%;
    }
    .hero-subtitle {
      font-size: 1.15rem;
      font-weight: 400;
      margin-bottom: 2.5rem;
      color: #666;
      max-width: 400px;
      line-height: 1.7;
      letter-spacing: 0.01em;
    }
    .cta-btn {
      display: inline-block;
      padding: 0.8em 1.8em;
      font-size: 1rem;
      letter-spacing: 0.04em;
      background: var(--accent);
      color: #fff;
      border: none;
      border-radius: 2.5em;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.17s;
      box-shadow: 0 2px 12px 0 rgba(40,40,40,0.08);
    }
    .cta-btn:hover, .cta-btn:focus {
      background: #444;
    }
	
	
    /* About Section */
    section.about-section {
      max-width: var(--max-width);
      margin: 0 auto 5rem auto;
      padding: 0 2rem;
      display: flex;
      align-items: center;
      gap: 3.5rem;
      min-height: 320px;
    }
    .about-text {
      flex: 1.2;
      display: flex;
      flex-direction: column;
    }
    .about-title {
      font-family: 'Playfair Display', serif;
      font-size: 2.1rem;
      font-weight: 700;
      color: var(--accent);
      margin-bottom: 1.5rem;
      letter-spacing: -0.02em;
    }
    .about-text p {
      font-size: 1.08rem;
      color: #444;
      line-height: 1.7;
      margin-bottom: 1.3rem;
      letter-spacing: 0.01em;
    }
    .about-text p:last-child {
      margin-bottom: 0;
    }
    .about-img {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 200px;
      max-width: 330px;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 6px 36px 0 rgba(30,30,30,0.10);
      background: #f7f7f7;
      aspect-ratio: 4/5;
    }
    .about-img img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      border-radius: 16px;
    }
    @media (max-width: 900px) {
      section.about-section {
        gap: 2rem;
        padding: 0 1rem;
      }
    }
    @media (max-width: 700px) {
      section.about-section {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
        padding: 0 1rem;
      }
      .about-img {
        max-width: 100%;
        width: 100%;
        margin-bottom: 0.5rem;
      }
      .about-title {
        font-size: 1.45rem;
      }
      .about-text p {
        font-size: 1rem;
      }
    }
    @media (max-width: 450px) {
      .about-title {
        font-size: 1.15rem;
      }
    }
	
	.portfolio-section {
    max-width: 800px;
    margin: 0 auto 6rem auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .portfolio-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
  }
  .portfolio-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.2rem 2.2rem;
  }
  .portfolio-card {
    background: #fafafa;
    border-radius: 16px;
    box-shadow: 0 3px 24px 0 rgba(30,30,30,0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.18s;
    min-width: 0;
  }
  .portfolio-card:hover {
    box-shadow: 0 6px 32px 0 rgba(30,30,30,0.12);
  }
  .portfolio-image {
    width: 100%;
    aspect-ratio: 4/3;
    background: #e5e5e5;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.2s;
  }
  .portfolio-card:hover .portfolio-image img {
    transform: scale(1.04);
  }
  .portfolio-info {
    padding: 1.4rem 1.2rem 1.3rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .portfolio-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.09rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.2rem;
    letter-spacing: 0.01em;
  }
  .portfolio-type {
    font-size: 0.95rem;
    color: #8a8a8a;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
    font-family: 'Montserrat', Arial, sans-serif;
  }
  .portfolio-desc {
    font-size: 1.01rem;
    color: #555;
    line-height: 1.6;
    letter-spacing: 0.01em;
    font-family: 'Montserrat', Arial, sans-serif;
  }
  @media (max-width: 900px) {
    .portfolio-section {
      padding: 0 1rem;
    }
    .portfolio-title {
      font-size: 1.45rem;
    }
    .portfolio-grid {
      gap: 1.2rem 1.2rem;
    }
  }
  @media (max-width: 600px) {
    .portfolio-section {
      padding: 0 1rem;
    }
    .portfolio-title {
      font-size: 1.12rem;
      margin-bottom: 1.3rem;
    }
    .portfolio-grid {
      grid-template-columns: 1fr;
      gap: 1.1rem 0;
    }
    .portfolio-info {
      padding: 1.1rem 0.7rem 1rem 0.7rem;
    }
    .portfolio-name {
      font-size: 1rem;
    }
    .portfolio-desc {
      font-size: 0.98rem;
    }
  }
	
	
	.team-section {
    max-width: 800px;
    margin: 0 auto 6rem auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .team-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
    margin-top: 1.5rem;
  }
  .team-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem;
  }
  .team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fafafa;
    border-radius: 16px;
    box-shadow: 0 3px 24px 0 rgba(30,30,30,0.06);
    padding: 2rem 1.2rem 1.5rem 1.2rem;
    transition: box-shadow 0.2s;
    min-width: 0;
  }
  .team-member:hover {
    box-shadow: 0 6px 32px 0 rgba(30,30,30,0.11);
  }
  .team-photo {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.3rem;
    background: #ececec;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 9px 0 rgba(30,30,30,0.07);
  }
  .team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .team-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.09rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.3rem;
    letter-spacing: 0.01em;
    text-align: center;
  }
  .team-role {
    font-size: 0.97rem;
    color: #888;
    font-weight: 500;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 0.1rem;
  }
  @media (max-width: 900px) {
    .team-section {
      padding: 0 1rem;
    }
    .team-title {
      font-size: 1.45rem;
    }
    .team-grid {
      gap: 1.2rem;
    }
  }
  @media (max-width: 700px) {
    .team-section {
      padding: 0 1rem;
    }
    .team-title {
      font-size: 1.1rem;
    }
    .team-grid {
      grid-template-columns: 1fr;
      gap: 1.1rem;
    }
    .team-member {
      padding: 1.3rem 1rem 1.1rem 1rem;
      border-radius: 12px;
    }
    .team-photo {
      width: 70px;
      height: 70px;
    }
    .team-name {
      font-size: 1rem;
    }
    .team-role {
      font-size: 0.93rem;
    }
  }
	
	
	/* Services Section */
	.services-section {
    max-width: 800px;
    margin: 0 auto 6rem auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .services-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2.7rem;
    letter-spacing: -0.02em;
  }
  .services-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.2rem 2.2rem;
  }
  .service-card {
    background: #fafafa;
    border-radius: 16px;
    box-shadow: 0 3px 24px 0 rgba(30,30,30,0.06);
    padding: 2.1rem 1.3rem 1.5rem 1.3rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.18s;
    min-width: 0;
  }
  .service-card:hover {
    box-shadow: 0 6px 32px 0 rgba(30,30,30,0.12);
  }
  .service-icon {
    margin-bottom: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .service-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.12rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.6rem;
    letter-spacing: 0.01em;
  }
  .service-desc {
    font-size: 1.01rem;
    color: #555;
    line-height: 1.7;
    letter-spacing: 0.01em;
    font-family: 'Montserrat', Arial, sans-serif;
  }
  @media (max-width: 900px) {
    .services-section {
      padding: 0 1rem;
    }
    .services-title {
      font-size: 1.45rem;
    }
    .services-grid {
      gap: 1.2rem 1.2rem;
    }
  }
  @media (max-width: 600px) {
    .services-section {
      padding: 0 1rem;
    }
    .services-title {
      font-size: 1.12rem;
      margin-bottom: 1.3rem;
    }
    .services-grid {
      grid-template-columns: 1fr;
      gap: 1.1rem 0;
    }
    .service-card {
      padding: 1.3rem 1rem 1.1rem 1rem;
      border-radius: 14px;
    }
    .service-icon svg {
      width: 32px;
      height: 32px;
    }
    .service-title {
      font-size: 1rem;
    }
    .service-desc {
      font-size: 0.98rem;
    }
  }
  
  /* Contact Section */
  .contact-section {
    max-width: 800px;
    margin: 0 auto 6rem auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-wrapper {
    width: 100%;
    background: #fafafa;
    border-radius: 20px;
    box-shadow: 0 3px 24px 0 rgba(30,30,30,0.06);
    padding: 2.4rem 2rem 2.2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2.2rem;
    letter-spacing: -0.02em;
  }
  .contact-details {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem 3.5rem;
  }
  .contact-block {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.4rem;
  }
  .contact-label {
    font-size: 0.93rem;
    font-weight: 600;
    letter-spacing: 0.11em;
    color: #8a8a8a;
    text-transform: uppercase;
    margin-bottom: 0.22rem;
    font-family: 'Montserrat', Arial, sans-serif;
  }
  .contact-value {
    font-size: 1.09rem;
    color: #222;
    font-family: 'Montserrat', Arial, sans-serif;
    line-height: 1.5;
    word-break: break-word;
  }
  .contact-link {
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 1px;
    transition: color 0.15s, border 0.15s;
  }
  .contact-link:hover,
  .contact-link:focus {
    color: #444;
    border-bottom: 1px solid #1a1a1a;
  }
  .contact-socials {
    grid-column: span 2;
    margin-top: 0.7rem;
  }
  .contact-social-links {
    display: flex;
    gap: 1.2rem;
    margin-top: 0.5rem;
  }
  .social-icon svg {
    display: block;
    transition: transform 0.16s;
  }
  .social-icon:hover svg,
  .social-icon:focus svg {
    transform: scale(1.13);
    opacity: 0.85;
  }
  @media (max-width: 900px) {
    .contact-section {
      padding: 0 1rem;
    }
    .contact-title {
      font-size: 1.45rem;
    }
    .contact-wrapper {
      padding: 1.5rem 1rem 1.5rem 1rem;
      border-radius: 14px;
    }
    .contact-details {
      gap: 1.2rem 1.2rem;
    }
  }
  @media (max-width: 600px) {
    .contact-section {
      padding: 0 1rem;
    }
    .contact-title {
      font-size: 1.1rem;
      margin-bottom: 1.1rem;
    }
    .contact-wrapper {
      padding: 1.1rem 0.6rem 1.2rem 0.6rem;
      border-radius: 10px;
    }
    .contact-details {
      grid-template-columns: 1fr;
      gap: 1.1rem 0;
    }
    .contact-socials {
      grid-column: span 1;
    }
    .contact-label {
      font-size: 0.85rem;
    }
    .contact-value {
      font-size: 1rem;
    }
    .social-icon svg {
      width: 22px;
      height: 22px;
    }
  }
  
  /* Footer Section */
  .footer-section {
    width: 100%;
    background: #fafafa;
    border-top: 1px solid #ededed;
    padding: 2.2rem 0 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .footer-content {
    max-width: 800px;
    width: 100%;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.2rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 0.97rem;
    color: #9a9a9a;
    letter-spacing: 0.01em;
  }
  .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #222;
    font-weight: 700;
    letter-spacing: 0.09em;
  }
  .footer-divider {
    width: 1.5px;
    height: 20px;
    background: #e2e2e2;
    border-radius: 1px;
    display: inline-block;
    margin: 0 1.1rem;
  }
  .footer-copy {
    font-size: 0.97rem;
    color: #9a9a9a;
    font-family: 'Montserrat', Arial, sans-serif;
  }
  @media (max-width: 600px) {
    .footer-content {
      flex-direction: column;
      gap: 0.4rem;
      padding: 0 1rem;
      text-align: center;
    }
    .footer-divider {
      display: none;
    }
    .footer-logo {
      font-size: 1.05rem;
    }
    .footer-copy {
      font-size: 0.92rem;
    }
  }