/* ============================================================
   Gunjan Beauty World — Contact Page
   FINAL RESPONSIVE CSS
   Reference system: Services Page CSS
   Breakpoints: Desktop • 1200 • 1000 • 900 • 680 • 480 • 380
   ============================================================ */

:root {
  --ivory: #F4EEE7;
  --paper: #F8F7F5;
  --gold: #CFA57A;
  --gold2: #D5AD84;
  --ink: #111;
  --muted: rgba(102,102,102,.8);
  --espresso: #2A2019;
  --ease: cubic-bezier(.16,1,.3,1);
  --font-display: "Urbanist", sans-serif;
  --font-body: "outfit", sans-serif;
  --container-max: 1440px;
}

/* ============================================================
   RESET / GLOBAL
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

html,
body {
  min-width: 320px;
}

body {
  font-family: "Urbanist", sans-serif;
  background: var(--ivory);
  color: var(--ink);
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

iframe {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.container {
  width: min(var(--container-max), calc(100% - 64px));
  margin-inline: auto;
}

.section {
  position: relative;
}

.eyebrow {
  font-family: "Urbanist", sans-serif;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.section-title {
  font-family: "Urbanist", sans-serif;
  font-size: 48px;
  line-height: 56px;
  font-weight: 600;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.section-copy {
  font-family: "outfit", sans-serif;
  font-weight: 300;
  font-size: clamp(15px,1.6vw,18px);
  line-height: 26px;
  color: var(--muted);
  max-width: 700px;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */

.hero-nav {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(0,1fr) auto minmax(0,1fr);
  align-items: center;
  column-gap: 24px;
  padding: 16px clamp(20px,4vw,56px);
  background: linear-gradient(180deg,rgba(15,10,6,.55),rgba(15,10,6,0));
  transition: background-color .25s ease,padding .25s ease;
}

.hero-logo {
  grid-column: 1;
  justify-self: start;
  min-width: 0;
}

.hero-logo img {
  width: auto;
  height: clamp(42px,4vw,54px);
  max-width: 150px;
  object-fit: contain;
}

.hero-nav.scrolled {
  position: fixed;
  background: rgba(30,22,16,.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-block: 14px;
}

.hero-links {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(10px,1.6vw,22px);
  grid-column: 2;
  justify-self: center;
  min-width: 0;
  flex-wrap: nowrap;
}

.hero-links a {
  font-family: "Urbanist", sans-serif;
  font-size: clamp(14px,1.1vw,16px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ivory);
  position: relative;
  white-space: nowrap;
}

.hero-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: #E4C793;
  transition: width .3s var(--ease);
}

.hero-links a:hover::after,
.hero-links .active::after {
  width: 100%;
}

.hero-right {
  display: flex;
  align-items: center;
  gap: clamp(12px,1.8vw,24px);
  grid-column: 3;
  justify-self: end;
  min-width: 0;
}

.hero-login {
  font-family: "outfit", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: -.02em;
  text-decoration: none;
  color: var(--ivory);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  white-space: nowrap;
}

.hero-login::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #E4C793;
  transition: width .3s var(--ease);
}

.hero-login:hover::after {
  width: 100%;
}

.hero-login:hover {
  color: #E4C793;
}

.hero-login .login-icon {
  font-size: 16px;
  line-height: 1;
  display: inline-block;
  transition: transform .3s var(--ease),color .3s var(--ease);
}

.hero-login:hover .login-icon {
  transform: translate(2px,-2px);
  color: #E4C793;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 12px 24px;
  border: 0;
  border-radius: 10px;
  background: var(--gold);
  color: var(--paper);
  text-decoration: none;
  font-family: "outfit", sans-serif;
  font-weight: 300;
  font-size: 17px;
  white-space: nowrap;
  transition: background-color .25s var(--ease),transform .25s var(--ease),box-shadow .25s var(--ease);
}

.hero-cta:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,.25);
}

.btn-label {
  display: inline-block;
}

.hero-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: rgba(0,0,0,.2);
  border-radius: 8px;
  padding: 9px;
  gap: 5px;
  flex-direction: column;
}

