*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blush-pale: #F5ECEB;
  --blush-soft: #EDD9D5;
  --blush-mid: #D9B8B2;
  --blush-rose: #E2C4BE;
  --rose-deep: #B07A74;
  --rose-dark: #7A4A44;
  --bark: #2E1A18;
  --sage: #8FAE87;
  --mist: #D6E2D0;
  --breeze: #E8EEE6;
  --white: #FEFCFC;
  --off-white: #FAF6F5;
  --border: #E8D8D5;
  --text: #2E1A18;
  --text-md: #6B4040;
  --text-lt: #9E7870;
  --overlay-dark: rgba(46, 26, 24, 0.85);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito Sans', sans-serif;
  background: var(--off-white);
  color: var(--text);
  font-size: 15.5px;
  line-height: 1.8;
  overflow-x: hidden;
  font-weight: 300;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  height: 80px;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all .4s ease;
  background: rgba(254, 252, 252, .97);
  backdrop-filter: blur(20px);
  border-bottom: none;
}

nav.hero-mode {
  background: transparent;
}

nav.solid {
  background: rgba(254, 252, 252, .97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.brand-tagline {
  font-size: 8.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  font-weight: 300;
  margin-top: 4px;
  font-family: 'Nunito Sans', sans-serif;
  transition: color .4s;
  white-space: nowrap;
}

nav.solid .brand-tagline {
  color: var(--text-lt);
}

.brand-logo {
  height: 55px;
  width: auto;
  transition: opacity .3s;
  filter: brightness(0) invert(1);
  object-fit: contain;
}

nav.hero-mode .brand-logo {
  filter: brightness(0) invert(1);
}

nav.solid .brand-logo {
  filter: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-links li a {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rose-dark);
  padding: 9px 16px;
  transition: color .2s;
  text-decoration: none;
  display: block;
}

.nav-links li a:hover {
  color: var(--bark);
}

nav.hero-mode .nav-links li a {
  color: rgba(255, 255, 255, .88);
}

nav.hero-mode .nav-links li a:hover {
  color: #fff;
}

.dd-wrap {
  position: relative;
}

.dd-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  min-width: 230px;
  box-shadow: 0 16px 48px rgba(46, 26, 24, .12);
  opacity: 0;
  visibility: hidden;
  transition: all .2s;
  padding: 10px 0;
}

.dd-wrap:hover .dd-menu {
  opacity: 1;
  visibility: visible;
}

.dd-menu a {
  display: block !important;
  width: 100% !important;
  text-align: left !important;
  padding: 12px 24px !important;
  color: var(--rose-dark) !important;
  text-transform: none !important;
  letter-spacing: .04em !important;
  font-size: 13px !important;
  border-radius: 0 !important;
}

.dd-menu a:hover {
  background: var(--blush-pale) !important;
}

.nav-cta {
  background: var(--rose-deep) !important;
  color: #fff !important;
  padding: 10px 26px !important;
  border-radius: 40px !important;
  letter-spacing: .1em !important;
  font-size: 10.5px !important;
}

nav.hero-mode .nav-cta {
  background: rgba(255, 255, 255, .2) !important;
  border: 1px solid rgba(255, 255, 255, .35) !important;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 20px;
}

nav.hero-mode .lang-btn {
  color: var(--off-white);
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rose-dark);
  padding: 6px 10px;
  transition: color .2s, opacity .2s;
  opacity: .5;
}

.lang-btn.active {
  opacity: 1;
  font-weight: 500;
}

.lang-btn:hover {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1509316785289-025f5b846b35?w=1920&q=90');
  background-size: cover;
  background-position: center 35%;
  animation: hBreath 18s ease-in-out infinite alternate;
}

@keyframes hBreath {
  from {
    transform: scale(1)
  }

  to {
    transform: scale(1.04) translateY(-8px)
  }
}

.hero-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(185deg, rgba(46, 26, 24, .45) 0%, rgba(46, 26, 24, .38) 28%, rgba(46, 26, 24, .68) 65%, rgba(46, 26, 24, .90) 100%);
}

