/* ========================================
   BASE
======================================== */

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


html {
  scroll-behavior: smooth;
}


body {
  background: #faf7f5;

  color: #202735;

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  overflow-x: hidden;
}


img {
  display: block;

  max-width: 100%;
}


a {
  color: inherit;
}


section {
  scroll-margin-top: 85px;
}



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

.site-header {
  position: sticky;

  top: 0;

  z-index: 1000;

  width: 100%;

  background:
    rgba(247, 242, 239, 0.97);

  border-bottom:
    1px solid #ded7d2;

  backdrop-filter:
    blur(10px);
}



.header-inner {
  width:
    calc(100% - 60px);

  max-width: 1250px;

  height: 86px;

  margin:
    0 auto;

  display: grid;

  grid-template-columns:
    1fr
    auto
    1fr;

  align-items: center;
}



/* BRAND */

.brand {
  justify-self: start;

  color: #987745;

  text-decoration: none;

  font-size: 32px;

  font-weight: 600;

  line-height: 1;

  letter-spacing: -0.6px;

  white-space: nowrap;
}



/* SMALL HEADER PORTRAIT */

.portrait {
  justify-self: center;

  width: 42px;

  height: 42px;

  overflow: hidden;

  border:
    1.5px solid #c47d61;

  border-radius: 50%;

  background: #eadbd4;

  box-shadow:
    0 2px 8px
    rgba(0, 0, 0, 0.09);
}


.portrait img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}



/* RIGHT SIDE */

.header-right {
  justify-self: end;

  display: flex;

  align-items: center;

  gap: 20px;
}



/* NAV */

.nav {
  display: flex;

  align-items: center;

  gap: 27px;
}


.nav a {
  position: relative;

  color: #222936;

  text-decoration: none;

  font-size: 17px;

  font-weight: 500;

  white-space: nowrap;

  transition:
    color 0.25s ease;
}


.nav a::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: -7px;

  width: 0;

  height: 1px;

  background: #c47d61;

  transition:
    width 0.25s ease;
}


.nav a:hover {
  color: #c47d61;
}


.nav a:hover::after {
  width: 100%;
}



/* ========================================
   HEADER SOCIAL ICONS
======================================== */

.header-social {
  display: flex;

  align-items: center;

  gap: 9px;

  flex-shrink: 0;
}


.header-social a {
  width: 35px;

  height: 35px;

  display: flex;

  align-items: center;

  justify-content: center;

  border:
    1px solid
    rgba(152, 119, 69, 0.32);

  border-radius: 50%;

  color: #987745;

  text-decoration: none;

  font-size: 16px;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}


.header-social a:hover {
  background: #c77d60;

  color: #ffffff;

  border-color: #c77d60;

  transform:
    translateY(-2px);

  box-shadow:
    0 5px 14px
    rgba(70, 45, 35, 0.12);
}



/* HEADER QUOTE */

.quote-button {
  min-width: 158px;

  height: 46px;

  padding:
    0 20px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  background: #c77d60;

  color: #ffffff;

  border-radius: 10px;

  text-decoration: none;

  font-size: 16px;

  font-weight: 600;

  white-space: nowrap;

  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}


.quote-button:hover {
  background: #b76e53;

  transform:
    translateY(-1px);

  box-shadow:
    0 7px 20px
    rgba(120, 70, 50, 0.15);
}



/* ========================================
   MOBILE NAVIGATION
======================================== */

.menu-button {
  display: none;

  width: 40px;

  height: 40px;

  padding: 0;

  border: 0;

  background: transparent;

  cursor: pointer;
}


.menu-button span {
  width: 25px;

  height: 1px;

  margin:
    5px auto;

  display: block;

  background: #222936;

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}


.mobile-menu {
  display: none;

  padding:
    16px 20px 28px;

  background: #f7f2ef;

  border-top:
    1px solid #ded7d2;
}


.mobile-menu.open {
  display: flex;

  flex-direction: column;

  gap: 4px;
}


.mobile-menu > a {
  padding:
    12px 5px;

  color: #222936;

  text-decoration: none;

  font-size: 20px;
}