.hero-toggle span {
  width: 23px;
  height: 1px;
  background: var(--ivory);
}

.hero-menu {
  display: none;
}

/* ============================================================
   PAGE BANNER
   ============================================================ */

.page-banner {
  position: relative;
  min-height: clamp(420px,42vw,600px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #17110c;
  color: var(--ivory);
}

.page-banner-media {
  position: absolute;
  inset: 0;
}

.page-banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.page-banner-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,rgba(15,10,6,.62) 0%,rgba(15,10,6,.42) 50%,rgba(12,8,5,.72) 100%);
}

.page-banner .container {
  position: relative;
  z-index: 2;
}

.page-banner-eyebrow {
  font-family: "Urbanist", sans-serif;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--ivory);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.page-banner h1 {
  max-width: 1100px;
  font-family: "Urbanist", sans-serif;
  font-size: clamp(34px,6.2vw,56px);
  line-height: 1.08;
  font-weight: 600;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

/* ============================================================
   CONTACT INTRO
   ============================================================ */

.who-we-are {
  padding: clamp(64px,8vw,110px) 0 clamp(20px,3vw,30px);
  background: var(--ivory);
}

.who-we-are .section-title {
  margin-bottom: 12px;
  text-align: center;
}

.who-we-are .section-copy {
  margin-inline: auto;
  text-align: center;
}

/* ============================================================
   CONTACT MAIN
   ============================================================ */

.contact-main {
  padding: clamp(20px,5vw,40px) 0 clamp(70px,9vw,140px);
  background: var(--ivory);
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,.96fr);
  gap: clamp(20px,2.5vw,32px);
  align-items: stretch;
}