.hero-body {
  position: relative;
  z-index: 2;
  padding: 100px 80px 50px;
  max-width: 860px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 34px;
  font-size: 10.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .92);
  font-weight: 300;
}

.hk-line {
  width: 32px;
  height: 1px;
  background: var(--blush-mid);
  display: inline-block;
  flex-shrink: 0;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 8vw, 104px);
  font-weight: 300;
  line-height: .98;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 26px;
}

.hero h1 em {
  font-style: italic;
  color: var(--blush-rose);
}

.hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, .93);
  max-width: 460px;
  line-height: 1.9;
  margin-bottom: 46px;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 86px;
}

.hero-bar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.hbi {
  padding: 22px 30px;
  border-right: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hbi:last-child {
  border-right: none;
}

.hbi-lbl {
  font-size: 9px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .48);
  font-weight: 400;
}

.hbi-val {
  font-size: 13px;
  color: rgba(255, 255, 255, .9);
  font-weight: 300;
}

.btn {
  display: inline-block;
  cursor: pointer;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-radius: 40px;
  padding: 14px 38px;
  border: none;
  transition: all .3s;
  text-decoration: none;
}

.btn-dark {
  background: var(--rose-dark);
  color: #fff;
}

.btn-dark:hover {
  background: var(--bark);
  transform: translateY(-2px);
}

.btn-outline-w {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .4);
}

.btn-outline-w:hover {
  border-color: rgba(255, 255, 255, .75);
  background: rgba(255, 255, 255, .1);
}

.btn-outline {
  background: transparent;
  color: var(--rose-dark);
  border: 1px solid var(--blush-mid);
}

.btn-outline:hover {
  background: var(--blush-pale);
  border-color: var(--rose-deep);
}

.btn-blush {
  background: var(--blush-mid);
  color: var(--rose-dark);
}

.btn-blush:hover {
  background: var(--blush-soft);
  transform: translateY(-2px);
}

.sec {
  padding: 112px 80px;
}

.sec-white {
  background: var(--white);
}

.sec-blush {
  background: var(--blush-pale);
}

.sec-breeze {
  background: var(--breeze);
}

.sec-dark {
  background: var(--rose-dark);
}

.kicker {
  font-size: 9.5px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--rose-deep);
  display: block;
  margin-bottom: 16px;
  font-weight: 400;
}

.kicker-lt {
  color: var(--blush-mid);
}

.kicker-sage {
  color: var(--sage);
}

h2.c {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.2vw, 58px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--rose-dark);
  margin-bottom: 20px;
}

h2.c em {
  font-style: italic;
  color: var(--rose-deep);
}

h2.c.on-dark {
  color: #fff;
}

h2.c.on-dark em {
  color: var(--blush-mid);
}

h3.c {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 400;
  line-height: 1.18;
  color: var(--rose-dark);
  margin-bottom: 14px;
}

h3.c em {
  font-style: italic;
  color: var(--rose-deep);
}

.lead {
  font-size: 17px;
  color: var(--text-md);
  line-height: 1.9;
  font-weight: 300;
}

.body-copy {
  font-size: 14.5px;
  color: var(--text-lt);
  line-height: 1.9;
  font-weight: 300;
}

.hr {
  width: 44px;
  height: 1px;
  background: var(--blush-mid);
  margin: 20px 0;
}

.hr-lt {
  background: rgba(255, 255, 255, .35);
}

.hr-rose {
  background: var(--rose-deep);
}

.g2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.g3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}

.split-photo {
  background-size: cover;
  background-position: center;
}

.split-body {
  padding: 80px 68px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.band {
  height: 380px;
  position: relative;
  overflow: hidden;
}

.band-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.band-ov {
  position: absolute;
  inset: 0;
}

.band-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 80px;
  text-align: left;
  max-width: 900px;
}

.accent-strip {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.accent-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.pg-top {
  padding: 150px 80px 96px;
  background: linear-gradient(150deg, var(--blush-soft), var(--blush-pale));
}

.pg-top-inner {
  max-width: 660px;
}

.pg-top h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 300;
  line-height: 1.04;
  margin-bottom: 20px;
  color: var(--rose-dark);
}