.mobile-menu .mobile-quote {
  margin-top: 10px;

  padding: 14px;

  background: #c77d60;

  color: #ffffff;

  border-radius: 9px;

  text-align: center;
}



/* MOBILE SOCIAL */

.mobile-social {
  display: flex;

  align-items: center;

  gap: 12px;

  padding:
    12px 5px 10px;
}


.mobile-social a {
  width: 42px;

  height: 42px;

  display: flex;

  align-items: center;

  justify-content: center;

  border:
    1px solid
    rgba(152, 119, 69, 0.32);

  border-radius: 50%;

  color: #987745;

  text-decoration: none;

  font-size: 19px;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}


.mobile-social a:hover {
  background: #c77d60;

  color: #ffffff;

  border-color: #c77d60;
}



/* ========================================
   ABOUT SILVIA
======================================== */

.about-section {
  width: 100%;

  padding:
    90px 0 100px;

  background: #faf7f5;
}


.about-inner {
  width:
    calc(100% - 60px);

  max-width: 1250px;

  margin:
    0 auto;

  display: grid;

  grid-template-columns:
    minmax(0, 0.95fr)
    minmax(0, 1.05fr);

  gap: 90px;

  align-items: center;
}


.about-copy {
  max-width: 610px;
}


.about-copy h1 {
  margin-bottom: 24px;

  color: #202735;

  font-size:
    clamp(
      48px,
      4vw,
      57px
    );

  font-weight: 600;

  line-height: 1;

  letter-spacing: -1.4px;
}


.about-copy p {
  margin-bottom: 23px;

  color: #3c4554;

  font-size: 20px;

  line-height: 1.7;
}


.about-button {
  min-width: 225px;

  height: 46px;

  margin-top: 3px;

  padding:
    0 28px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  background: #c77d60;

  color: #ffffff;

  border-radius: 9px;

  text-decoration: none;

  font-size: 16px;

  font-weight: 600;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}


.about-button:hover {
  background: #b66f55;

  transform:
    translateY(-2px);
}



.about-visuals {
  width: 100%;

  display: flex;

  flex-direction: column;

  align-items: center;
}



.silvia-profile {
  width: 250px;

  height: 250px;

  overflow: hidden;

  border:
    4px solid #ffffff;

  border-radius: 50%;

  box-shadow:
    0 12px 36px
    rgba(47, 38, 32, 0.12);
}


.silvia-profile img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}



.silvia-title {
  display: block;

  width: 100%;

  margin:
    24px 0 25px;

  color: #92703f;

  font-size: 19px;

  font-weight: 600;

  line-height: 1.3;

  text-align: center;
}



.about-feature-image {
  width: 100%;

  max-width: 600px;

  height: 255px;

  overflow: hidden;

  border-radius: 14px;

  box-shadow:
    0 14px 35px
    rgba(42, 34, 30, 0.10);
}


.about-feature-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition:
    transform 0.6s ease;
}


.about-feature-image:hover img {
  transform:
    scale(1.025);
}



/* ========================================
   SERVICES INTRO
======================================== */

.services-intro {
  width: 100%;

  padding:
    105px 0 110px;

  background: #f7f2ee;
}


.services-intro-inner {
  width:
    calc(100% - 60px);

  max-width: 1250px;

  margin:
    0 auto;

  display: grid;

  grid-template-columns:
    minmax(0, 0.85fr)
    minmax(0, 1.15fr);

  gap: 90px;

  align-items: center;
}


.services-intro-copy {
  max-width: 510px;
}


.services-intro-copy h2 {
  margin-bottom: 28px;

  font-size:
    clamp(
      58px,
      5.3vw,
      78px
    );

  font-weight: 600;

  line-height: 1.03;

  letter-spacing: -2px;
}


.services-intro-copy h2 span {
  display: block;
}


.services-intro-copy .dark {
  color: #202735;
}


.services-intro-copy .accent {
  color: #c77d60;
}


.services-intro-copy p {
  max-width: 500px;

  margin-bottom: 30px;

  color: #3f4857;

  font-size: 20px;

  line-height: 1.65;
}



