/* Reset & Base System */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    
    html {
      scroll-behavior: smooth;
      background-color: #F8F5F0;
      color: #111111;
      font-family: 'Outfit', sans-serif;
      overflow-x: hidden;
    }
    
    body {
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      line-height: 1.6;
    }
    
    a {
      text-decoration: none;
      color: inherit;
      transition: opacity 0.3s ease;
    }
    
    a:hover {
      opacity: 0.8;
    }
    
    img {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      will-change: transform, opacity;
    }
    
    /* Layout Helpers */
    .section-padding {
      padding: 8rem 8% 6rem 8%;
    }
    
    @media (max-width: 768px) {
      .section-padding {
        padding: 4rem 6% 3rem 6%;
      }
    }
    
    .container {
      max-width: 1400px;
      margin: 0 auto;
    }
    
    /* Header / Navigation */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      background-color: rgba(248, 245, 240, 0.96);
      border-bottom: 1px solid rgba(85, 0, 0, 0.08);
      backdrop-filter: blur(10px);
    }
    
    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 8%;
      max-width: 1600px;
      margin: 0 auto;
    }
    
    .logo img {
      height: 40px;
      width: auto;
    }
    
    .nav-links {
      display: flex;
      gap: 2.5rem;
      align-items: center;
    }
    
    .nav-links a {
      font-size: 0.95rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: #111111;
      transition: color 0.3s ease;
    }
    
    .nav-links a:hover {
      color: #550000;
    }
    
    .nav-cta {
      display: inline-block;
      padding: 0.75rem 1.5rem;
      border: 1.5px solid #550000;
      color: #550000;
      text-transform: uppercase;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      transition: all 0.3s ease;
      background: transparent;
    }
    
    .nav-cta:hover {
      background-color: #550000;
      color: #F8F5F0;
      opacity: 1;
    }
    
    .menu-toggle {
      display: none;
      flex-direction: column;
      gap: 6px;
      background: none;
      border: none;
      cursor: pointer;
      z-index: 1001;
    }
    
    .menu-toggle span {
      display: block;
      width: 28px;
      height: 2px;
      background-color: #550000;
      transition: all 0.3s ease;
    }
    
    @media (max-width: 1024px) {
      .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background-color: #F8F5F0;
        flex-direction: column;
        justify-content: center;
        gap: 3rem;
        z-index: 999;
      }
      
      .nav-links.active {
        display: flex;
      }
      
      .menu-toggle {
        display: flex;
      }
      
      .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
      }
      
      .menu-toggle.active span:nth-child(2) {
        opacity: 0;
      }
      
      .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
      }
    }
    
    /* 1. Photography-First Hero */
    .hero {
      position: relative;
      height: auto;
      min-height: auto;
      display: block;
      padding: 0;
      margin-top: 60px;
      background-color: #F8F5F0;
      overflow: hidden;
    }
    
    .hero-bg {
      position: relative;
      width: 100%;
      height: auto;
      z-index: 1;
    }
    
    .hero-bg img {
      width: 100%;
      height: auto;
      display: block;
    }
    
    @media (max-width: 1024px) {
      .hero {
        padding: 0;
      }
      
      .hero-bg {
        height: auto;
      }
    }
    
    .btn-whatsapp {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      background-color: #550000;
      color: #F8F5F0;
      padding: 1rem 2rem;
      font-size: 0.95rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      transition: all 0.3s ease;
      border: 1px solid #550000;
      text-decoration: none;
      cursor: pointer;
    }
    
    .btn-whatsapp:hover {
      background-color: transparent;
      color: #550000;
    }
    
    .btn-whatsapp svg {
      width: 24px;
      height: 24px;
      fill: currentColor;
      flex-shrink: 0;
    }
    
    /* 2. Creative Experiences */
    .experiences {
      background-color: #F8F5F0;
    }
    
    .section-title-wrap {
      margin-bottom: 4rem;
      text-align: center;
    }
    
    .section-overline {
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: #550000;
      font-weight: 600;
      margin-bottom: 1rem;
      display: block;
    }
    
    .section-title {
      font-size: 2.8rem;
      font-weight: 300;
      text-transform: uppercase;
      color: #111111;
    }
    
    .section-title span {
      font-weight: 600;
      color: #550000;
    }
    
    .experience-stack {
      display: flex;
      flex-direction: column;
      gap: 8rem;
    }
    
    .experience-row {
      display: flex;
      align-items: center;
      gap: 6%;
    }
    
    .experience-row:nth-child(even) {
      flex-direction: row-reverse;
    }
    
    .experience-img-box {
      flex: 1.2;
      overflow: hidden;
      border-radius: 8px;
    }
    
    .experience-img-box img {
      width: 100%;
      height: 550px;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    
    .experience-row:hover .experience-img-box img {
      transform: scale(1.02);
    }
    
    .experience-info {
      flex: 1;
    }
    
    .exp-num {
      font-size: 1.1rem;
      font-weight: 500;
      color: #550000;
      display: block;
      margin-bottom: 1rem;
      letter-spacing: 0.05em;
    }
    
    .exp-title {
      font-size: 2.2rem;
      font-weight: 400;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
      color: #111111;
    }
    
    .exp-desc {
      font-size: 1.05rem;
      color: #666666;
      margin-bottom: 2rem;
      font-weight: 300;
      line-height: 1.7;
    }
    
    .link-action {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.9rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: #550000;
      transition: gap 0.3s ease;
    }
    
    .link-action:hover {
      gap: 0.8rem;
      opacity: 1;
    }
    
    @media (max-width: 900px) {
      .experience-stack {
        gap: 4rem;
      }
      
      .experience-row, .experience-row:nth-child(even) {
        flex-direction: column;
        gap: 2rem;
      }
      
      .experience-img-box {
        width: 100%;
      }
      
      .experience-img-box img {
        height: 350px;
      }
    }
    
    /* 3. Featured Visual Stories */
    .stories {
      background-color: #F8F5F0;
      border-top: 1px solid rgba(85, 0, 0, 0.05);
    }
    
    .lookbook-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 4rem 2.5rem;
      margin-top: 4rem;
    }
    
    .lookbook-item {
      position: relative;
      cursor: pointer;
    }
    
    .lookbook-img-wrap {
      overflow: hidden;
      margin-bottom: 1.5rem;
      border-radius: 8px;
    }
    
    .lookbook-img-wrap img {
      width: 100%;
      transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    }
    
    .lookbook-item:hover .lookbook-img-wrap img {
      transform: scale(1.02);
    }
    
    .lookbook-meta {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
    }
    
    .lookbook-item-title {
      font-size: 1.15rem;
      font-weight: 500;
      color: #111111;
      text-transform: uppercase;
    }
    
    .lookbook-item-tag {
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: #666666;
    }
    
    .item-large {
      grid-column: span 7;
    }
    
    .item-large .lookbook-img-wrap img {
      height: 700px;
    }
    
    .item-medium {
      grid-column: span 5;
      margin-top: 6rem;
    }
    
    .item-medium .lookbook-img-wrap img {
      height: 500px;
    }
    
    .item-small-left {
      grid-column: span 4;
    }
    
    .item-small-left .lookbook-img-wrap img {
      height: 400px;
    }
    
    .item-wide-right {
      grid-column: span 8;
      margin-top: -4rem;
    }
    
    .item-wide-right .lookbook-img-wrap img {
      height: 550px;
    }
    
    .item-center {
      grid-column: start 3 / span 8;
      margin-top: 2rem;
    }
    
    .item-center .lookbook-img-wrap img {
      height: 600px;
    }
    
    @media (max-width: 900px) {
      .lookbook-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
      }
      
      .lookbook-item, .item-large, .item-medium, .item-small-left, .item-wide-right, .item-center {
        grid-column: span 12;
        margin-top: 0 !important;
      }
      
      .lookbook-img-wrap img {
        height: 380px !important;
      }
    }
    
    /* 4. Studio Promise */
    .promise {
      background-color: #550000;
      color: #F8F5F0;
    }
    
    .promise-container {
      display: flex;
      align-items: center;
      gap: 8%;
    }
    
    .promise-text-side {
      flex: 1.2;
    }
    
    .promise-overline {
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: rgba(248, 245, 240, 0.6);
      font-weight: 600;
      margin-bottom: 2rem;
      display: block;
    }
    
    .promise-statement {
      font-size: 2.6rem;
      font-weight: 300;
      line-height: 1.3;
      margin-bottom: 2.5rem;
      text-transform: uppercase;
    }
    
    .promise-desc {
      font-size: 1.1rem;
      color: rgba(248, 245, 240, 0.8);
      font-weight: 300;
      line-height: 1.8;
      max-width: 600px;
    }
    
    .promise-img-side {
      flex: 1;
      overflow: hidden;
      border-radius: 8px;
    }
    
    .promise-img-side img {
      width: 100%;
      height: 600px;
      object-fit: cover;
    }
    
    @media (max-width: 1024px) {
      .promise-container {
        flex-direction: column;
        gap: 3rem;
      }
      
      .promise-text-side, .promise-img-side {
        width: 100%;
      }
      
      .promise-statement {
        font-size: 1.8rem;
      }
      
      .promise-img-side img {
        height: 400px;
      }
    }
    
    /* 5. Lookbook Categories */
    .lookbook-section {
      background-color: #F8F5F0;
    }
    
    .category-filter-wrap {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 4rem;
    }
    
    .filter-tag {
      background: none;
      border: 1px solid rgba(85, 0, 0, 0.15);
      color: #666666;
      padding: 0.75rem 2rem;
      font-family: 'Outfit', sans-serif;
      text-transform: uppercase;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .filter-tag.active, .filter-tag:hover {
      background-color: #550000;
      color: #F8F5F0;
      border-color: #550000;
    }
    
    .category-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
    
    .category-card {
      position: relative;
      overflow: hidden;
      display: block;
      height: 480px;
      border-radius: 8px;
      transition: opacity 0.4s ease;
    }
    
    .category-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    
    .category-card-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to top, rgba(17, 17, 17, 0.6), transparent 60%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 2.5rem;
      color: #F8F5F0;
    }
    
    .category-card-overlay h4 {
      font-size: 1.5rem;
      font-weight: 400;
      text-transform: uppercase;
      margin-bottom: 0.5rem;
    }
    
    .category-card-overlay span {
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      opacity: 0.8;
    }
    
    .category-card:hover img {
      transform: scale(1.03);
    }
    
    @media (max-width: 900px) {
      .category-grid {
        grid-template-columns: 1fr;
      }
      
      .category-card {
        height: 380px;
      }
    }
    
    /* 6. Booking Journey */
    .journey {
      background-color: #F8F5F0;
      border-top: 1px solid rgba(85, 0, 0, 0.05);
      text-align: center;
    }
    
    .process-timeline {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 3rem;
      margin: 5rem auto;
      max-width: 1200px;
    }
    
    .process-step {
      text-align: left;
      position: relative;
    }
    
    .step-number {
      font-size: 2.5rem;
      font-weight: 300;
      color: #550000;
      margin-bottom: 1.5rem;
      display: block;
    }
    
    .step-title {
      font-size: 1.3rem;
      font-weight: 500;
      text-transform: uppercase;
      margin-bottom: 1rem;
      color: #111111;
    }
    
    .step-desc {
      font-size: 0.95rem;
      color: #666666;
      font-weight: 300;
      line-height: 1.6;
    }
    
    .booking-cta-box {
      margin-top: 6rem;
      padding: 4rem;
      background-color: #F8F5F0;
      border: 1px solid rgba(85, 0, 0, 0.12);
      display: inline-block;
      max-width: 800px;
      width: 100%;
    }
    
    .booking-cta-title {
      font-size: 2.2rem;
      font-weight: 300;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
      color: #111111;
    }
    
    .booking-cta-desc {
      font-size: 1.05rem;
      color: #666666;
      margin-bottom: 2.5rem;
      font-weight: 300;
    }
    
    @media (max-width: 900px) {
      .process-timeline {
        grid-template-columns: 1fr;
        gap: 3rem;
      }
      
      .process-step {
        text-align: center;
      }
      
      .booking-cta-box {
        padding: 2.5rem 1.5rem;
      }
      
      .booking-cta-title {
        font-size: 1.8rem;
      }
    }
    
    /* 7. Contact / Visit */
    .contact {
      background-color: #F8F5F0;
      border-top: 1px solid rgba(85, 0, 0, 0.05);
      padding-bottom: 8rem;
    }
    
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 8%;
      align-items: center;
    }
    
    .contact-details {
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
    }
    
    .contact-item h5 {
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: #550000;
      margin-bottom: 0.75rem;
      font-weight: 600;
    }
    
    .contact-item p, .contact-item a {
      font-size: 1.2rem;
      color: #111111;
      font-weight: 300;
    }
    
    .contact-map-side {
      position: relative;
      height: 480px;
      overflow: hidden;
      border-radius: 8px;
      border: 1px solid rgba(85, 0, 0, 0.08);
    }
    
    .contact-map-side img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }
    
    @media (max-width: 900px) {
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
      }
      
      .contact-map-side {
        height: 320px;
      }
    }
    
    /* Footer Redesign - Seamless visual connection */
    footer {
      background-color: #550000;
      color: #FFFFFF;
      padding: 4rem 8% 3rem 8%;
      border-top: 1px solid #C8A45D;
    }
    
    .footer-top {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1.2fr;
      gap: 4rem;
      padding-bottom: 4rem;
    }
    
    .footer-column h4 {
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: #FFFFFF;
      margin-bottom: 1.5rem;
      font-weight: 600;
    }
    
    .footer-brand-title {
      font-size: 1.6rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #FFFFFF;
      margin-bottom: 1rem;
    }
    
    .footer-tagline {
      font-size: 0.95rem;
      color: rgba(255, 255, 255, 0.8);
      font-weight: 300;
      margin-bottom: 1.5rem;
    }
    
    .footer-social-row {
      display: flex;
      gap: 1.2rem;
      align-items: center;
    }
    
    .footer-social-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.25);
      color: #FFFFFF;
      transition: all 0.3s ease;
    }
    
    .footer-social-icon:hover {
      background-color: #C8A45D;
      color: #550000;
      border-color: #C8A45D;
      opacity: 1;
    }
    
    .footer-social-icon svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
    }
    
    .footer-nav-list {
      list-style: none;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.75rem;
    }
    
    .footer-nav-list a {
      font-size: 0.95rem;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.8);
      transition: color 0.3s ease;
    }
    
    .footer-nav-list a:hover {
      color: #C8A45D;
    }
    
    .footer-contact-info p {
      font-size: 0.95rem;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 0.75rem;
      font-weight: 300;
    }
    
    .footer-contact-info a {
      color: #C8A45D;
      font-weight: 500;
      text-decoration: none;
      transition: color 0.3s ease;
    }
    
    .footer-contact-info a:hover {
      color: #FFFFFF;
    }
    
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 1px solid rgba(200, 164, 93, 0.3);
      padding-top: 2rem;
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.6);
      font-weight: 300;
    }
    
    @media (max-width: 900px) {
      .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-bottom: 3rem;
      }
      
      .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
      }
    }
    
    /* Floating Elegant WhatsApp Button */
    .whatsapp-float {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      z-index: 1000;
      background-color: #550000;
      color: #F8F5F0;
      width: 54px;
      height: 54px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 15px rgba(85, 0, 0, 0.25);
      transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    }
    
    .whatsapp-float:hover {
      transform: translateY(-4px);
      box-shadow: 0 6px 20px rgba(85, 0, 0, 0.35);
      background-color: #111111;
    }
    
    .whatsapp-float svg {
      width: 26px;
      height: 26px;
      fill: currentColor;
    }
    
    @media (max-width: 768px) {
      .whatsapp-float {
        bottom: 2rem;
        right: 1.5rem;
        width: 48px;
        height: 48px;
      }
      
      .whatsapp-float svg {
        width: 22px;
        height: 22px;
      }
    }

/* Screen reader only helper */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