.pg-top h1 em {
  font-style: italic;
  color: var(--rose-deep);
}

.pg-top-desc {
  font-size: 17px;
  line-height: 1.85;
  font-weight: 300;
  max-width: 560px;
  color: var(--text-md);
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px 34px;
  border-radius: 14px;
  transition: transform .3s, box-shadow .3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 48px rgba(176, 122, 116, .13);
}

.c-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blush-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 20px;
}

.card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--rose-dark);
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  color: var(--text-lt);
  line-height: 1.8;
}

.c-link {
  display: inline-block;
  margin-top: 20px;
  cursor: pointer;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rose-deep);
  background: none;
  border: none;
  border-bottom: 1px solid var(--blush-mid);
  font-family: 'Nunito Sans', sans-serif;
  padding-bottom: 3px;
  transition: color .2s;
  text-decoration: none;
}

.c-link:hover {
  color: var(--rose-dark);
}

.bdg {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 22px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 10px;
}

.bdg-ico {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blush-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 17px;
}

.bdg h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--rose-dark);
  margin-bottom: 2px;
}

.bdg p {
  font-size: 13px;
  color: var(--text-lt);
}

.istrip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.irow {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  border-bottom: 1px solid var(--border);
}

.irow:last-child {
  border-bottom: none;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rose-deep);
  flex-shrink: 0;
}

.lbl {
  color: var(--text-lt);
  font-size: 12.5px;
  min-width: 160px;
  font-weight: 300;
}

.val {
  color: var(--rose-dark);
  font-weight: 400;
  font-size: 14px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag {
  font-size: 12px;
  padding: 6px 16px;
  border-radius: 20px;
  background: var(--blush-pale);
  color: var(--rose-dark);
  border: 1px solid var(--border);
  font-weight: 300;
}

.tag-sage {
  background: var(--breeze);
  border-color: #BDD4B8;
  color: #3A5C38;
}

.langs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.lang-chip {
  padding: 7px 20px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 13px;
  color: var(--rose-dark);
  font-weight: 300;
}

.nihb-dark {
  background: linear-gradient(135deg, var(--rose-dark), #5C3030);
  border-radius: 14px;
  padding: 42px;
  color: #fff;
  margin-bottom: 16px;
}

.nihb-dark h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  margin-bottom: 12px;
}

.nihb-dark p {
  font-size: 14px;
  line-height: 1.85;
  opacity: .75;
  max-width: 460px;
}

.photo-ph {
  background: var(--blush-soft);
  border-radius: 14px;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--text-lt);
  text-align: center;
  padding: 32px;
  position: relative;
}

.photo-ph::before {
  content: '';
  position: absolute;
  inset: 18px 0 0 18px;
  border: 1px solid rgba(176, 122, 116, .22);
  border-radius: 12px;
}

.photo-ph svg {
  opacity: .25;
}

.fg {
  margin-bottom: 22px;
}

.fg label {
  display: block;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-lt);
  margin-bottom: 8px;
  font-weight: 400;
}

.fg input,
.fg textarea,
.fg select {
  width: 100%;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.fg input:focus,
.fg textarea:focus,
.fg select:focus {
  border-color: var(--rose-deep);
  box-shadow: 0 0 0 3px rgba(176, 122, 116, .14);
}

.fg textarea {
  min-height: 130px;
  resize: vertical;
}

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

.step {
  display: flex;
  gap: 24px;
  margin-bottom: 34px;
}

.step-n {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--blush-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--rose-deep);
}

.step h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 400;
  color: var(--rose-dark);
  margin-bottom: 5px;
}

.step p {
  font-size: 14px;
  color: var(--text-lt);
  line-height: 1.8;
}

.slist {
  list-style: none;
}

.slist li {
  padding: 10px 0 10px 22px;
  position: relative;
  font-size: 14.5px;
  color: var(--text-lt);
  border-bottom: 1px solid var(--border);
}

.slist li:first-child {
  border-top: 1px solid var(--border);
}

.slist li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--rose-deep);
  font-size: 20px;
  line-height: 1.3;
}