.services-actions {
  display: flex;

  align-items: center;

  gap: 16px;

  flex-wrap: wrap;
}


.services-primary,
.services-secondary {
  min-width: 160px;

  height: 48px;

  padding:
    0 26px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  border-radius: 9px;

  text-decoration: none;

  font-size: 16px;

  font-weight: 600;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}


.services-primary {
  background: #c77d60;

  color: #ffffff;

  border:
    1px solid #c77d60;
}


.services-secondary {
  color: #b76e53;

  border:
    1.5px solid #c77d60;
}


.services-primary:hover,
.services-secondary:hover {
  transform:
    translateY(-2px);
}


.services-secondary:hover {
  background: #c77d60;

  color: #ffffff;
}



.services-intro-image {
  width: 100%;

  max-width: 650px;

  height: 430px;

  justify-self: end;

  overflow: hidden;

  border-radius: 15px;

  box-shadow:
    0 18px 44px
    rgba(46, 35, 30, 0.13);
}


.services-intro-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition:
    transform 0.8s ease;
}


.services-intro-image:hover img {
  transform:
    scale(1.025);
}



/* ========================================
   SERVICES
======================================== */

.packages-section {
  width: 100%;

  padding:
    105px 0 90px;

  background: #f7f3ef;
}


.packages-inner {
  width:
    calc(100% - 60px);

  max-width: 1250px;

  margin:
    0 auto;
}


.packages-heading {
  max-width: 720px;

  margin:
    0 auto 55px;

  text-align: center;
}


.packages-heading h2 {
  margin-bottom: 12px;

  color: #202735;

  font-size: 52px;

  font-weight: 600;

  letter-spacing: -1.4px;
}


.packages-heading p {
  color: #4a5260;

  font-size: 20px;

  line-height: 1.45;
}



.packages-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 28px;

  align-items: stretch;
}



.package-card {
  min-width: 0;

  overflow: hidden;

  background: #ffffff;

  border:
    1px solid
    rgba(85, 68, 58, 0.08);

  border-radius: 15px;

  box-shadow:
    0 10px 27px
    rgba(58, 47, 40, 0.09);

  display: flex;

  flex-direction: column;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}


.package-card:hover {
  transform:
    translateY(-5px);

  box-shadow:
    0 18px 40px
    rgba(58, 47, 40, 0.13);
}



.package-image {
  width: 100%;

  height: 205px;

  overflow: hidden;
}


.package-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition:
    transform 0.6s ease;
}


.package-card:hover
.package-image img {
  transform:
    scale(1.035);
}



.package-content {
  flex: 1;

  padding:
    29px 28px 30px;

  display: flex;

  flex-direction: column;
}



.package-card h3 {
  margin-bottom: 5px;

  color: #202735;

  font-size: 27px;

  font-weight: 700;
}



.package-type {
  margin-bottom: 25px;

  color: #92703f;

  font-size: 15px;

  font-weight: 600;

  letter-spacing: 1px;

  text-transform: uppercase;
}



.package-description {
  margin-bottom: 22px;

  color: #3f4755;

  font-size: 18px;

  line-height: 1.65;
}



.package-features {
  margin-bottom: 20px;

  list-style: none;
}


.package-features li {
  position: relative;

  margin-bottom: 11px;

  padding-left: 28px;

  color: #414957;

  font-size: 16px;

  line-height: 1.45;
}


.package-features li::before {
  content: "✓";

  position: absolute;

  left: 0;

  color: #c77d60;

  font-family:
    Arial,
    sans-serif;

  font-size: 18px;

  font-weight: 700;
}



.package-gift {
  margin-bottom: 24px;

  display: flex;

  gap: 11px;

  color: #8d6536;

  font-size: 16px;

  font-weight: 600;

  line-height: 1.4;
}


.package-gift i {
  color: #c77d60;
}



.package-button {
  width: 100%;

  height: 44px;

  margin-top: auto;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  background: #c77d60;

  color: #ffffff;

  border-radius: 8px;

  text-decoration: none;

  font-size: 16px;

  font-weight: 600;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}


.package-button:hover {
  background: #b66e53;

  transform:
    translateY(-1px);
}



