 :root {
     --cream: #F5F0E8;
     --cream-dark: #EDE6D6;
     --cream-deep: #E4D9C4;
     --saffron: #C4622D;
     --saffron-light: #E07840;
     --gold: #C9963A;
     --gold-light: #D4A843;
     --forest: #1C3A2F;
     --forest-light: #2A5040;
     --ink: #1A1510;
     --muted: #6B5E4E;
     --muted-l: #9A8A78
 }

 *,
 *::before,
 *::after {
     margin: 0;
     padding: 0;
     box-sizing: border-box
 }

 html {
     scroll-behavior: smooth
 }

 body {
     background: var(--cream);
     color: var(--ink);
     font-family: 'DM Sans', sans-serif;
     font-weight: 300;
     overflow-x: hidden
 }

 body::before {
     content: '';
     position: fixed;
     inset: 0;
     background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
     pointer-events: none;
     z-index: 999;
     opacity: 0.35
 }

 .lang-bar {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 101;
     background: var(--forest);
     height: 28px;
     display: flex;
     align-items: center;
     justify-content: flex-end;
     padding: 0 56px;
     border-bottom: 1px solid rgba(255, 255, 255, 0.07);
     transition: transform 0.4s ease
 }

 .lang-bar.hidden {
     transform: translateY(-100%)
 }

 .lang-toggle {
     display: flex;
     align-items: center;
     gap: 6px
 }

 .lang-btn {
     background: none;
     border: none;
     cursor: pointer;
     font-family: 'DM Sans', sans-serif;
     font-size: 10px;
     letter-spacing: 0.15em;
     text-transform: uppercase;
     color: rgba(255, 255, 255, 0.4);
     padding: 2px 6px;
     transition: color 0.3s;
     font-weight: 400
 }

 .lang-btn.active {
     color: var(--gold-light)
 }

 .lang-sep {
     color: rgba(255, 255, 255, 0.2);
     font-size: 10px
 }

 nav {
     position: fixed;
     top: 28px;
     left: 0;
     right: 0;
     z-index: 100;
     padding: 0 56px;
     height: 72px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     transition: all 0.5s ease
 }

 nav.scrolled {
     background: rgba(28, 58, 47, 0.97);
     backdrop-filter: blur(12px);
     box-shadow: 0 2px 40px rgba(0, 0, 0, 0.25);
     top: 0
 }

 .nav-logo {
     font-family: 'Cormorant Garamond', serif;
     font-size: 22px;
     font-weight: 500;
     color: white;
     letter-spacing: 0.05em;
     text-decoration: none
 }

 .nav-logo span {
     color: var(--gold-light)
 }

 .nav-links {
     display: flex;
     gap: 32px;
     list-style: none;
     align-items: center
 }

 .nav-links a {
     color: rgba(255, 255, 255, 0.82);
     text-decoration: none;
     font-size: 13px;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     font-weight: 400;
     transition: color 0.3s
 }

 .nav-links a:hover,
 .nav-links a.active {
     color: var(--gold-light)
 }

 .nav-cta {
     background: var(--saffron) !important;
     color: white !important;
     padding: 10px 22px;
     font-size: 12px !important;
     font-weight: 500 !important;
     white-space: nowrap
 }

 .page-hero {
     min-height: 420px;
     display: flex;
     align-items: flex-end;
     position: relative;
     overflow: hidden;
     padding-bottom: 0
 }

 .hero-bg {
     position: absolute;
     inset: 0;
     background: linear-gradient(to right, rgba(8, 5, 2, 0.88) 0%, rgba(8, 5, 2, 0.55) 55%, rgba(8, 5, 2, 0.25) 100%), url('https://images.unsplash.com/photo-1524492412937-b28074a5d7da?w=1600&q=85') center/cover
 }

 .page-hero-inner {
     position: relative;
     z-index: 2;
     width: 100%;
     max-width: 1400px;
     margin: 0 auto;
     padding: 120px 80px 72px
 }

 .eyebrow {
     font-size: 11px;
     letter-spacing: 0.25em;
     text-transform: uppercase;
     color: var(--gold-light);
     font-weight: 500;
     margin-bottom: 16px;
     display: flex;
     align-items: center;
     gap: 12px
 }

 .eyebrow::before {
     content: '';
     width: 24px;
     height: 1px;
     background: var(--gold-light)
 }

 .page-title {
     font-family: 'Cormorant Garamond', serif;
     font-size: clamp(42px, 5vw, 68px);
     font-weight: 300;
     color: white;
     line-height: 1.05;
     letter-spacing: -0.02em;
     margin-bottom: 16px
 }

 .page-title em {
     font-style: italic;
     color: var(--gold-light)
 }

 .page-desc {
     color: rgba(255, 255, 255, 0.6);
     font-size: 15px;
     line-height: 1.85;
     max-width: 480px
 }

 .contact-wrap {
     max-width: 1400px;
     margin: 0 auto;
     padding: 80px 80px 100px;
     display: grid;
     grid-template-columns: 1fr 1.15fr;
     gap: 80px;
     align-items: start
 }

 .ci-section {
     margin-bottom: 48px
 }

 .ci-label {
     font-size: 10px;
     letter-spacing: 0.22em;
     text-transform: uppercase;
     color: var(--saffron);
     font-weight: 500;
     margin-bottom: 18px
 }

 .ci-item {
     display: flex;
     align-items: flex-start;
     gap: 14px;
     margin-bottom: 20px
 }

 .ci-icon {
     width: 38px;
     height: 38px;
     border: 1px solid rgba(196, 98, 45, 0.25);
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
     color: var(--saffron);
     margin-top: 2px
 }

 .ci-title {
     font-size: 11px;
     letter-spacing: 0.12em;
     text-transform: uppercase;
     color: var(--muted-l);
     font-weight: 500;
     margin-bottom: 4px
 }

 .ci-val {
     font-size: 15px;
     color: var(--ink);
     font-weight: 400
 }

 .ci-val a {
     color: var(--ink);
     text-decoration: none;
     transition: color 0.25s
 }

 .ci-val a:hover {
     color: var(--saffron)
 }

 .jess-card {
     background: var(--forest);
     padding: 32px;
     display: flex;
     gap: 20px;
     align-items: flex-start;
     margin-bottom: 40px
 }

 .jess-img {
     width: 72px;
     height: 72px;
     border-radius: 50%;
     background: url('https://www.india.ch/images/Jess.jpeg') center 15%/120% auto;
     flex-shrink: 0
 }

 .jess-name {
     font-family: 'Cormorant Garamond', serif;
     font-size: 20px;
     color: white;
     font-weight: 400;
     margin-bottom: 2px
 }

 .jess-role {
     font-size: 11px;
     color: var(--gold-light);
     letter-spacing: 0.1em;
     text-transform: uppercase;
     font-weight: 500;
     margin-bottom: 10px
 }

 .jess-bio {
     font-size: 13px;
     color: rgba(255, 255, 255, 0.52);
     line-height: 1.75
 }

 .hours-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 0;
     border: 1px solid rgba(0, 0, 0, 0.09)
 }

 .hour-row {
     padding: 14px 18px;
     border-bottom: 1px solid rgba(0, 0, 0, 0.07);
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-size: 13px
 }

 .hour-row:nth-last-child(-n+2) {
     border-bottom: none
 }

 .hour-day {
     color: var(--muted);
     font-weight: 400
 }

 .hour-time {
     color: var(--ink);
     font-weight: 400
 }

 .hour-closed {
     color: var(--muted-l)
 }

 .direct-links {
     display: flex;
     flex-direction: column;
     gap: 10px
 }

 .direct-link {
     display: flex;
     align-items: center;
     gap: 12px;
     padding: 14px 18px;
     text-decoration: none;
     border: 1px solid rgba(0, 0, 0, 0.1);
     color: var(--ink);
     font-size: 14px;
     transition: all 0.25s;
     background: white
 }

 .direct-link:hover {
     border-color: var(--saffron);
     color: var(--saffron)
 }

 .contact-form-wrap {
     background: white;
     padding: 52px;
     box-shadow: 0 4px 48px rgba(0, 0, 0, 0.07)
 }

 .form-title {
     font-family: 'Cormorant Garamond', serif;
     font-size: 32px;
     color: var(--ink);
     font-weight: 300;
     margin-bottom: 6px;
     line-height: 1.1
 }

 .form-title em {
     font-style: italic;
     color: var(--saffron)
 }

 .form-sub {
     font-size: 14px;
     color: var(--muted);
     line-height: 1.7;
     margin-bottom: 36px
 }

 .form-row {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 16px;
     margin-bottom: 16px
 }

 .form-field {
     display: flex;
     flex-direction: column;
     gap: 7px;
     margin-bottom: 16px
 }

 .form-field:last-of-type {
     margin-bottom: 0
 }

 .form-label {
     font-size: 11px;
     letter-spacing: 0.12em;
     text-transform: uppercase;
     color: var(--muted-l);
     font-weight: 500
 }

 .form-input {
     background: var(--cream);
     border: 1px solid transparent;
     padding: 14px 16px;
     font-family: 'DM Sans', sans-serif;
     font-size: 14px;
     color: var(--ink);
     font-weight: 300;
     outline: none;
     transition: border-color 0.25s, background 0.25s;
     -webkit-appearance: none;
     appearance: none
 }

 .form-input:focus {
     border-color: var(--gold);
     background: white
 }

 .form-textarea {
     resize: vertical;
     min-height: 110px
 }

 .form-options {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 16px;
     margin-bottom: 28px
 }

 .form-options-label {
     font-size: 11px;
     letter-spacing: 0.12em;
     text-transform: uppercase;
     color: var(--muted-l);
     font-weight: 500;
     margin-bottom: 10px
 }

 .radio-row {
     display: flex;
     align-items: center;
     gap: 8px;
     margin-bottom: 8px;
     cursor: pointer;
     font-size: 13px;
     color: var(--ink)
 }

 .radio-row input {
     accent-color: var(--saffron);
     width: 14px;
     height: 14px;
     cursor: pointer
 }

 .btn-send {
     width: 100%;
     background: var(--saffron);
     color: white;
     border: none;
     padding: 17px;
     font-family: 'DM Sans', sans-serif;
     font-size: 11px;
     letter-spacing: 0.2em;
     text-transform: uppercase;
     font-weight: 500;
     cursor: pointer;
     transition: background 0.3s, transform 0.2s;
     margin-top: 28px
 }

 .btn-send:hover {
     background: var(--saffron-light);
     transform: translateY(-1px)
 }

 .btn-send:disabled {
     opacity: 0.6;
     cursor: not-allowed;
     transform: none
 }

 .form-note {
     font-size: 11px;
     color: var(--muted-l);
     text-align: center;
     margin-top: 14px;
     line-height: 1.6
 }

 .form-success {
     display: none;
     text-align: center;
     padding: 48px 24px
 }

 .success-icon {
     width: 56px;
     height: 56px;
     background: var(--forest);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 20px;
     color: white
 }

 .success-title {
     font-family: 'Cormorant Garamond', serif;
     font-size: 28px;
     color: var(--ink);
     font-weight: 300;
     margin-bottom: 10px
 }

 .success-msg {
     font-size: 14px;
     color: var(--muted);
     line-height: 1.8
 }

 .fbar {
     background: var(--forest-light);
     padding: 18px 80px;
     border-bottom: 1px solid rgba(255, 255, 255, 0.08)
 }

 .fbar-inner {
     display: flex;
     align-items: center;
     gap: 28px;
     flex-wrap: wrap
 }

 .fbar-link {
     display: flex;
     align-items: center;
     gap: 8px;
     color: rgba(255, 255, 255, 0.8);
     text-decoration: none;
     font-size: 14px;
     font-family: 'DM Sans', sans-serif;
     transition: color 0.3s
 }

 .fbar-link svg {
     color: var(--gold-light);
     flex-shrink: 0
 }

 .fbar-link:hover {
     color: white
 }

 .fbar-div {
     color: rgba(255, 255, 255, 0.2);
     font-size: 16px
 }

 .fbar-socials {
     display: flex;
     gap: 8px;
     margin-left: auto
 }

 .soc {
     width: 34px;
     height: 34px;
     border: 1px solid rgba(255, 255, 255, 0.18);
     display: flex;
     align-items: center;
     justify-content: center;
     color: rgba(255, 255, 255, 0.55);
     text-decoration: none;
     transition: all 0.3s
 }

 .soc:hover {
     border-color: var(--gold-light);
     color: var(--gold-light)
 }

 footer {
     background: var(--ink);
     padding: 64px 80px 32px
 }

 .foot-grid {
     display: grid;
     grid-template-columns: 2fr 1fr 1fr 1fr;
     gap: 48px;
     padding-bottom: 48px;
     border-bottom: 1px solid rgba(255, 255, 255, 0.07);
     margin-bottom: 28px
 }

 .foot-logo {
     font-family: 'Cormorant Garamond', serif;
     font-size: 24px;
     font-weight: 500;
     color: white;
     letter-spacing: 0.05em;
     text-decoration: none;
     display: block;
     margin-bottom: 14px
 }

 .foot-logo span {
     color: var(--gold-light)
 }

 .foot-tag {
     font-size: 13px;
     color: rgba(255, 255, 255, 0.42);
     line-height: 1.85;
     max-width: 260px
 }

 .foot-col-h {
     font-size: 10px;
     letter-spacing: 0.2em;
     text-transform: uppercase;
     color: rgba(255, 255, 255, 0.3);
     margin-bottom: 18px;
     font-weight: 500
 }

 .foot-links {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 10px
 }

 .foot-links a {
     color: rgba(255, 255, 255, 0.52);
     text-decoration: none;
     font-size: 14px;
     transition: color 0.3s
 }

 .foot-links a:hover {
     color: white
 }

 .foot-addr {
     margin-top: 20px;
     font-size: 11px;
     color: rgba(255, 255, 255, 0.22);
     line-height: 1.7
 }

 .foot-bottom {
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
     gap: 12px
 }

 .foot-copy {
     font-size: 12px;
     color: rgba(255, 255, 255, 0.22)
 }

 .foot-legal {
     display: flex;
     gap: 20px
 }

 .foot-legal a {
     font-size: 12px;
     color: rgba(255, 255, 255, 0.22);
     text-decoration: none;
     transition: color 0.3s
 }

 .foot-legal a:hover {
     color: rgba(255, 255, 255, 0.6)
 }

 .reveal {
     opacity: 0;
     transform: translateY(24px);
     transition: opacity 0.8s ease, transform 0.8s ease
 }

 .reveal.on {
     opacity: 1;
     transform: translateY(0)
 }

 .d1 {
     transition-delay: 0.1s
 }

 .d2 {
     transition-delay: 0.2s
 }

 @media(max-width:1024px) {
     .contact-wrap {
         grid-template-columns: 1fr;
         gap: 48px;
         padding: 60px 24px 80px
     }

     .page-hero-inner,
     .fbar {
         padding-left: 24px;
         padding-right: 24px
     }

     nav,
     nav.scrolled {
         padding: 0 24px
     }

     .lang-bar {
         padding: 0 24px
     }

     footer {
         padding: 48px 24px 32px
     }

     .foot-grid {
         grid-template-columns: 1fr 1fr;
         gap: 32px
     }

     .contact-form-wrap {
         padding: 32px 24px
     }

     .form-row {
         grid-template-columns: 1fr
     }

     .form-options {
         grid-template-columns: 1fr
     }
 }

 @media(max-width:768px) {

     html,
     body {
         overflow-x: hidden !important
     }

     nav,
     nav.scrolled {
         padding: 0 16px !important;
         height: 64px !important
     }

     .lang-bar,
     .fbar {
         padding-left: 16px !important;
         padding-right: 16px !important
     }

     .nav-logo {
         font-size: 20px !important
     }

     .nav-links {
         display: flex !important;
         gap: 14px !important;
         overflow-x: auto !important;
         max-width: 68vw;
         scrollbar-width: none;
         -webkit-overflow-scrolling: touch;
     }

     .nav-links::-webkit-scrollbar {
         display: none
     }

     .nav-links a {
         font-size: 11px !important;
         white-space: nowrap
     }

     .nav-cta {
         padding: 8px 14px !important;
         font-size: 10px !important
     }

     footer {
         padding: 48px 20px 32px !important
     }

     .foot-grid {
         grid-template-columns: 1fr !important;
     }
 }

 .menu-toggle {
     display: none;
     width: 42px;
     height: 42px;
     border: 1px solid rgba(255, 255, 255, 0.18);
     background: rgba(255, 255, 255, 0.06);
     align-items: center;
     justify-content: center;
     flex-direction: column;
     gap: 5px;
     cursor: pointer;
     border-radius: 10px;
     padding: 0;
 }

 .menu-toggle span {
     display: block;
     width: 18px;
     height: 1.5px;
     background: rgba(255, 255, 255, 0.92);
     transition: transform .25s ease, opacity .25s ease;
 }

 body.menu-open {
     overflow: hidden
 }

 @media(max-width:768px) {
     .menu-toggle {
         display: flex !important
     }

     .nav-links {
         position: fixed !important;
         top: 64px !important;
         left: 0 !important;
         right: 0 !important;
         z-index: 120 !important;
         display: none !important;
         flex-direction: column !important;
         align-items: flex-start !important;
         gap: 0 !important;
         max-width: none !important;
         width: 100% !important;
         background: rgba(28, 58, 47, 0.98) !important;
         backdrop-filter: blur(12px);
         padding: 14px 20px 22px !important;
         border-top: 1px solid rgba(255, 255, 255, 0.08);
         box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
         overflow: visible !important;
     }

     body.menu-open .nav-links {
         display: flex !important
     }

     .nav-links li {
         width: 100%
     }

     .nav-links a {
         display: block !important;
         width: 100% !important;
         padding: 12px 0 !important;
         font-size: 12px !important;
         border-bottom: 1px solid rgba(255, 255, 255, 0.08);
     }

     .nav-links li:last-child a {
         border-bottom: none
     }

     .nav-cta {
         margin-top: 10px;
         border-bottom: none !important;
         width: auto !important;
         padding: 10px 16px !important;
     }
 }