/* style2.css */
:root{
  --bg: #eaf2ff;
  --ink: #1b1b1f;

  --primary: #373181;
  --accent: #ff7505;
  --pink: #ff91ff;
  --sun: #ffde59;

  --card: #ffffff;
  --muted: rgba(27,27,31,.72);
  --border: rgba(55,49,129,.16);
  --shadow: 0 10px 30px rgba(27,27,31,.08);

  --radius: 18px;
  --container: 1100px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }

/* Smooth scrolling for the whole page */
html{
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

/* Subtle background blobs for oomf */
body::before,
body::after{
  content: "";
  position: fixed;
  z-index: -1;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  filter: blur(40px);
  opacity: .55;
  pointer-events: none;
}
body::before{
  top: -160px;
  left: -180px;
  background: radial-gradient(circle at 30% 30%, rgba(255,145,255,.55), rgba(234,242,255,0) 60%),
              radial-gradient(circle at 70% 60%, rgba(255,222,89,.55), rgba(234,242,255,0) 58%);
}
body::after{
  bottom: -220px;
  right: -180px;
  background: radial-gradient(circle at 30% 30%, rgba(255,117,5,.45), rgba(234,242,255,0) 62%),
              radial-gradient(circle at 70% 60%, rgba(55,49,129,.30), rgba(234,242,255,0) 62%);
}

a{ color: var(--primary); text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section{
  padding: 72px 0;
}

.section-alt{
  background: rgba(255,255,255,.55);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head{
  max-width: 920px;
  margin-bottom: 22px;
}
.section-head h2{
  margin: 0 0 8px 0;
  font-size: clamp(1.5rem, 2vw, 2rem);
  letter-spacing: -0.02em;
}
.section-head h4{
  margin: 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.5;
}
.section-head p{
  margin: 0;
  color: var(--muted);
}

h1{
  font-size: clamp(2.75rem, 5.5vw, 4.1rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 12px 0 12px 0;
}
h2{ letter-spacing: -0.02em; }
h3{
  margin: 0 0 8px 0;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
p{ margin: 0 0 14px 0; }

.lead{
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  color: var(--muted);
  max-width: 62ch;
}

.pill{
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,222,89,.55);
  border: 1px solid rgba(255,222,89,.65);
  color: rgba(55,49,129,.95);
  font-weight: 900;
  font-size: .92rem;
}

stripe-buy-button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(55,49,129,.22);
  background: var(--accent);
  color: #111;
  font-weight: 900;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(255,117,5,.22);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
  will-change: transform;
}
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(55,49,129,.22);
  background: var(--accent);
  color: #111;
  font-weight: 900;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(255,117,5,.22);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
  will-change: transform;
}
.btn:hover{
  text-decoration: none;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 34px rgba(27,27,31,.14);
  filter: brightness(0.985);
}
.btn:active{ transform: translateY(0px); }

.btn-ghost{
  background: rgba(255,255,255,.82);
  color: var(--primary);
  box-shadow: none;
}
.btn-small{
  padding: 10px 14px;
  font-size: .95rem;
}

.link{
  display: inline-block;
  margin-top: 8px;
  font-weight: 900;
}

.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  will-change: transform;
}
.card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(27,27,31,.14);
  border-color: rgba(55,49,129,.28);
}
.card.soft{
  background: rgba(255,255,255,.75);
  box-shadow: none;
}

@media (hover: none){
  .btn:hover, .card:hover{
    transform: none;
    box-shadow: none;
  }
}

.muted{ color: var(--muted); }
.fineprint{ font-size: .92rem; color: var(--muted); margin-top: 12px; }

.grid-2{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.bullets{
  margin: 0;
  padding-left: 18px;
}
.bullets li{ margin: 8px 0; }

.checklist{
  list-style: none;
  padding: 0;
  margin: 0;
}
.checklist li{
  position: relative;
  padding-left: 28px;
  margin: 10px 0;
}
.checklist li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,222,89,.65);
  border: 1px solid rgba(255,222,89,.8);
  color: rgba(55,49,129,.95);
  font-weight: 900;
  font-size: .9rem;
}

.meta{
  list-style: none;
  padding: 0;
  margin: 12px 0 0 0;
  color: var(--muted);
}
.meta li{ margin: 8px 0; }

.callout{
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(55,49,129,.18);
  background: linear-gradient(135deg, rgba(255,145,255,.18), rgba(234,242,255,.75));
}

/**********************************************/
/* Hero */
.hero{
  padding-top: 102px;
}
.hero-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}

.highlight-statement{
  max-width: 820px;
  margin: 48px auto;
  text-align: center;
  font-size: 1.45rem;
  line-height: 1.55;
  font-weight: 650;
  color: rgba(55,49,129,.95);
  position: relative;
}
.highlight-statement::before{
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  background: #ff7505;
  margin: 0 auto 18px;
  border-radius: 999px;
}