/* ========================================
   SERVICE NOTICE
======================================== */

.services-notice {
  margin-top: 45px;

  padding:
    20px 22px;

  background: #fffaf3;

  border:
    1px solid #dfbd87;

  border-radius: 12px;

  color: #82591f;
}


.notice-row {
  display: grid;

  grid-template-columns:
    22px
    1fr;

  gap: 10px;
}


.notice-row p {
  font-size: 14px;

  line-height: 1.55;
}


.notice-row i {
  color: #bd704e;
}


.notice-travel {
  margin-top: 8px;
}



/* ========================================
   WHY CHOOSE
======================================== */

.why-section {
  width: 100%;

  padding:
    95px 0 100px;

  background: #faf8f6;
}


.why-inner {
  width:
    calc(100% - 60px);

  max-width: 1050px;

  margin:
    0 auto;
}


.why-inner > h2 {
  margin-bottom: 65px;

  color: #161d2c;

  font-size: 49px;

  font-weight: 700;

  text-align: center;

  letter-spacing: -1px;
}


.why-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 80px;
}


.why-item {
  text-align: center;
}


.icon-circle {
  width: 65px;

  height: 65px;

  margin:
    0 auto 20px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: #f3e9e4;

  border-radius: 50%;

  color: #c77d60;

  font-size: 28px;
}


.why-item h3 {
  margin-bottom: 16px;

  color: #171e2d;

  font-size: 25px;

  font-weight: 700;

  line-height: 1.15;
}


.why-item p {
  color: #46505f;

  font-size: 18px;

  line-height: 1.65;
}



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

.contact-section {
  width: 100%;

  padding:
    90px 0 85px;

  background: #f2eeea;
}


.contact-inner {
  width:
    calc(100% - 60px);

  max-width: 900px;

  margin:
    0 auto;

  text-align: center;
}


.contact-heading {
  max-width: 650px;

  margin:
    0 auto 48px;
}


.contact-heading h2 {
  margin-bottom: 10px;

  color: #161d2c;

  font-size: 52px;

  font-weight: 700;
}


.contact-heading p {
  color: #4b5564;

  font-size: 20px;

  line-height: 1.5;
}



.contact-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 30px;
}



.contact-card {
  min-height: 240px;

  padding:
    34px 20px;

  background: #ffffff;

  border-radius: 14px;

  box-shadow:
    0 9px 25px
    rgba(53, 44, 39, 0.08);

  display: flex;

  flex-direction: column;

  align-items: center;
}



.contact-icon {
  width: 58px;

  height: 58px;

  margin-bottom: 20px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: #f6ebe6;

  border-radius: 50%;

  color: #c77d60;

  font-size: 25px;
}



.contact-card h3 {
  margin-bottom: 12px;

  color: #171e2d;

  font-size: 25px;

  font-weight: 700;
}


.contact-card p,
.contact-highlight,
.contact-email {
  color: #c77d60;

  font-size: 20px;

  font-weight: 500;

  font-style: normal;

  line-height: 1.4;

  text-decoration: none;
}


.contact-highlight {
  white-space: nowrap;
}


.contact-email {
  max-width: 100%;

  overflow-wrap: anywhere;
}


.contact-highlight:hover,
.contact-email:hover {
  color: #a95f46;
}


.contact-highlight:hover,
.contact-email:hover {
  color: #a95f46;
}



.contact-quote {
  min-width: 175px;

  height: 48px;

  margin-top: 55px;

  padding:
    0 20px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  background: #c77d60;

  color: #ffffff;

  border-radius: 9px;

  text-decoration: none;

  font-size: 16px;

  font-weight: 600;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}


.contact-quote:hover {
  background: #b66e53;

  transform:
    translateY(-2px);
}



/* ========================================
   FOOTER
======================================== */

.site-footer {
  width: 100%;

  padding:
    43px 20px 35px;

  background: #3e3027;

  color: #d9c7b9;

  text-align: center;
}


.footer-inner {
  max-width: 850px;

  margin:
    0 auto;
}


.footer-brand {
  color: #f0ded1;

  text-decoration: none;

  font-size: 33px;

  font-weight: 700;
}


