/** 美食抵家品牌網站樣式
 * 功能：共用導覽、餐廳 Threads 服務首頁、產品次頁、表單、RWD 與無障礙互動。
 */

:root {
  --paper: #fffaf0;
  --paper-strong: #f8efdf;
  --paper-soft: #fffdf8;
  --ink: #1f1b16;
  --ink-soft: #62594f;
  --line: #ded2c1;
  --line-dark: #aa9a86;
  --brand: #b45309;
  --brand-bright: #d97706;
  --brand-pale: #fef3c7;
  --brand-dark: #713407;
  --night: #201912;
  --white: #ffffff;
  --success: #176b4d;
  --danger: #a83d2d;
  --shadow: 0 20px 60px rgba(80, 48, 14, 0.12);
  --shadow-soft: 0 10px 34px rgba(80, 48, 14, 0.08);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(
      circle at 12% 8%,
      rgba(217, 119, 6, 0.08),
      transparent 24rem
    ),
    var(--paper);
  font-family:
    'PingFang TC', 'Noto Sans TC', 'Microsoft JhengHei', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.18;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.9rem, 5.4vw, 5.6rem);
  font-weight: 900;
}

h1 em {
  display: block;
  color: var(--brand);
  font-family: 'Songti TC', 'Noto Serif TC', ui-serif, serif;
  font-style: normal;
  font-weight: 800;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 3.7vw, 3.75rem);
  font-weight: 900;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.42rem;
  font-weight: 850;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: 10px;
  color: var(--white);
  background: var(--night);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 10px max(24px, calc((100vw - var(--max-width)) / 2));
  border-bottom: 1px solid rgba(170, 154, 134, 0.52);
  background: rgba(255, 250, 240, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand > span:last-child {
  display: grid;
  gap: 1px;
  min-width: max-content;
}

.brand strong {
  font-size: 18px;
  line-height: 1.25;
  white-space: nowrap;
}

.brand small {
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.35;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav a {
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--brand);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper-soft);
}

.nav-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-toggle[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--brand);
  box-shadow: 0 12px 26px rgba(180, 83, 9, 0.23);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--brand-dark);
  box-shadow: 0 15px 32px rgba(113, 52, 7, 0.25);
}

.button-small {
  min-height: 44px;
  padding: 10px 18px;
  color: var(--white) !important;
  font-size: 15px !important;
}

.button-outline {
  border: 2px solid var(--brand);
  color: var(--brand);
  background: transparent;
  box-shadow: none;
}

.button-outline:hover {
  color: var(--white);
}

.button[disabled] {
  transform: none;
  opacity: 0.56;
  cursor: wait;
}

.text-link {
  color: var(--brand-dark);
  font-size: 17px;
  font-weight: 800;
  text-underline-offset: 6px;
}

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

.section {
  padding-block: clamp(64px, 8vw, 104px);
}

.section-muted {
  background: var(--paper-strong);
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.45;
  text-transform: uppercase;
}

.hero {
  display: grid;
  align-items: center;
  gap: clamp(40px, 6vw, 78px);
  grid-template-columns: minmax(0, 1.1fr) minmax(350px, 0.7fr);
  padding-block: clamp(64px, 7vw, 92px);
}

.hero-copy {
  max-width: 760px;
}

.hero-lead {
  max-width: 700px;
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 20px;
}

.honesty-note {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.weekly-pack {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  background: var(--paper-soft);
  box-shadow: var(--shadow);
}

.weekly-pack-heading {
  display: grid;
  gap: 3px;
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--line);
}