@media (max-width: 600px){
  .highlight-statement{
    font-size: 1.1rem;
    margin: 32px auto;
    padding: 14px 16px;
  }
  .hero{
    padding-top: 90px;
  }
}

.card-title{
  margin: 0;
  font-size: 1.1rem;
}
.card-subtitle{
  margin: 6px 0 0 0;
  color: var(--muted);
}

.cta-row{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.card-elevated{
  background: rgba(255,255,255,.86);
  box-shadow: 0 24px 60px rgba(27,27,31,.14);
}

.hero-card-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

/* Hero card stack animation */
.card-stack{
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 420px;
  margin-left: auto;
}

.stack-card{
  position: absolute;
  inset: 0;
  transform-origin: 20% 20%;
  backface-visibility: hidden;
}

.stack-b{
  transform: translateY(10px) scale(.98);
  opacity: .95;
  filter: saturate(.95);
  z-index: 1;
}

.stack-c{
  transform: translateY(18px) scale(.96);
  opacity: .9;
  filter: saturate(.9);
  z-index: 0;
}

.stack-a{
  z-index: 2;
}

.stack-a, .stack-b, .stack-c{
  animation: stackCycle 9s infinite ease-in-out;
}

.stack-a{ animation-delay: 0s; }
.stack-b{ animation-delay: 3s; }
.stack-c{ animation-delay: 6s; }

@keyframes stackCycle{
  0%{
    transform: translateY(0) scale(1) rotate(0deg);
    z-index: 2;
  }
  45%{
    transform: translateY(0) scale(1) rotate(0deg);
    z-index: 2;
  }
  60%{
    transform: translateY(-14px) scale(1.02) rotate(-1.5deg);
    z-index: 3;
  }
  75%{
    transform: translateY(16px) scale(.96) rotate(2.2deg);
    z-index: 0;
    opacity: .9;
  }
  100%{
    transform: translateY(18px) scale(.96) rotate(2.2deg);
    z-index: 0;
    opacity: .9;
  }
}

@media (max-width: 520px){
  .card-stack{
    max-width: 100%;
    height: 400px;
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce){
  .stack-a, .stack-b, .stack-c{
    animation: none;
  }
  .stack-b{ transform: translateY(10px) scale(.98); }
  .stack-c{ transform: translateY(18px) scale(.96); }
}

.card-stack::before{
  content: "";
  position: absolute;
  inset: 12px 18px auto 18px;
  height: 85%;
  border-radius: 22px;
  background: rgba(55,49,129,.06);
  filter: blur(18px);
  z-index: -1;
}

/**********************************************/
/* PACKAGES */
.section-note{
  margin-top: 10px;
  color: var(--muted);
}

.packages-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 18px;
}

@media (min-width: 860px){
  .packages-grid{
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: stretch;
  }
}

.package-card{
  display: flex;
  flex-direction: column;
  height: 100%;
}

.package-foot{
  margin-top: 10px;
}

.chip{
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(55,49,129,.16);
  background: rgba(234,242,255,.7);
  color: rgba(55,49,129,.95);
  font-weight: 900;
  font-size: .9rem;
}

.package-featured{
  border-color: rgba(255,117,5,.55);
  box-shadow: 0 26px 70px rgba(255,117,5,.14);
  position: relative;
}
.featured-top{
  display: flex;
  justify-content: flex-end;
  margin-bottom: 6px;
}
.featured-pill{
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,117,5,.14);
  border: 1px solid rgba(255,117,5,.35);
  color: rgba(55,49,129,.98);
  font-weight: 950;
  font-size: .9rem;
}

.price-line{
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: nowrap;
}

.main-price{
  font-size: 1.5rem;
  font-weight: 950;
  color: var(--primary);
}

.original-price{
  font-size: .85rem;
  color: rgba(27,27,31,.6);
}

.dates-card{
  margin-top: 18px;
  padding: 22px;
}

.dates-card-head{
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.dates-card-title{
  margin: 0;
  font-weight: 950;
  color: rgba(55,49,129,.98);
}

.dates-card-sub{
  margin: 0;
  color: var(--muted);
}

.date-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(55,49,129,.16);
  background: rgba(255,255,255,.75);
  margin-bottom: 10px;
}

.date-info{
  display: grid;
  gap: 2px;
}

.date-main{
  margin: 0;
  font-weight: 950;
  color: rgba(55,49,129,.98);
}

.date-sub{
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}

.date-actions{
  display: flex;
  gap: 10px;
  align-items: center;
}
.date-actions .btn{ white-space: nowrap; }