.footer-tagline {
  margin-top: 8px;

  font-size: 18px;
}



.footer-contact {
  margin-top: 28px;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 23px;

  font-size: 16px;
}


.footer-contact a {
  color: #d9c7b9;

  text-decoration: none;

  transition:
    color 0.25s ease;
}


.footer-contact a:hover {
  color: #ffffff;
}


.footer-contact span {
  width: 1px;

  height: 18px;

  background:
    rgba(255, 255, 255, 0.22);
}



/* FOOTER SOCIAL */

.footer-social {
  margin-top: 25px;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 15px;
}


.footer-social a {
  width: 44px;

  height: 44px;

  display: flex;

  align-items: center;

  justify-content: center;

  border:
    1px solid
    rgba(255, 255, 255, 0.24);

  border-radius: 50%;

  color: #ead8ca;

  text-decoration: none;

  font-size: 19px;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}


.footer-social a:hover {
  background: #c77d60;

  color: #ffffff;

  border-color: #c77d60;

  transform:
    translateY(-3px);

  box-shadow:
    0 7px 18px
    rgba(0, 0, 0, 0.16);
}


.footer-copyright {
  margin-top: 29px;

  color: #a99486;

  font-size: 15px;
}


.footer-role {
  margin-top: 13px;

  color: #8f796c;

  font-size: 15px;
}



/* ========================================
   QUOTE FORM
======================================== */

.quote-modal {
  position: fixed;

  inset: 0;

  z-index: 5000;

  display: none;

  align-items: center;

  justify-content: center;

  padding: 24px;
}


.quote-modal.open {
  display: flex;
}


.quote-backdrop {
  position: absolute;

  inset: 0;

  background:
    rgba(22, 20, 18, 0.55);

  backdrop-filter:
    blur(2px);
}


.quote-dialog {
  position: relative;

  z-index: 1;

  width: 100%;

  max-width: 515px;

  max-height:
    calc(100dvh - 48px);

  overflow-y: auto;

  padding:
    28px
    25px
    26px;

  background: #faf7f4;

  border:
    1px solid
    rgba(65, 50, 42, 0.12);

  border-radius: 12px;

  box-shadow:
    0 25px 70px
    rgba(25, 20, 17, 0.25);
}



.quote-close {
  position: absolute;

  top: 13px;

  right: 17px;

  width: 34px;

  height: 34px;

  border: 0;

  background: transparent;

  color: #6c665f;

  font-family:
    Arial,
    sans-serif;

  font-size: 25px;

  cursor: pointer;
}



.quote-heading {
  padding-right: 30px;
}


.quote-heading h2 {
  margin-bottom: 6px;

  color: #171e2d;

  font-size: 36px;

  font-weight: 700;

  line-height: 1.1;
}


.quote-heading p {
  max-width: 430px;

  margin-bottom: 25px;

  color: #4a5260;

  font-size: 17px;

  line-height: 1.45;
}



.quote-form-grid {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap:
    18px 16px;
}



.form-field {
  display: flex;

  flex-direction: column;

  gap: 6px;
}


.full-field {
  grid-column:
    1 / -1;
}


.form-field label {
  color: #303744;

  font-size: 15px;

  font-weight: 500;
}



.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;

  min-height: 40px;

  padding:
    10px 12px;

  background: #ffffff;

  color: #303744;

  border:
    1px solid #ded2c8;

  border-radius: 9px;

  outline: none;

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: 15px;

  transition:
    border 0.2s ease,
    box-shadow 0.2s ease;
}


.form-field textarea {
  min-height: 100px;

  resize: vertical;
}


.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #c77d60;

  box-shadow:
    0 0 0 3px
    rgba(199, 125, 96, 0.15);
}



.quote-submit {
  width: 100%;

  min-height: 43px;

  margin-top: 18px;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 12px;

  border: 0;

  border-radius: 9px;

  background: #c77d60;

  color: #ffffff;

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: 17px;

  font-weight: 600;

  cursor: pointer;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}


.quote-submit:hover {
  background: #b66e53;

  transform:
    translateY(-1px);
}