.weekly-pack-heading span,
.weekly-pack-review span {
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

.weekly-pack-heading strong {
  font-size: 1.28rem;
}

.weekly-pack-list {
  display: grid;
  margin: 0;
  padding: 0 24px;
  list-style: none;
}

.weekly-pack-list li {
  display: grid;
  gap: 3px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.weekly-pack-list li:last-child {
  border-bottom: 0;
}

.weekly-pack-list span {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

.weekly-pack-review {
  display: grid;
  gap: 2px;
  padding: 18px 24px 20px;
  background: var(--brand-pale);
}

.weekly-pack-review strong {
  color: var(--brand-dark);
  font-size: 1.05rem;
}

.principles-strip {
  display: grid;
  border-block: 1px solid var(--line-dark);
  background: var(--brand-pale);
  grid-template-columns: repeat(3, 1fr);
}

.principles-strip span {
  padding: 20px 16px;
  border-right: 1px solid var(--line-dark);
  color: var(--brand-dark);
  font-weight: 850;
  text-align: center;
}

.principles-strip span:last-child {
  border-right: 0;
}

.section-heading {
  margin-bottom: clamp(34px, 4vw, 50px);
}

.section-heading.narrow {
  max-width: 850px;
}

.section-heading > p:last-child,
.split-heading > p {
  color: var(--ink-soft);
  font-size: 18px;
}

.service-heading {
  max-width: 780px;
}

.service-rhythm {
  border-top: 1px solid var(--line-dark);
}

.service-rhythm > div {
  display: grid;
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-dark);
  grid-template-columns: minmax(120px, 0.28fr) minmax(0, 1fr);
}

.service-rhythm > div > strong {
  color: var(--brand);
  font-size: 15px;
}

.service-rhythm h3 {
  margin-bottom: 5px;
}

.service-rhythm p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.owner-note {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  margin-top: 28px;
  padding: 18px 20px;
  border-left: 4px solid var(--brand);
  background: var(--brand-pale);
}

.owner-note span {
  color: var(--ink-soft);
}

.split-heading {
  display: grid;
  align-items: end;
  gap: 60px;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
}

.split-heading h2 {
  margin-bottom: 0;
}

.split-heading > p {
  margin-bottom: 8px;
}

.lead-section {
  display: grid;
  align-items: start;
  gap: clamp(42px, 6vw, 76px);
  grid-template-columns: minmax(0, 0.85fr) minmax(390px, 0.7fr);
}

.lead-copy {
  position: sticky;
  top: 120px;
}

.lead-copy h2 {
  font-size: clamp(2.1rem, 3.25vw, 3.35rem);
}

.lead-copy > p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 17px;
}

.fit-summary {
  display: grid;
  gap: 0;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper-soft);
}

.fit-summary > div {
  padding: 20px 22px;
}

.fit-summary > div + div {
  border-top: 1px solid var(--line);
}

.fit-summary h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.fit-summary ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 1.25em;
  color: var(--ink-soft);
  font-size: 15px;
}

.fit-summary-muted {
  background: var(--paper-strong);
}

.lead-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 3.2vw, 36px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: var(--paper-soft);
  box-shadow: var(--shadow);
}

.form-heading {
  margin-bottom: 6px;
}

.form-heading h3 {
  margin-bottom: 4px;
  font-size: 1.8rem;
}

.form-heading p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.lead-form label:not(.consent-row) {
  display: grid;
  gap: 7px;
}

.lead-form label > span:first-child {
  font-size: 16px;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 12px 14px;
  border: 1.5px solid var(--line-dark);
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: var(--white);
  font-size: 17px;
  line-height: 1.45;
}

.lead-form textarea {
  min-height: 120px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--brand-bright);
  outline: 3px solid rgba(217, 119, 6, 0.16);
}

.consent-row {
  display: grid;
  align-items: start;
  gap: 10px;
  grid-template-columns: 22px 1fr;
}

.consent-row input {
  width: 20px;
  min-height: 20px;
  margin-top: 3px;
}

.consent-row span {
  color: var(--ink-soft);
  font-size: 14px !important;
  font-weight: 500 !important;
}

.consent-row a,
.form-fallback a {
  color: var(--brand-dark);
  font-weight: 800;
}

.button-submit {
  width: 100%;
  margin-top: 4px;
}

.form-status {
  margin: 0;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 750;
}