.one-to-one-note{
  margin-top: 12px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(55,49,129,.16);
  background: rgba(255,145,255,.12);
}
.one-to-one-sub{
  margin: 0;
  color: rgba(27,27,31,.70);
  font-size: .95rem;
  font-weight: 650;
}

@media (max-width: 620px){
  .date-row{
    flex-direction: column;
    align-items: flex-start;
  }
  .date-actions{
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .date-actions .btn{ width: 100%; }
}

/**********************************************/
/* About */
.about{
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 24px;
  align-items: start;
}
.about-copy h2{
  margin-top: 0;
}
.about-name{
  margin: 6px 0 20px 0;
  font-size: .9rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: rgba(27,27,31,.55);
}

.about-photo img{
  width: 300px;
  height: 300px;
  border-radius: 999px;
  object-fit: cover;
  border: 4px solid rgba(255,222,89,.75);
  box-shadow: 0 20px 40px rgba(55,49,129,.18);
}
.about-copy p{ color: rgba(27,27,31,.72); }

.about-links{
  margin-top: 16px;
  font-weight: 750;
}
.about-links a{
  color: var(--primary);
  text-decoration: none;
}
.about-links a:hover{ text-decoration: underline; }

/**********************************************/
/* REVIEWS layout (photo behavior) */
.review-layout{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  width: 100%;
}

/* Desktop: photo next to text, photo height matches text block height */
.review-card.has-photo .review-layout{
  grid-template-columns: 160px 1fr;
  align-items: stretch;
}

/* Desktop photo container */
.review-media{
  overflow: hidden;
  border-radius: 16px;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.10);
}

/* Make image fill container (no tiny images) */
.review-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hide the mobile meta photo by default (desktop) */
.review-meta-photo--mobile{
  display: none;
}

/* Desktop photo visible by default */
.review-media--desktop{
  display: block;
}

/* Mobile: hide side photo, show larger square next to name/title only */
@media (max-width: 560px){
  .review-card.has-photo .review-layout{
    grid-template-columns: 1fr;
  }

  .review-media--desktop{
    display: none;
  }

  .review-meta-photo--mobile{
    display: block;
    width: 156px;
    height: 156px;
    border-radius: 22px;
    overflow: hidden;
    background: rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.10);
    flex: 0 0 156px;
  }

  .review-meta-photo--mobile img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}

/**********************************************/
/* REVIEWS carousel */
.reviews{
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
}