/* Form card */
.contact-form-card {
  min-width: 0;
  background: rgba(207,165,122,.20);
  border: 1px solid rgba(207,165,122,.2);
  border-radius: 18px;
  padding: clamp(20px,2.6vw,32px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.form-group label {
  font-family: "Urbanist", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  background: rgba(207,165,122,.20);
  border: 1px solid rgba(207,165,122,.35);
  border-radius: 8px;
  color: var(--ink);
  font-family: "outfit", sans-serif;
  font-size: 15px;
  transition: border-color .25s var(--ease),background .25s var(--ease),box-shadow .25s var(--ease);
}

.form-group input,
.form-group select {
  height: 48px;
  padding: 0 16px;
}

.form-group textarea {
  min-height: 130px;
  padding: 13px 16px;
  resize: vertical;
  line-height: 1.5;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(17,17,17,.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(207,165,122,.30);
  box-shadow: 0 0 0 3px rgba(207,165,122,.10);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23CFA57A'%3E%3Cpath d='M5.5 7.5l4.5 5 4.5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 38px;
}

.form-submit {
  width: 100%;
  min-height: 48px;
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  border: 0;
  border-radius: 12px;
  background: var(--gold);
  color: var(--ivory);
  font-family: "outfit", sans-serif;
  font-weight: 400;
  font-size: 16px;
  transition: background-color .3s var(--ease),transform .3s var(--ease),box-shadow .3s var(--ease);
}

.form-submit:hover {
  background: #B8895C;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(42,31,20,.12);
}

.form-submit:active {
  transform: translateY(0);
}

.submit-arrow {
  transform: rotate(0deg);
}

.form-status {
  min-height: 1.2em;
  font-family: "outfit", sans-serif;
  font-size: 14px;
  color: var(--muted);
}

.form-status.is-success {
  color: #5A7D4A;
}

/* Info column */
.contact-info-col {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  min-width: 0;
  background: rgba(207,165,122,.20);
  border: 1px solid rgba(207,165,122,.20);
  border-radius: 18px;
  padding: clamp(20px,2.6vw,32px);
}

.info-card-title {
  font-family: "Urbanist", sans-serif;
  font-size: clamp(18px,1.8vw,20px);
  line-height: 1.25;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
  padding: 14px 0;
  border-top: 1px solid rgba(207,165,122,.30);
}

.info-row:first-of-type {
  border-top: none;
  padding-top: 0;
}

.info-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ivory);
  border-radius: 8px;
  color: var(--gold);
}

.info-label {
  display: block;
  font-family: "Urbanist", sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  color: rgba(17,17,17,.55);
  text-transform: uppercase;
  letter-spacing: 1.1px;
  margin-bottom: 4px;
}

.info-value {
  display: block;
  min-width: 0;
  font-family: "outfit", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.hours-card {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hours-card .hours-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 12px 0;
  border-top: 1px solid rgba(207,165,122,.30);
}

.hours-row:first-child {
  border-top: none;
  padding-top: 0;
}

.hours-day {
  font-family: "Urbanist", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.hours-time {
  font-family: "outfit", sans-serif;
  font-size: 14px;
  color: var(--muted);
  text-align: right;
}

/* Map */
.contact-map {
  width: 100%;
  margin-top: clamp(24px,3vw,36px);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(207,165,122,.20);
  aspect-ratio: 1200/500;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ============================================================
   FOOTER — SAME AS SERVICES PAGE
   ============================================================ */

.footer {
  background: #D1A77D;
  color: var(--ivory);
  padding: clamp(56px,6vw,72px) 0 30px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand {
  flex: 0 1 300px;
  min-width: 0;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  flex: 1;
  flex-wrap: wrap;
  gap: clamp(25px,4vw,55px);
  min-width: 0;
}

.footer-col {
  min-width: 130px;
}

.footer-contact {
  max-width: 230px;
}

.footer-brand img {
  width: 120px;
  height: auto;
  filter: none;
}

.footer-brand p {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  margin-top: 12px;
  font-size: 16px;
  line-height: 22px;
  max-width: 250px;
  color: rgba(244,238,231,.90);
}

.footer-socials {
  display: flex;
  gap: 8px;
  margin-top: 48px;
}

.footer-socials a {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background-color: rgba(244,238,231,.20);
  padding: 12px;
  border-radius: 12px;
}

.footer-socials img {
  width: 20px;
  height: auto;
}

.footer-col h4 {
  font-family: "Urbanist", sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-col a {
  font-family: "outfit", sans-serif;
  font-weight: 400;
  display: block;
  text-decoration: none;
  font-size: 16px;
  line-height: 28px;
  color: rgba(244,238,231,.90);
  transition: transform .3s,color .3s;
}

.footer-col a:hover {
  transform: translateX(5px);
  color: #fff;
}

.footer-contact p {
  font-family: "outfit", sans-serif;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 6px;
}

.footer-divider {
  height: 1px;
  background: rgba(244,238,231,.20);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 22px;
  font-family: "outfit", sans-serif;
  font-size: 16px;
}

.back-top {
  min-height: 44px;
  border: 0;
  background: none;
  color: var(--ivory);
  cursor: pointer;
  font: inherit;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform .25s ease;
}

.back-top:hover {
  transform: translateY(-2px);
}

/* ============================================================
   1200px
   ============================================================ */

@media (max-width:1200px) {
  .hero-nav {
    padding-inline: 32px;
  }

  .hero-links {
    gap: 14px;
  }

  .hero-right {
    gap: 16px;
  }

  .hero-cta {
    padding-inline: 18px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
  }

  .page-banner {
    min-height: 500px;
  }

  .page-banner h1 {
    font-size: 48px;
    line-height: 56px;
  }

  .section-title {
    font-size: 48px;
  }

  .contact-grid {
    gap: 24px;
  }

  .footer-top {
    gap: 45px;
  }

  .footer-links {
    gap: 28px;
  }
}

/* ============================================================
   1000px — MOBILE NAV + SINGLE CONTACT COLUMN
   ============================================================ */

@media (max-width:1000px) {
  .hero-links,
  .hero-right {
    display: none;
  }

  .hero-nav {
    display: flex;
    justify-content: space-between;
  }

  .hero-toggle {
    display: flex;
  }

  .hero-menu {
    position: fixed;
    inset: 0;
    z-index: 30;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding: 80px 24px;
    background: var(--espresso);
    transform: translateY(-100%);
    transition: transform .5s var(--ease);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .hero-menu.open {
    transform: none;
  }

  .hero-menu a {
    color: var(--ivory);
    text-decoration: none;
    font-family: "Urbanist", sans-serif;
    font-size: clamp(25px,6vw,32px);
    line-height: 1.15;
    text-align: center;
  }

  .hero-menu .close {
    position: absolute;
    top: 22px;
    right: 24px;
    width: 44px;
    height: 44px;
    border: 0;
    background: none;
    color: var(--ivory);
    font-size: 34px;
  }

  .page-banner-eyebrow {
    font-size: 15px;
  }

  .page-banner h1 {
    font-size: 48px;
    line-height: 56px;
  }

  .section-title {
    font-size: 40px;
  }

  .section-copy {
    font-size: 16px;
  }

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

  .contact-map {
    aspect-ratio: 16/9;
  }

  .footer-links {
    justify-content: flex-start;
    flex: 1;
    flex-wrap: nowrap;
    gap: 24px;
  }

  .footer-contact {
    flex-basis: 100%;
    max-width: none;
  }
}

/* ============================================================
   900px
   ============================================================ */

@media (max-width:900px) {
  .page-banner {
    min-height: 450px;
  }

  .page-banner h1 {
    font-size: 40px;
    line-height: 48px;
  }

  .contact-form-card,
  .info-card {
    border-radius: 16px;
  }

  .footer-col {
    min-width: 90px;
  }
}

/* ============================================================
   680px
   ============================================================ */

@media (max-width:680px) {
  .container {
    width: calc(100% - 48px);
  }

  .hero-nav {
    padding: 12px 16px;
  }

  .hero-logo img {
    height: 46px;
    max-width: 125px;
  }

  .hero-toggle {
    padding: 8px;
  }

  .hero-menu {
    padding: 80px 24px;
  }

  .page-banner {
    min-height: 400px;
  }

  .page-banner-media img {
    object-position: center center;
  }

  .page-banner-scrim {
    background: linear-gradient(180deg,rgba(15,10,6,.68),rgba(15,10,6,.48) 48%,rgba(12,8,5,.78));
  }

  .page-banner .container {
    padding-top: 48px;
  }

  .page-banner-eyebrow {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .page-banner h1 {
    font-size: 36px;
    line-height: 44px;
  }

  .section-title {
    font-size: 32px;
    line-height: 38px;
  }

  .section-copy {
    font-size: 16px;
    line-height: 25px;
  }

  .who-we-are {
    padding-block: 64px 28px;
  }

  .contact-main {
    padding-block: 20px 64px;
  }

  .contact-form-card,
  .info-card {
    border-radius: 16px;
    padding: 20px;
  }

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

  .form-group input,
  .form-group select {
    height: 48px;
  }

  .form-group textarea {
    min-height: 120px;
  }

  .info-row {
    align-items: flex-start;
  }

  .hours-row {
    align-items: flex-start;
  }

  .contact-map {
    margin-top: 24px;
    aspect-ratio: 16/10;
    border-radius: 16px;
  }

  /* Footer */
  .footer {
    padding-top: 56px;
  }

  .footer-top {
    flex-direction: column;
    gap: 35px;
    padding-bottom: 32px;
  }

  .footer-brand {
    flex-basis: auto;
  }

  .footer-col {
    min-width: 120px;
  }

  .footer-links {
    width: 100%;
    justify-content: flex-start;
    gap: 20px;
  }

  .footer-contact {
    flex-basis: 100%;
    max-width: none;
  }

  .footer-socials {
    margin-top: 30px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction:row;
    gap: 12px;
    font-size: 14px;
    padding-top: 24px;
  }
  
  .back-top{
    min-height:14px;
  }
}

/* ============================================================
   480px
   ============================================================ */

@media (max-width:480px) {
  .page-banner {
    min-height: 350px;
  }

  .page-banner h1 {
    font-size: 32px;
    line-height: 38px;
  }

  .section-title {
    font-size: 24px;
    line-height: 32px;
  }

  .section-copy {
    font-size: 15.5px;
    line-height: 22px;
  }

  .who-we-are {
    padding-block: 56px 24px;
  }

  .contact-main {
    padding-block: 16px 56px;
  }

  .contact-form-card,
  .info-card {
    padding: 16px;
    border-radius: 15px;
  }

  .contact-form-card {
    gap: 16px;
  }

  .info-card-title {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .info-row {
    gap: 10px;
    padding: 12px 0;
  }

  .info-icon {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }

  .info-label {
    font-size: 10px;
  }

  .info-value {
    font-size: 14px;
  }

  .hours-row {
    gap: 10px;
    padding: 10px 0;
  }

  .hours-day,
  .hours-time {
    font-size: 13px;
  }

  .contact-map {
    aspect-ratio: 16/11;
    border-radius: 14px;
  }

  /* Footer */
  .footer-links {
    flex-direction: column;
    gap: 24px;
  }

  .footer-col {
    min-width: 0;
  }

  .footer-brand img {
    width: 120px;
  }

  .footer-brand p {
    font-size: 15px;
    line-height: 21px;
    max-width: 200px;
  }

  .footer-col a {
    font-size: 16px;
    line-height: 26px;
  }

  .footer-contact p {
    font-size: 16px;
    line-height: 22px;
  }

    .footer-bottom {
    text-align: center;    
    align-items: center;
    flex-direction:column;
    gap: 8px;
    font-size: 15px;
  }
  
  .back-top{
    min-height:14px;
  }
  
  .footer-socials img {
    width: 20px;
    height: auto;
  }
}

/* ============================================================
   380px
   ============================================================ */

@media (max-width:380px) {
  .container,
  .footer .container {
    width: calc(100% - 32px);
  }

  .hero-nav {
    padding-inline: 12px;
  }

  .hero-logo img {
    height: 42px;
    max-width: 112px;
  }

  .hero-menu a {
    font-size: 25px;
  }

  .page-banner {
    min-height: 380px;
  }

  .page-banner h1 {
    font-size: 30px;
    line-height: 36px;
  }

  .section-title {
    font-size: 24px;
    line-height: 32px;
  }

  .section-copy {
    font-size: 15px;
    line-height: 22px;
  }

  .contact-main {
    padding-bottom: 48px;
  }

  .contact-form-card,
  .info-card {
    padding: 14px;
  }

  .form-group label {
    font-size: 11px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 14px;
  }

  .form-submit {
    min-height: 46px;
    font-size: 15px;
  }

  .info-icon {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }

  .info-value {
    font-size: 13px;
  }

  .hours-day,
  .hours-time {
    font-size: 12px;
  }

  .footer {
    padding-top: 48px;
  }

  .footer-brand img {
    width: 110px;
  }

  .footer-socials {
    margin-top: 24px;
  }

  .footer-socials img {
    width: 20px;
  }

  .footer-brand p {
    font-size: 15px;
    line-height: 21px;
    max-width: 200px;
  }

  .footer-col a {
    font-size: 16px;
    line-height: 26px;
  }

  .footer-contact p {
    font-size: 16px;
    line-height: 22px;
  }
  
}

/* ============================================================
   TOUCH DEVICES
   ============================================================ */

@media (hover:none) and (pointer:coarse) {
  .hero-cta:hover,
  .form-submit:hover,
  .footer-socials a:hover,
  .footer-col a:hover,
  .back-top:hover {
    transform: none;
  }

  .hero-cta:hover,
  .form-submit:hover {
    box-shadow: none;
  }
}

/* ============================================================
   BACKEND / FORM STATES
   ============================================================ */

.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-prefill-note {
  background: rgba(207,165,122,.15);
  border: 1px solid rgba(207,165,122,.30);
  border-radius: 10px;
  padding: 10px 14px;
  font-family: "outfit", sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 6px;
}

.form-status.is-error {
  color: #B3392C;
}

.form-submit[disabled] {
  opacity: .6;
  cursor: not-allowed;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #B3392C;
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