.form-status:empty {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.form-status[data-tone='success'] {
  padding: 12px 14px;
  color: var(--success);
  background: #dcf7e9;
}

.form-status[data-tone='error'] {
  padding: 12px 14px;
  color: var(--danger);
  background: #fde8e3;
}

.form-fallback {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  text-align: center;
}

.field-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.faq-layout {
  display: grid;
  align-items: start;
  gap: clamp(42px, 6vw, 70px);
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
}

.faq-layout .section-heading {
  position: sticky;
  top: 120px;
  margin-bottom: 0;
}

.faq-layout h2 {
  font-size: clamp(2.05rem, 3.2vw, 3.25rem);
}

.faq-list {
  border-top: 1px solid var(--line-dark);
}

.faq-list details {
  border-bottom: 1px solid var(--line-dark);
}

.faq-list summary {
  position: relative;
  padding: 21px 44px 21px 0;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.45;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 22px;
  right: 4px;
  color: var(--brand);
  content: '+';
  font-size: 27px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: '−';
}

.faq-list details p {
  max-width: 720px;
  padding: 0 44px 22px 0;
  color: var(--ink-soft);
}

.ecosystem-section {
  padding-block: 72px;
  border-block: 1px solid var(--line-dark);
  background: var(--brand-pale);
}

.ecosystem-grid {
  display: grid;
  align-items: end;
  gap: 60px;
  grid-template-columns: 0.8fr 1.2fr;
}

.ecosystem-grid h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.ecosystem-links {
  display: grid;
  gap: 10px;
}

.ecosystem-links a {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 18px;
  border: 1px solid var(--line-dark);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.ecosystem-links a::after {
  color: var(--brand);
  content: '→';
  font-size: 22px;
  font-weight: 900;
}

.ecosystem-links span {
  min-width: 0;
  margin-left: auto;
  color: var(--ink-soft);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.site-footer {
  padding: 48px max(24px, calc((100vw - var(--max-width)) / 2)) 28px;
  color: rgba(255, 255, 255, 0.84);
  background: var(--night);
}

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

.footer-brand .brand-mark {
  box-shadow: none;
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.58);
}

.footer-main nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-main nav a,
.footer-legal a {
  text-decoration: none;
}

.footer-main nav a:hover,
.footer-legal a:hover {
  color: #f6bd69;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
}

.footer-legal span:nth-child(2) {
  display: flex;
  gap: 18px;
}

/* 次頁共用 */
.subpage-hero {
  display: grid;
  align-items: center;
  gap: clamp(42px, 6vw, 72px);
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  padding-block: clamp(64px, 8vw, 92px);
}

.subpage-hero h1 {
  font-size: clamp(2.8rem, 4.8vw, 5rem);
}

.subpage-hero h1 em {
  display: inline;
}

.subpage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.phone-gallery {
  position: relative;
  display: grid;
  min-height: 590px;
  place-items: center;
}

.phone-gallery::before {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: var(--brand-pale);
  content: '';
}

.phone-shot {
  position: absolute;
  width: min(250px, 56%);
  margin: 0;
  overflow: hidden;
  border: 8px solid var(--night);
  border-radius: 34px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.phone-shot img {
  width: 100%;
  height: auto;
}

.phone-shot:first-child {
  z-index: 2;
  transform: translate(-62px, -5px) rotate(-4deg);
}

.phone-shot:last-child {
  transform: translate(78px, 45px) rotate(5deg);
}

.feature-list {
  display: grid;
  border-top: 1px solid var(--line-dark);
  grid-template-columns: 1fr;
}

.feature-list article {
  display: grid;
  gap: 24px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line-dark);
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
}

.feature-list h3 {
  margin-bottom: 0;
}

.feature-list article p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.about-hero {
  max-width: 980px;
  padding-block: clamp(72px, 9vw, 104px);
}

.about-hero h1 {
  font-size: clamp(2.9rem, 5.2vw, 5.4rem);
}

.about-lead {
  max-width: 780px;
  color: var(--ink-soft);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}

.company-facts {
  display: grid;
  border-top: 1px solid var(--line-dark);
  grid-template-columns: 1fr;
}

.company-facts article {
  display: grid;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-dark);
  grid-template-columns: minmax(210px, 0.38fr) minmax(0, 1fr);
}

.company-facts h3 {
  margin-bottom: 0;
}

.company-facts p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.team-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.team-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper-soft);
}