.quote-submit:disabled {
  opacity: 0.65;

  cursor: not-allowed;

  transform: none;
}



.quote-note {
  max-width: 390px;

  margin:
    17px auto 0;

  color: #68707c;

  font-size: 14px;

  line-height: 1.45;

  text-align: center;
}



.quote-status {
  display: none;

  margin-top: 16px;

  padding:
    11px 12px;

  border-radius: 7px;

  font-size: 15px;

  text-align: center;
}


.quote-status.success {
  display: block;

  background: #edf5ed;

  color: #35623a;
}


.quote-status.error {
  display: block;

  background: #f9ece8;

  color: #983f32;
}



.bot-field {
  position: absolute;

  width: 1px;

  height: 1px;

  margin: -1px;

  padding: 0;

  overflow: hidden;

  clip:
    rect(0 0 0 0);

  border: 0;
}



body.modal-open {
  overflow: hidden;
}



/* ========================================
   MID-SIZE HEADER
======================================== */

@media (max-width: 1120px) {


  .header-inner {
    width:
      calc(100% - 36px);
  }


  .brand {
    font-size: 27px;
  }


  .header-right {
    gap: 14px;
  }


  .nav {
    gap: 19px;
  }


  .nav a {
    font-size: 16px;
  }


  .header-social {
    gap: 7px;
  }


  .header-social a {
    width: 32px;

    height: 32px;

    font-size: 14px;
  }


  .quote-button {
    min-width: 145px;

    padding:
      0 15px;
  }

}



/* ========================================
   TABLET
======================================== */

@media (max-width: 1000px) {


  .about-inner,
  .services-intro-inner {
    gap: 55px;
  }


  .packages-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }


  .package-card:last-child {
    grid-column:
      1 / -1;

    width:
      calc(50% - 14px);

    justify-self: center;
  }


  .why-grid {
    gap: 40px;
  }

}



/* ========================================
   MOBILE
======================================== */

@media (max-width: 850px) {


  /* HEADER */

  .header-inner {
    width:
      calc(100% - 36px);

    height: 74px;

    grid-template-columns:
      1fr
      auto;
  }


  .brand {
    font-size: 26px;
  }


  .portrait,
  .header-right {
    display: none;
  }


  .menu-button {
    display: block;

    justify-self: end;
  }


  .menu-button.open
  span:nth-child(1) {
    transform:
      translateY(6px)
      rotate(45deg);
  }


  .menu-button.open
  span:nth-child(2) {
    opacity: 0;
  }


  .menu-button.open
  span:nth-child(3) {
    transform:
      translateY(-6px)
      rotate(-45deg);
  }



  /* ABOUT */

  .about-section {
    padding:
      45px 0 70px;
  }


  .about-inner {
    width:
      calc(100% - 36px);

    grid-template-columns:
      1fr;

    gap: 42px;
  }



  /*
  MOBILE ORDER:

  1 Silvia image
  2 Silvia title
  3 Hero image
  4 About text
  */

  .about-visuals {
    order: 1;

    width: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;
  }


  .about-copy {
    order: 2;

    width: 100%;

    max-width: 100%;
  }



  .silvia-profile {
    width: 245px;

    height: 245px;

    margin:
      0 auto;
  }



  .silvia-title {
    display: block;

    visibility: visible;

    opacity: 1;

    width: 100%;

    margin:
      25px 0 24px;

    color: #92703f;

    font-size: 19px;

    font-weight: 600;

    line-height: 1.3;

    text-align: center;
  }



  .about-feature-image {
    width: 100%;

    max-width: 100%;

    height: 270px;
  }



  .about-copy h1 {
    font-size: 46px;
  }


  .about-copy p {
    font-size: 18px;

    line-height: 1.65;
  }


  .about-button {
    width: 100%;

    max-width: 285px;
  }



  /* SERVICES */

  .services-intro-inner {
    width:
      calc(100% - 36px);

    grid-template-columns:
      1fr;

    gap: 50px;
  }


  .services-intro-copy p {
    font-size: 18px;
  }


  .services-intro-copy h2 {
    font-size:
      clamp(
        52px,
        14vw,
        68px
      );
  }


  .services-intro-image {
    height: 360px;
  }



  /* WHY */

  .why-inner {
    width:
      calc(100% - 36px);
  }


  .why-inner > h2 {
    margin-bottom: 50px;

    font-size: 42px;
  }


  .why-grid {
    grid-template-columns:
      1fr;

    gap: 45px;
  }


  .why-item {
    max-width: 420px;

    margin:
      0 auto;
  }



  /* CONTACT */

  .contact-inner {
    width:
      calc(100% - 36px);
  }


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

    max-width: 450px;

    margin:
      0 auto;
  }


  .contact-card {
    min-height: 210px;
  }

}