.carousel{
  overflow: hidden;
  border-radius: 20px;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

.carousel-track{
  display: flex;
  transition: transform 320ms ease;
  will-change: transform;
  align-items: flex-start;
}

.review-card{
  flex: 0 0 100%;
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(55,49,129,.16);
  background: rgba(255,255,255,.82);
  padding: 22px 22px 18px;
  box-shadow: 0 18px 44px rgba(55,49,129,.10);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: flex-start;
  gap: 14px;
  position: relative;
}

.review-quote{
  margin: 0;
  color: rgba(55,49,129,.98);
  font-weight: 700;
  line-height: 1.55;
  font-size: 1.05rem;
  padding-left: 14px;
  border-left: 4px solid rgba(255,117,5,.75);
}

.review-card::before{
  content: "“";
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 64px;
  line-height: 1;
  color: rgba(255,145,255,.18);
  font-weight: 900;
  pointer-events: none;
}

/* Meta supports optional portrait next to the text */
.review-meta{
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(55,49,129,.12);
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Text block for name + role */
.review-meta-text{
  display: grid;
  gap: 2px;
}

.review-name{
  margin: 0;
  font-weight: 950;
  color: rgba(27,27,31,.92);
}
.review-role{
  margin: 0;
  color: rgba(27,27,31,.64);
  font-size: .95rem;
}

.carousel-btn{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(55,49,129,.18);
  background: rgba(255,255,255,.85);
  color: rgba(55,49,129,.98);
  font-size: 1.7rem;
  font-weight: 950;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}
.carousel-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(55,49,129,.12);
}
.carousel-btn:active{ transform: translateY(0px); }

.carousel-dots{
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.carousel-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(55,49,129,.22);
  background: rgba(255,255,255,.75);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.carousel-dot:hover{ transform: scale(1.1); }
.carousel-dot.is-active{
  background: rgba(255,117,5,.9);
  border-color: rgba(255,117,5,.95);
}

@media (min-width: 1100px){
  .carousel{ max-width: 780px; }
}

@media (max-width: 520px){
  .reviews{ grid-template-columns: 1fr; }
  .carousel-btn{ display: none; }
  .carousel{ max-width: 100%; }
}

/**********************************************/
/* FAQ */
.faq-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.faq{
  background: rgba(255,255,255,.75);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
}
.faq summary{
  cursor: pointer;
  font-weight: 950;
  color: rgba(55,49,129,.98);
}
.faq p{ margin-top: 10px; color: var(--muted); }

/**********************************************/
/* Forms */
.form label{
  display: grid;
  gap: 6px;
  font-weight: 900;
  color: rgba(55,49,129,.95);
  margin-bottom: 12px;
}
.form input,
.form select,
.form textarea{
  border: 1px solid rgba(55,49,129,.22);
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,.9);
  color: var(--ink);
  font-size: 1rem;
  outline: none;
}
.form input:focus,
.form select:focus,
.form textarea:focus{
  border-color: rgba(55,49,129,.5);
  box-shadow: 0 0 0 4px rgba(255,145,255,.18);
}
.form textarea {
  resize: vertical;
}
.form-row{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.contact-alt{
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed rgba(55,49,129,.18);
  text-align: center;
  color: var(--muted);
}

.contact-alt a{
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
}

.contact-alt a:hover{
  text-decoration: underline;
}

.contact-success{
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,222,89,.55);
  border: 1px solid rgba(255,222,89,.75);
  color: rgba(55,49,129,.95);
  font-weight: 600;
}
.req-star{
  color: var(--accent);
  font-weight: 900;
  margin-left: 4px;
}

.required-hint{
  margin: 0 0 14px 0;
  color: var(--muted);
  font-size: .95rem;
}

.form input:invalid,
.form select:invalid,
.form textarea:invalid{
  box-shadow: none;
}

.form.submitted input:invalid,
.form.submitted select:invalid,
.form.submitted textarea:invalid{
  border-color: rgba(255,117,5,.85);
  box-shadow: 0 0 0 4px rgba(255,117,5,.18);
  background: rgba(255,117,5,.06);
}

.form.submitted label:has(input:invalid),
.form.submitted label:has(select:invalid),
.form.submitted label:has(textarea:invalid){
  color: rgba(55,49,129,.98);
}

@supports not selector(label:has(input)){
  .form.submitted .is-required input:invalid,
  .form.submitted .is-required textarea:invalid{
    border-color: rgba(255,117,5,.85);
    box-shadow: 0 0 0 4px rgba(255,117,5,.18);
    background: rgba(255,117,5,.06);
  }
}

/**********************************************/
/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(234,242,255,.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
}
.logo{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  letter-spacing: -0.02em;
}
.logo-mark{
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,222,89,.85);
  border: 1px solid rgba(255,222,89,.95);
  color: rgba(55,49,129,.98);
}
.logo-text{ color: rgba(55,49,129,.98); }

.nav{
  display: none;
  align-items: center;
  gap: 14px;
}
.nav a{
  font-weight: 900;
  color: rgba(55,49,129,.95);
  padding: 8px 10px;
  border-radius: 999px;
}
.nav a:hover{
  background: rgba(255,255,255,.65);
  text-decoration: none;
}

.nav-toggle{
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.7);
  cursor: pointer;
}
.nav-toggle span{
  width: 22px;
  height: 2px;
  background: rgba(55,49,129,.95);
  border-radius: 2px;
}

.mobile-nav{
  padding: 16px;
  border-top: 1px solid var(--border);
}

.mobile-nav a{
  display: block;
  padding: 12px 8px;
  font-weight: 950;
  color: rgba(55,49,129,.95);
}

.mobile-nav .btn{
  width: 80%;
  margin-top: 8px;
}

/**********************************************/
/* Footer */
.site-footer{
  padding: 28px 0;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,.55);
}
.footer-inner{
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-inner p{ margin: 0; color: var(--muted); }
.footer-links{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-links a{
  font-weight: 950;
  color: rgba(55,49,129,.95);
}

/**********************************************/
/* Desktop */
@media (min-width: 860px){
  .nav{ display: inline-flex; }
  .nav-toggle{ display: none; }
  .mobile-nav{ display: none; }

  .grid-2{ grid-template-columns: 1fr 1fr; }

  .hero-grid{
    grid-template-columns: 1.25fr .75fr;
    gap: 26px;
    align-items: start;
  }

  .form-row{ grid-template-columns: 1fr 1fr; }

  .footer-inner{
    flex-direction: row;
    align-items: center;
  }
}

/**********************************************/
/* Mobile */
@media (max-width: 860px){
  .about{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-photo{
    display: flex;
    justify-content: center;
  }

  .about-photo img{
    width: 260px;
    height: 260px;
  }
}

.lang-switch{
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.lang-switch .lang{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 18px;
  line-height: 1;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.7);
}

.lang-switch .lang.is-active{
  border-color: rgba(0,0,0,0.28);
  background: rgba(255,255,255,1);
}

.lang-switch.mobile{
  margin-top: 12px;
}