.team-card .team-role {
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.team-card p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
}

@media (max-width: 1020px) {
  .main-nav {
    position: fixed;
    inset: 76px 0 auto;
    display: none;
    max-height: calc(100vh - 76px);
    align-items: stretch;
    gap: 0;
    padding: 18px 24px 28px;
    overflow-y: auto;
    border-bottom: 1px solid var(--line-dark);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    min-height: 52px;
    padding: 13px 2px;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
  }

  .main-nav .button {
    margin-top: 16px;
    border-bottom: 0;
  }

  .nav-toggle {
    display: block;
  }

  .hero,
  .subpage-hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .weekly-pack {
    width: min(100%, 620px);
    justify-self: center;
  }

  .lead-section {
    grid-template-columns: 1fr;
  }

  .lead-copy,
  .faq-layout .section-heading {
    position: static;
  }

  .faq-layout,
  .ecosystem-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .site-header {
    min-height: 68px;
    padding-inline: 16px;
  }

  .main-nav {
    inset: 68px 0 auto;
    max-height: calc(100vh - 68px);
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 23px;
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
  }

  .section-shell {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .section {
    padding-block: 64px;
  }

  .hero {
    gap: 40px;
    padding-block: 52px 64px;
  }

  h1 {
    font-size: clamp(2.45rem, 10.8vw, 3.45rem);
  }

  h2 {
    font-size: clamp(2rem, 8.8vw, 3rem);
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    min-height: 48px;
    padding: 10px 4px;
    text-align: center;
  }

  .about-hero h1,
  .subpage-hero h1 {
    font-size: clamp(2.25rem, 11vw, 3rem);
  }

  .weekly-pack-heading,
  .weekly-pack-list,
  .weekly-pack-review {
    padding-inline: 18px;
  }

  .principles-strip {
    grid-template-columns: 1fr;
  }

  .principles-strip span {
    padding-block: 14px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
    font-size: 14px;
  }

  .principles-strip span:last-child {
    border-bottom: 0;
  }

  .service-rhythm > div {
    gap: 8px;
    grid-template-columns: 1fr;
  }

  .owner-note {
    display: grid;
  }

  .split-heading,
  .faq-layout,
  .ecosystem-grid,
  .feature-list,
  .company-facts,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .feature-list article,
  .company-facts article {
    gap: 7px;
    grid-template-columns: 1fr;
  }

  .split-heading {
    align-items: start;
    gap: 22px;
  }

  .lead-form {
    padding: 24px 18px;
  }

  .ecosystem-links a {
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .ecosystem-links span {
    margin-left: 0;
  }

  .ecosystem-links a::after {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .footer-main {
    flex-direction: column;
  }

  .footer-main nav {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }

  .footer-legal {
    flex-direction: column;
  }

  .subpage-hero {
    min-height: auto;
    padding-block: 60px;
  }

  .phone-gallery {
    min-height: 420px;
  }

  .phone-gallery::before {
    width: 290px;
    height: 290px;
  }

  .phone-shot {
    width: 210px;
  }

  .phone-shot:first-child {
    transform: none;
  }

  .phone-shot:last-child {
    display: none;
  }
}

@media (max-width: 380px) {
  .phone-gallery {
    min-height: 380px;
  }

  .phone-gallery::before {
    width: 260px;
    height: 260px;
  }

  .phone-shot {
    width: 190px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

:focus-visible {
  outline: 3px solid var(--brand-bright);
  outline-offset: 4px;
}