footer {
  background: var(--bark);
  color: #fff;
  padding: 72px 80px 44px;
}

.ft-g {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}

.ft-logo {
  height: 60px;
  width: auto;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
  object-fit: contain;
}

.ft-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 6px;
}

.ft-tag {
  font-size: 9px;
  letter-spacing: .24em;
  text-transform: uppercase;
  opacity: .36;
  margin-bottom: 14px;
}

.ft-desc {
  font-size: 13px;
  opacity: .52;
  line-height: 1.9;
  font-weight: 300;
}

.ft-col h6 {
  font-size: 9px;
  letter-spacing: .24em;
  text-transform: uppercase;
  opacity: .34;
  margin-bottom: 16px;
}

.ft-col ul {
  list-style: none;
}

.ft-col li {
  margin-bottom: 10px;
}

.ft-col li a,
.ft-col li span {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 13px;
  opacity: .58;
  color: #fff;
  text-decoration: none;
  transition: opacity .2s;
  padding: 0;
  font-weight: 300;
  display: block;
}

.ft-col li span.email-display {
  font-size: 15px;
  opacity: 1;
  color: #fff;
  font-weight: 300;
}

.ft-col li a:hover {
  opacity: 1;
}

.ft-line {
  border-top: 1px solid rgba(255, 255, 255, .09);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  opacity: .3;
  letter-spacing: .04em;
}

/* ── Hamburger (hidden on desktop) ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 9100;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: rgba(255,255,255,.9);
  border-radius: 2px;
  transition: all .3s;
}
nav.solid .nav-toggle span {
  background: var(--rose-dark);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Tablet (max 1100px) ── */
@media(max-width:1100px) {
  nav { padding: 0 32px; }
  .sec { padding: 88px 48px; }
  .hero-body { padding: 0 48px 60px; }
  .band-inner { padding: 0 48px; }
  footer { padding: 64px 48px 40px; }
  .pg-top { padding: 140px 48px 80px; }
}

/* ── Mobile nav + layout (max 900px) ── */
@media(max-width:900px) {
  nav {
    padding: 0 22px;
    height: 70px;
  }

  /* Show hamburger, hide nav links by default */
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
    z-index: 9050;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: all;
  }

  .nav-links li a {
    font-size: 13px;
    color: rgba(255,255,255,.85) !important;
    padding: 14px 32px;
    letter-spacing: .12em;
  }

  .nav-links li a:hover { color: #fff !important; }

  .nav-cta {
    background: var(--rose-deep) !important;
    border: none !important;
  }

  .dd-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background: rgba(255,255,255,.06);
    border: none;
    border-radius: 8px;
    min-width: 0;
    width: 200px;
  }

  .dd-menu a {
    text-align: center !important;
    color: rgba(255,255,255,.7) !important;
    font-size: 12px !important;
  }

  .lang-switch { display: none; }

  /* Brand tagline hide on mobile */
  .brand-tagline { display: none; }

  /* Sections */
  .sec { padding: 64px 22px; }

  .g2, .g3, .ft-g, .split {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-body { padding: 0 22px 100px; }

  .hero-bar { grid-template-columns: 1fr 1fr; }

  .pg-top { padding: 120px 22px 68px; }

  .band {
    height: auto;
    min-height: 320px;
  }

  .band-inner { padding: 48px 22px; }

  footer { padding: 48px 22px 36px; }

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

  .split-body { padding: 52px 26px; }

  .split-photo { min-height: 260px; }

  .ft-g { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ── Small mobile (max 480px) ── */
@media(max-width:480px) {
  .hero-bar { grid-template-columns: 1fr; }

  .hbi { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
  .hbi:last-child { border-bottom: none; }

  .ft-g { grid-template-columns: 1fr; }

  .hero h1 { font-size: clamp(42px, 11vw, 64px); }

  h2.c { font-size: clamp(30px, 8vw, 44px); }

  .btn { padding: 13px 28px; font-size: 10px; }

  .sec { padding: 52px 18px; }

  .band-inner { padding: 40px 18px; }

  footer { padding: 40px 18px 28px; }

  .pg-top { padding: 100px 18px 60px; }
}