@font-face{font-family:'Manrope Variable';font-style:normal;font-weight:200 800;font-display:swap;src:url('../fonts/manrope-latin.woff2') format('woff2')}
@layer reset, base, layout, components, responsive;
@layer reset {
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  body,
  h1,
  h2,
  h3,
  p,
  figure {
    margin: 0;
  }
  a {
    color: inherit;
    text-decoration: none;
  }
  button,
  input,
  select,
  textarea {
    font: inherit;
  }
  button {
    cursor: pointer;
    color: inherit;
  }
  img {
    max-width: 100%;
    display: block;
  }
  svg {
    flex-shrink: 0;
  }
  [hidden] {
    display: none !important;
  }
}
@layer base {
  :root {
    --ink: #222322;
    --muted: #62635f;
    --red: #8d3536;
    --line: #deded9;
    --pale: #f5f3ef;
    --font: 'Manrope Variable', sans-serif;
    --serif: Georgia, 'Times New Roman', serif;
  }
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 115px;
  }
  body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.65;
    background: #fff;
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
  }
  ::selection {
    background: #f1c6c8;
    color: #171717;
  }
  h1,
  h2,
  h3 {
    font-family: var(--serif);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.04em;
  }
  h1 {
    font-size: clamp(3rem, 5.3vw, 5rem);
  }
  h2 {
    font-size: clamp(2.2rem, 3.3vw, 3.2rem);
  }
  h3 {
    font-size: 1.7rem;
  }
  p {
    color: var(--muted);
  }
  :focus-visible {
    outline: 3px solid var(--red);
    outline-offset: 5px;
  }
  .container {
    width: min(1312px, calc(100% - 112px));
    margin-inline: auto;
  }
  .eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.11em;
    font-weight: 650;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
  }
  .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 15px 26px;
    border: 1px solid var(--ink);
    border-radius: 2px;
    background: var(--ink);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    transition:
      background 0.22s,
      border-color 0.22s,
      box-shadow 0.22s;
  }
  .button:hover {
    background: #41423e;
    border-color: #41423e;
    box-shadow: 0 4px 16px #00000010;
  }
  .button.red {
    background: var(--red);
    border-color: var(--red);
  }
  .button.red:hover {
    background: #71272a;
    border-color: #71272a;
  }
  .button.small {
    min-height: 46px;
    padding: 11px 21px;
    font-size: 0.8125rem;
  }
  .button.outline {
    background: transparent;
    color: var(--ink);
  }
  .text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.875rem;
    font-weight: 550;
    text-decoration: underline;
    text-decoration-color: #aaa;
    text-underline-offset: 6px;
    text-decoration-thickness: 1px;
    min-height: 44px;
  }
  .text-link:hover {
    text-decoration-color: var(--red);
  }
  .button svg {
    display: none;
  }
  .mobile-only {
    display: none;
  }
  .skip-link {
    position: fixed;
    top: -100px;
    left: 20px;
    z-index: 100;
    background: #fff;
    padding: 12px;
  }
  .skip-link:focus {
    top: 10px;
  }
  @view-transition {
    navigation: auto;
  }
  ::view-transition-old(root) {
    animation-duration: 0.18s;
  }
  ::view-transition-new(root) {
    animation-duration: 0.25s;
  }
}
@layer layout {
  .header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: white;
    border-bottom: 1px solid #e9e9e7;
  }
  .header-inner {
    height: 108px;
    display: flex;
    align-items: center;
    gap: 27px;
  }
  .brand {
    display: inline-flex;
    flex-shrink: 0;
  }
  .brand-crop {
    display: block;
    width: 184px;
    height: 90px;
    position: relative;
    overflow: hidden;
    background: #fff;
  }
  .brand img {
    position: absolute;
    width: 210px;
    max-width: none;
    height: 210px;
    left: -12px;
    top: -60px;
  }
  .desktop-nav {
    display: flex;
    gap: 28px;
    margin-left: auto;
    font-size: 0.875rem;
  }
  .desktop-nav a {
    padding: 10px 0;
    position: relative;
  }
  .desktop-nav a:after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--red);
    transition: width 0.2s;
  }
  .desktop-nav a:hover:after,
  .desktop-nav a[aria-current]:after {
    width: 100%;
  }
  .header-phone {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.875rem;
    white-space: nowrap;
  }
  .menu-toggle {
    display: none;
  }
  .mobile-nav {
    padding: 10px 24px 26px;
    max-height: calc(100svh - 85px);
    overflow: auto;
    border-top: 1px solid var(--line);
    animation: menu-in 0.2s ease;
  }
  .mobile-nav a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
  }
  .mobile-contact {
    display: none;
  }
  footer {
    background: #fff;
    padding-top: 36px;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 40px;
  }
  .footer-top p:not(.eyebrow) {
    font-size: 0.875rem;
    line-height: 1.7;
    margin-top: 13px;
  }
  .footer-top .brand-crop {
    transform: scale(0.85);
    transform-origin: left center;
    margin-right: -28px;
    margin-top: -8px;
    margin-bottom: -10px;
  }
  .footer-top .eyebrow {
    margin-top: 17px;
    margin-bottom: 17px;
    font-size: 0.75rem;
  }
  .footer-top > div > a:not(.brand),
  .footer-top > div > span {
    display: block;
    font-size: 0.875rem;
    line-height: 2;
  }
  .footer-top a:not(.brand):hover {
    text-decoration: underline;
    text-underline-offset: 4px;
  }
  .footer-about {
    margin-top: 8px;
  }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    padding-block: 21px;
    margin-top: 36px;
    color: var(--muted);
    font-size: 0.75rem;
  }
  .page-intro {
    padding-block: 42px 52px;
    max-width: 930px;
  }
  .page-intro h1 {
    max-width: 900px;
  }
  .page-intro > p:last-child {
    font-size: 1.0625rem;
    max-width: 610px;
    margin-top: 24px;
  }
  .breadcrumb {
    font-size: 0.8125rem;
    color: var(--muted);
    margin-bottom: 37px;
  }
  .breadcrumb a {
    text-decoration: underline;
    text-underline-offset: 4px;
  }
  .split-feature {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 70px;
  }
  .feature-image {
    width: 100%;
    height: 445px;
    object-fit: cover;
    object-position: 49% center;
  }
  .feature-copy h2 {
    margin-bottom: 25px;
  }
  .feature-copy > p:not(.eyebrow) {
    margin-bottom: 20px;
    font-size: 1rem;
  }
  .feature-copy .button {
    margin-top: 10px;
  }
}
@layer components {
  .home-hero {
    position: relative;
    isolation: isolate;
    min-height: 600px;
    height: min(720px, calc(100svh - 108px));
    max-height: 850px;
    color: #fff;
    background: #303030;
    overflow: hidden;
  }
  .hero-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    z-index: -3;
  }
  .hero-shade {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, #111111c9 0%, #17171775 42%, #17171710 80%),
      linear-gradient(0deg, #11111185, transparent 35%);
    z-index: -2;
  }
  .hero-inner {
    padding-top: clamp(130px, 16vh, 180px);
    padding-bottom: 90px;
  }
  .hero-kicker {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    font-weight: 600;
    color: #fff;
    margin-bottom: 27px;
  }
  .home-hero h1 {
    font-size: clamp(3.4rem, 5.4vw, 5.25rem);
    line-height: 1.02;
    letter-spacing: -0.035em;
    max-width: 830px;
    text-wrap: balance;
  }
  .hero-description {
    color: #f1f1ed;
    margin-block: 25px 29px;
    max-width: 580px;
    font-size: 1rem;
  }
  .hero-phone {
    display: inline-block;
    margin-left: 24px;
    font-size: 0.875rem;
    border-bottom: 1px solid #ffffff80;
    line-height: 1.5;
  }
  .hero-phone:hover {
    border-color: white;
  }
  .hero-bottom {
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ecece9;
    font-size: 0.75rem;
  }
  .hero-bottom > span:first-child {
    letter-spacing: 0.04em;
  }
  .hero-bottom > span:last-child {
    font-size: 0.6875rem;
  }
  .trustbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    border-bottom: 1px solid var(--line);
    padding-block: 28px;
  }
  .trustbar > a,
  .trustbar > span {
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 0.875rem;
  }
  .trustbar a:hover {
    text-decoration: underline;
    text-underline-offset: 5px;
  }
  .toshiba {
    font-family: Arial, sans-serif;
    font-weight: 800;
    color: #cf1520;
    letter-spacing: -0.045em;
    font-size: 1.4rem;
  }
  .home-services {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 70px;
    padding-block: 70px;
    align-items: center;
  }
  .service-photo {
    position: relative;
    overflow: hidden;
  }
  .service-photo img {
    width: 100%;
    height: 455px;
    object-fit: cover;
    object-position: 48% center;
    transition: transform 0.7s;
  }
  .service-photo:hover img {
    transform: scale(1.012);
  }
  .service-photo > span {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 12px 19px;
    background: white;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
  }
  .home-services-copy h2 {
    font-size: clamp(2.1rem, 3.2vw, 3rem);
  }
  .home-services-copy > p:not(.eyebrow) {
    margin-top: 20px;
    max-width: 435px;
    font-size: 0.9375rem;
  }
  .service-links {
    margin-top: 25px;
  }
  .service-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-top: 1px solid var(--line);
    gap: 20px;
  }
  .service-links a:last-child {
    border-bottom: 1px solid var(--line);
  }
  .service-links strong {
    font-size: 1rem;
    font-weight: 600;
    display: block;
  }
  .service-links small {
    font-size: 0.8125rem;
    color: var(--muted);
  }
  .service-links svg {
    transition: transform 0.25s;
  }
  .service-links a:hover svg {
    transform: translateX(5px);
  }
  .service-links a:hover strong {
    color: var(--red);
  }
  .contact-strip {
    background: var(--pale);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding-block: 41px;
  }
  .contact-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 65px;
    border-left: 3px solid var(--red);
    padding-left: 27px;
  }
  .contact-strip .eyebrow {
    margin-bottom: 13px;
  }
  .contact-strip h2 {
    font-size: 2.25rem;
    max-width: 650px;
  }
  .contact-strip-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
  }
  .simple-phone {
    font-size: 0.8125rem;
    text-decoration: underline;
    text-underline-offset: 4px;
  }
  .product-feature {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 65px;
  }
  .gallery-images {
    background: #eee;
    aspect-ratio: 1.54;
    overflow: hidden;
  }
  .gallery-images > div {
    height: 100%;
  }
  .gallery-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: image-in 0.35s ease;
  }
  .gallery-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 18px;
    font-size: 0.8125rem;
  }
  .room-tabs {
    display: flex;
    gap: 16px;
  }
  .room-tabs button {
    background: none;
    padding: 8px 0;
    border: 0;
    border-bottom: 2px solid transparent;
    font-size: 0.8125rem;
    color: var(--muted);
    min-height: 44px;
  }
  .room-tabs button[aria-selected='true'] {
    color: var(--ink);
    border-color: var(--red);
  }
  .figure-note {
    font-size: 0.75rem;
    line-height: 1.6;
    margin-top: 13px;
  }
  .feature-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
  }
  .feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.9375rem;
  }
  .feature-list svg {
    width: 21px;
  }
  .steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    border-block: 1px solid var(--line);
    padding-block: 33px;
    margin-bottom: 60px;
  }
  .step-number {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 20px;
  }
  .steps p {
    font-size: 0.9375rem;
    margin-top: 17px;
    max-width: 360px;
  }
  .faq-section {
    max-width: 850px;
    padding-bottom: 65px;
  }
  .faq-section h2 {
    margin-bottom: 30px;
  }
  details {
    border-top: 1px solid var(--line);
    padding: 21px 0;
  }
  details:last-of-type {
    border-bottom: 1px solid var(--line);
  }
  summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    font-size: 1rem;
    list-style: none;
    cursor: pointer;
    font-weight: 500;
  }
  summary::-webkit-details-marker {
    display: none;
  }
  summary:after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 400;
  }
  details[open] summary:after {
    content: '−';
  }
  details p {
    font-size: 0.9375rem;
    margin-top: 18px;
    max-width: 700px;
  }
  .manufacturer-link {
    margin-top: 22px;
    font-size: 0.8125rem;
  }
  .service-panel {
    background: var(--pale);
    padding: 36px;
    border-top: 2px solid var(--ink);
  }
  .service-panel h3 {
    font-size: 2rem;
    margin-bottom: 25px;
  }
  .service-panel label {
    margin-bottom: 8px;
  }
  .service-panel select {
    margin-bottom: 23px;
  }
  .service-answer {
    min-height: 150px;
    font-size: 0.9375rem;
  }
  .service-answer p {
    margin-top: 10px;
  }
  .service-panel .text-link {
    margin-top: 10px;
  }
  .service-panel .text-link svg {
    display: none;
  }
  .about-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 70px;
  }
  .about-proof article {
    border-top: 1px solid var(--line);
    padding-top: 24px;
  }
  .about-proof h3 {
    font-size: 1.75rem;
    margin-top: 24px;
  }
  .about-proof p {
    font-size: 0.9375rem;
    margin-top: 16px;
  }
  .about-proof .text-link {
    margin-top: 10px;
    font-size: 0.8125rem;
  }
  .contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding-block: 42px 70px;
  }
  .contact-copy h1 {
    font-size: 4rem;
  }
  .contact-copy > p:not(.eyebrow):not(.breadcrumb) {
    margin-top: 24px;
    font-size: 1rem;
  }
  .contact-channels {
    display: flex;
    flex-direction: column;
    gap: 27px;
    margin-top: 40px;
  }
  .contact-channels > a {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .contact-channels small {
    display: block;
    font-size: 0.8125rem;
    color: var(--muted);
    margin-bottom: 4px;
  }
  .contact-channels strong {
    font-size: 1.0625rem;
    font-weight: 500;
    overflow-wrap: anywhere;
  }
  .contact-address {
    margin-top: 33px;
    padding-top: 25px;
    border-top: 1px solid var(--line);
    font-size: 0.875rem;
  }
  .contact-form {
    background: var(--pale);
    padding: 35px;
    border-top: 2px solid var(--red);
  }
  .contact-form h2 {
    font-size: 2rem;
    line-height: 1.15;
    margin-bottom: 10px;
  }
  .contact-form > p {
    font-size: 0.875rem;
    margin-bottom: 24px;
  }
  label {
    display: block;
    font-size: 0.875rem;
    font-weight: 550;
    margin-bottom: 18px;
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  input,
  textarea,
  select {
    display: block;
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #b9bbb5;
    border-radius: 0;
    background: white;
    color: var(--ink);
    font-size: 1rem;
    line-height: 1.5;
    margin-top: 7px;
  }
  input::placeholder,
  textarea::placeholder {
    color: #757671;
  }
  textarea {
    resize: vertical;
    min-height: 110px;
  }
  .optional {
    font-weight: 400;
    color: var(--muted);
    font-size: 0.8125rem;
  }
  .form-note {
    font-size: 0.8125rem !important;
    line-height: 1.65;
  }
  .form-note a {
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .form-result {
    border-top: 1px solid var(--line);
    margin-top: 24px;
    padding-top: 23px;
  }
  .form-result h3 {
    font-family: var(--font);
    font-size: 1.1rem;
    font-weight: 650;
    letter-spacing: 0;
  }
  .form-result p {
    font-size: 0.875rem;
    margin-top: 12px;
    overflow-wrap: anywhere;
  }
  .draft-preview {
    font-family: inherit;
    font-size: 0.875rem;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    max-height: 300px;
    overflow: auto;
    background: #fff;
    padding: 20px;
  }
  .draft-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  .draft-actions .button {
    font-size: 0.8125rem;
    padding-inline: 18px;
  }
  .privacy {
    max-width: 780px;
    padding-bottom: 60px;
  }
  .privacy h2 {
    font-size: 2rem;
    margin: 30px 0 18px;
  }
  .privacy p {
    margin: 17px 0;
  }
  .privacy a {
    text-decoration: underline;
    overflow-wrap: anywhere;
  }
  .not-found {
    text-align: center;
    padding-block: 100px;
  }
  .not-found p {
    margin: 25px auto;
    max-width: 450px;
  }
  .reveal-ready {
    opacity: 0;
    transform: translateY(12px);
    transition:
      opacity 0.55s,
      transform 0.55s;
  }
  .reveal-ready.visible {
    opacity: 1;
    transform: none;
  }
  @keyframes menu-in {
    from {
      opacity: 0;
      transform: translateY(-7px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }
  @keyframes image-in {
    from {
      opacity: 0.4;
    }
    to {
      opacity: 1;
    }
  }
}
@layer responsive {
  @media (min-width: 1700px) {
    .hero-inner {
      padding-top: 170px;
    }
    .hero-photo {
      object-position: center 41%;
    }
  }
  @media (max-width: 1200px) {
    .container {
      width: calc(100% - 72px);
    }
    .header-inner {
      gap: 22px;
    }
    .desktop-nav {
      gap: 22px;
    }
    .header-phone {
      display: none;
    }
    .home-services {
      gap: 45px;
    }
    .product-feature {
      gap: 35px;
    }
    .contact-layout {
      gap: 45px;
    }
    .contact-copy h1 {
      font-size: 3.6rem;
    }
  }
  @media (max-width: 900px) {
    .container {
      width: calc(100% - 48px);
    }
    .header-inner {
      height: 92px;
      gap: 20px;
    }
    .brand-crop {
      width: 174px;
      height: 89px;
    }
    .brand img {
      width: 202px;
      height: 202px;
      top: -57px;
      left: -13px;
    }
    .desktop-nav {
      display: none;
    }
    .header-cta {
      margin-left: auto;
    }
    .menu-toggle {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 7px;
      width: 44px;
      height: 44px;
      border: 0;
      background: none;
    }
    .menu-toggle span {
      width: 23px;
      height: 1px;
      background: var(--ink);
      transition: transform 0.2s;
    }
    .menu-toggle[aria-expanded='true'] span:first-child {
      transform: translateY(4px) rotate(45deg);
    }
    .menu-toggle[aria-expanded='true'] span:last-child {
      transform: translateY(-4px) rotate(-45deg);
    }
    .home-hero {
      height: 620px;
      min-height: 0;
    }
    .hero-inner {
      padding-top: 160px;
    }
    .home-hero h1 {
      font-size: 4rem;
    }
    .trustbar {
      gap: 20px;
      flex-wrap: wrap;
    }
    .trustbar > a,
    .trustbar > span {
      font-size: 0.8125rem;
    }
    .home-services {
      gap: 32px;
      padding-block: 50px;
    }
    .service-photo img {
      height: 460px;
    }
    .home-services-copy h2 {
      font-size: 2.3rem;
    }
    .contact-strip-inner {
      gap: 30px;
    }
    .contact-strip h2 {
      font-size: 2rem;
    }
    .split-feature {
      gap: 35px;
    }
    .feature-image {
      height: 410px;
    }
    .product-feature {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .product-feature > .feature-copy {
      max-width: 600px;
    }
    .footer-top {
      grid-template-columns: 1.1fr 1fr;
      gap: 25px;
    }
    .footer-top > div:first-child {
      grid-row: span 2;
    }
    .footer-top > div:last-child {
      grid-column: 2;
    }
    .contact-form {
      padding: 26px;
    }
    .form-row {
      grid-template-columns: 1fr;
      gap: 0;
    }
    .contact-copy h1 {
      font-size: 3.2rem;
    }
    .contact-channels strong {
      font-size: 0.9375rem;
    }
    .about-proof {
      gap: 25px;
    }
  }
  @media (max-width: 700px) {
    .container {
      width: calc(100% - 40px);
    }
    .header-inner {
      height: 83px;
      gap: 13px;
    }
    .brand-crop {
      width: 154px;
      height: 81px;
    }
    .brand img {
      width: 183px;
      height: 183px;
      top: -52px;
      left: -12px;
    }
    .header-cta {
      display: none;
    }
    .menu-toggle {
      margin-left: auto;
    }
    body {
      padding-bottom: calc(63px + env(safe-area-inset-bottom));
    }
    html {
      scroll-padding-top: 95px;
    }
    .mobile-contact {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 35;
      display: grid;
      grid-template-columns: 1fr 1.25fr;
      background: #fff;
      box-shadow: 0 -3px 15px #0000000a;
      padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
      gap: 8px;
      border-top: 1px solid var(--line);
    }
    .mobile-contact a {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 46px;
      font-size: 0.875rem;
      font-weight: 600;
      border: 1px solid var(--line);
    }
    .mobile-contact a:last-child {
      background: var(--red);
      border-color: var(--red);
      color: #fff;
    }
    .home-hero {
      height: calc(100svh - 146px);
      min-height: 590px;
      max-height: 760px;
    }
    .hero-photo {
      object-position: 34% top;
    }
    .hero-shade {
      background: linear-gradient(
        0deg,
        #141414f5 0%,
        #141414b8 33%,
        #14141418 78%
      );
    }
    .hero-inner {
      position: absolute;
      bottom: 45px;
      left: 0;
      right: 0;
      padding-top: 0;
      padding-bottom: 0;
    }
    .hero-kicker {
      font-size: 0.6875rem;
      letter-spacing: 0.1em;
      margin-bottom: 17px;
    }
    .home-hero h1 {
      font-size: clamp(2.8rem, 9.6vw, 4rem);
      line-height: 1.06;
      letter-spacing: -0.04em;
    }
    .hero-description {
      font-size: 0.9375rem;
      margin-block: 20px 23px;
      max-width: 310px;
    }
    .mobile-only {
      display: block;
    }
    .home-hero .button {
      width: 100%;
      max-width: 340px;
      min-height: 54px;
    }
    .hero-phone {
      display: none;
    }
    .hero-bottom {
      bottom: 16px;
      font-size: 0.65rem;
    }
    .hero-bottom > span:first-child {
      letter-spacing: 0;
    }
    .hero-bottom > span:last-child {
      font-size: 0.6rem;
    }
    .trustbar {
      padding-block: 23px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 17px 12px;
    }
    .trustbar > a:first-child {
      grid-column: 1/-1;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--line);
    }
    .trustbar > a,
    .trustbar > span {
      gap: 8px;
      font-size: 0.75rem;
    }
    .trustbar .toshiba {
      font-size: 1.4rem;
      margin-right: 4px;
    }
    .trustbar svg {
      width: 18px;
    }
    .home-services {
      grid-template-columns: 1fr;
      gap: 28px;
      padding-block: 35px 38px;
    }
    .service-photo img {
      height: auto;
      aspect-ratio: 1.4;
      object-position: center;
    }
    .service-photo > span {
      font-size: 0.6875rem;
      padding: 9px 12px;
    }
    .home-services-copy .eyebrow {
      margin-bottom: 15px;
    }
    .home-services-copy h2 {
      font-size: 2.4rem;
    }
    .home-services-copy > p:not(.eyebrow) {
      margin-top: 17px;
      font-size: 0.9375rem;
    }
    .service-links {
      margin-top: 22px;
    }
    .service-links a {
      padding: 14px 0;
    }
    .service-links small {
      font-size: 0.8125rem;
    }
    .contact-strip {
      padding-block: 30px;
    }
    .contact-strip-inner {
      display: block;
      border-left: 2px solid var(--red);
      padding-left: 20px;
    }
    .contact-strip .eyebrow {
      font-size: 0.65rem;
      letter-spacing: 0.06em;
    }
    .contact-strip h2 {
      font-size: 2.05rem;
      max-width: 420px;
    }
    .contact-strip-actions {
      align-items: flex-start;
      gap: 14px;
      margin-top: 24px;
    }
    .contact-strip-actions .button {
      width: 100%;
    }
    .contact-strip-actions .simple-phone {
      align-self: center;
    }
    footer {
      padding-top: 25px;
    }
    .footer-top {
      display: flex;
      flex-direction: column;
      gap: 23px;
    }
    .footer-top .brand-crop {
      transform: none;
      margin: 0;
    }
    .footer-top .eyebrow {
      margin-top: 0;
      margin-bottom: 12px;
    }
    .footer-top > div > a:not(.brand),
    .footer-top > div > span {
      font-size: 0.9375rem;
      overflow-wrap: anywhere;
    }
    .footer-bottom {
      font-size: 0.6875rem;
      flex-direction: column;
      gap: 10px;
      margin-top: 25px;
      padding-block: 19px;
    }
    .page-intro {
      padding-block: 25px 33px;
    }
    .breadcrumb {
      font-size: 0.75rem;
      margin-bottom: 25px;
    }
    .page-intro h1 {
      font-size: 2.9rem;
    }
    .page-intro .eyebrow {
      font-size: 0.6875rem;
      margin-bottom: 17px;
    }
    .page-intro > p:last-child {
      font-size: 1rem;
      margin-top: 21px;
    }
    .split-feature {
      grid-template-columns: 1fr;
      gap: 30px;
      margin-bottom: 40px;
    }
    .feature-image {
      height: auto;
      aspect-ratio: 1.35;
    }
    .feature-copy h2 {
      font-size: 2.2rem;
      margin-bottom: 20px;
    }
    .feature-copy > p:not(.eyebrow) {
      font-size: 0.9375rem;
    }
    .feature-list li {
      font-size: 0.875rem;
    }
    .product-feature {
      gap: 30px;
      margin-bottom: 40px;
    }
    .gallery-bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 6px;
    }
    .room-tabs {
      gap: 22px;
    }
    .room-tabs button {
      font-size: 0.875rem;
    }
    .figure-note {
      font-size: 0.75rem;
    }
    .steps {
      grid-template-columns: 1fr;
      gap: 25px;
      margin-bottom: 38px;
      padding-block: 27px;
    }
    .steps > div + div {
      border-top: 1px solid var(--line);
      padding-top: 25px;
    }
    .step-number {
      margin-bottom: 11px;
      font-size: 0.6875rem;
    }
    .steps h3 {
      font-size: 1.7rem;
    }
    .steps p {
      margin-top: 11px;
    }
    .faq-section {
      padding-bottom: 40px;
    }
    .faq-section h2 {
      font-size: 2.2rem;
    }
    .faq-section summary {
      font-size: 0.9375rem;
    }
    details {
      padding-block: 18px;
    }
    .service-panel {
      padding: 25px;
    }
    .service-panel h3 {
      font-size: 1.9rem;
    }
    .service-answer {
      min-height: 180px;
      font-size: 0.9375rem;
    }
    .about-proof {
      grid-template-columns: 1fr;
      gap: 28px;
      margin-bottom: 40px;
    }
    .about-proof h3 {
      margin-top: 14px;
    }
    .contact-layout {
      grid-template-columns: 1fr;
      gap: 33px;
      padding-block: 25px 40px;
    }
    .contact-copy h1 {
      font-size: 3.2rem;
    }
    .contact-copy > p:not(.eyebrow):not(.breadcrumb) {
      margin-top: 21px;
    }
    .contact-copy .eyebrow {
      font-size: 0.6875rem;
    }
    .contact-channels {
      gap: 22px;
      margin-top: 27px;
    }
    .contact-channels strong {
      font-size: 1rem;
    }
    .contact-address {
      margin-top: 24px;
      padding-top: 20px;
    }
    .contact-form {
      padding: 23px 20px;
    }
    .contact-form h2 {
      font-size: 1.9rem;
    }
    .contact-form .button {
      width: 100%;
    }
    .contact-form > p {
      font-size: 0.875rem;
    }
    .privacy h2 {
      font-size: 1.75rem;
    }
    .privacy p {
      font-size: 0.9375rem;
    }
  }
  @media (max-width: 360px) {
    .container {
      width: calc(100% - 32px);
    }
    .home-hero h1 {
      font-size: 2.65rem;
    }
    .hero-bottom > span:last-child {
      display: none;
    }
    .trustbar > a,
    .trustbar > span {
      font-size: 0.6875rem;
    }
    .home-services-copy h2 {
      font-size: 2.1rem;
    }
    .contact-copy h1 {
      font-size: 2.9rem;
    }
  }
  @media (prefers-reduced-motion: reduce) {
    html {
      scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
      animation: none !important;
      transition: none !important;
    }
    .reveal-ready {
      opacity: 1;
      transform: none;
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  ::view-transition-group(*),
  ::view-transition-old(*),
  ::view-transition-new(*) {
    animation: none !important;
  }
}