/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 700px) {


  .packages-inner {
    width:
      calc(100% - 36px);
  }


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


  .package-card:last-child {
    grid-column: auto;

    width: 100%;
  }


  .packages-heading h2,
  .contact-heading h2 {
    font-size: 44px;
  }



  .footer-contact {
    flex-direction: column;

    gap: 8px;
  }


  .footer-contact span {
    display: none;
  }

}



/* ========================================
   QUOTE FORM MOBILE
======================================== */

@media (max-width: 600px) {


  .quote-modal {
    padding:
      max(
        10px,
        env(safe-area-inset-top)
      )
      10px
      max(
        10px,
        env(safe-area-inset-bottom)
      );

    align-items: flex-start;

    height: 100dvh;

    overflow-y: auto;

    overscroll-behavior: contain;
  }



  .quote-dialog {
    width: 100%;

    max-width: 100%;

    max-height: none;

    margin:
      auto 0;

    padding:
      24px
      18px
      22px;

    border-radius: 14px;

    overflow: visible;
  }



  .quote-close {
    top: 10px;

    right: 12px;

    width: 36px;

    height: 36px;

    font-size: 24px;
  }



  .quote-heading {
    padding-right: 32px;
  }


  .quote-heading h2 {
    margin-bottom: 5px;

    font-size: 31px;

    line-height: 1.05;
  }


  .quote-heading p {
    margin-bottom: 18px;

    font-size: 15px;

    line-height: 1.4;
  }



  .quote-form-grid {
    grid-template-columns:
      1fr;

    gap: 13px;
  }


  .full-field {
    grid-column: auto;
  }


  .form-field {
    gap: 5px;
  }


  .form-field label {
    font-size: 14px;
  }



  .form-field input,
  .form-field select,
  .form-field textarea {
    min-height: 44px;

    padding:
      9px 11px;

    font-size: 16px;
  }


  .form-field textarea {
    min-height: 90px;

    max-height: 150px;
  }



  .quote-submit {
    min-height: 46px;

    margin-top: 15px;

    font-size: 16px;
  }



  .quote-note {
    margin-top: 13px;

    font-size: 13px;

    line-height: 1.4;
  }


  .quote-status {
    margin-top: 13px;

    font-size: 14px;
  }

}



/* ========================================
   PHONE
======================================== */

@media (max-width: 500px) {


  .brand {
    font-size: 23px;
  }



  .silvia-profile {
    width: 235px;

    height: 235px;
  }



  .silvia-title {
    font-size: 18px;

    line-height: 1.35;
  }



  .about-feature-image {
    height: 250px;
  }



  .about-copy h1 {
    font-size: 42px;
  }



  .services-intro,
  .packages-section,
  .why-section,
  .contact-section {
    padding-top: 65px;

    padding-bottom: 70px;
  }



  .services-intro-copy h2 {
    font-size: 49px;
  }



  .services-actions {
    flex-direction: column;

    align-items: stretch;
  }



  .services-primary,
  .services-secondary {
    width: 100%;
  }



  .services-intro-image {
    height: 290px;
  }



  .packages-heading p,
  .contact-heading p {
    font-size: 18px;
  }



  .why-inner > h2 {
    font-size: 39px;
  }



  .footer-brand {
    font-size: 29px;
  }



  .footer-social a {
    width: 46px;

    height: 46px;

    font-size: 20px;
  }



  .mobile-social a {
    width: 44px;

    height: 44px;

    font-size: 20px;
  }

}