:root {
  --paper: #EDE8DC;
  --paper-2: #E3DCCC;
  --ink: #18170F;
  --ink-soft: #2A2820;
  --brick: #C1440E;
  --brick-dark: #9A350A;
  --forest: #333D29;
  --gold: #B4922C;
  --line: rgba(24, 23, 15, 0.16);
  --line-soft: rgba(24, 23, 15, 0.08);
}

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

/* ================= SCROLL REVEAL ================= */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal],
  [data-reveal-group] > * {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .7s cubic-bezier(.16, .84, .44, 1),
                transform .7s cubic-bezier(.16, .84, .44, 1);
    will-change: opacity, transform;
  }

  [data-reveal].in-view,
  [data-reveal-group] > *.in-view {
    opacity: 1;
    transform: translateY(0);
  }
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  font-family: 'Manrope', Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 72px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: radial-gradient(rgba(24, 23, 15, 0.05) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: .5;
}

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 44px;
  position: relative;
  z-index: 2;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: 'Unbounded', sans-serif;
  letter-spacing: -0.01em;
}

.mono {
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: .02em;
}

section {
  position: relative;
  z-index: 2;
}

/* --- viewfinder corner-bracket signature --- */
.frame {
  position: relative;
}

.frame::before, .frame::after,
.frame .c3, .frame .c4 {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--brick);
  z-index: 3;
  transition: all .25s ease;
}

.frame::before {
  top: -1px;
  left: -1px;
  border-top: 3px solid;
  border-left: 3px solid;
}

.frame::after {
  top: -1px;
  right: -1px;
  border-top: 3px solid;
  border-right: 3px solid;
}

.frame .c3 {
  bottom: -1px;
  left: -1px;
  border-bottom: 3px solid var(--brick);
  border-left: 3px solid var(--brick);
}

.frame .c4 {
  bottom: -1px;
  right: -1px;
  border-bottom: 3px solid var(--brick);
  border-right: 3px solid var(--brick);
}

.frame:hover::before, .frame:hover::after, .frame:hover .c3, .frame:hover .c4 {
  width: 28px;
  height: 28px;
}

.rec-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #fff;
  background: rgba(0, 0, 0, .55);
  padding: 5px 10px;
  border-radius: 20px;
}

.rec-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brick);
  animation: blink 1.6s infinite;
}

@keyframes blink {
  0%, 60% {
    opacity: 1;
  }
  30% {
    opacity: .25;
  }
}

/* --- image placeholders --- */
.ph {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #EDE8DC;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px;
  letter-spacing: .03em;
  padding: 16px;
  background: linear-gradient(160deg, #3a3a34, #161510);
}

.ph.light {
  background: linear-gradient(160deg, #c9c2ac, #a19878);
  color: #242118;
}

.ph.forest {
  background: linear-gradient(160deg, #4b5a3e, #242c1c);
}

.ph.person {
  background: linear-gradient(180deg, #141410, #000);
}

/* ================= HEADER ================= */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 44px;
  border-bottom: 1px solid var(--line);
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Unbounded';
  font-weight: 800;
  font-size: 15px;
  transform: rotate(-3deg);
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Unbounded';
  font-weight: 700;
  font-size: 16px;
  line-height: 1.15;
}

.logo-sub {
  font-size: 12px;
  color: #5c5a4f;
}

.phone-block {
  text-align: right;
}

.phone-num {
  font-family: 'JetBrains Mono';
  font-weight: 700;
  font-size: 17px;
}

.phone-sub {
  font-size: 12px;
  color: #5c5a4f;
  margin-top: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--brick);
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
  padding: 14px 26px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .04em;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
  transition: background .2s ease;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}

.btn:hover {
  background: var(--brick-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-shrink: 0;
}

/* ================= HERO ================= */
.hero {
  padding: 70px 0 40px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--brick);
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--brick);
  display: inline-block;
  flex-shrink: 0;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero h1 {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.03em;
}

.hero h1 em {
  font-style: normal;
  color: var(--brick);
}

.hero-p {
  margin-top: 26px;
  font-size: 18px;
  max-width: 480px;
  color: #3f3d34;
  line-height: 1.55;
}

.cat-list {
  display: flex;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cat-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.cat-item:first-child {
  padding-left: 0;
}

.cat-item:last-child {
  border-right: none;
}

.cat-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cat-idx {
  font-family: 'JetBrains Mono';
  font-size: 12px;
  color: var(--brick);
  font-weight: 600;
}

.cat-name {
  font-family: 'Unbounded';
  font-weight: 600;
  font-size: 19px;
}

.hero-cta {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  border: 1px solid var(--line);
}

.hero-cta-left {
  background: var(--ink);
  color: var(--paper);
  padding: 46px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 52px;
}

.hero-cta-left p {
  font-family: 'Unbounded';
  font-size: 30px;
  line-height: 1.35;
  font-weight: 500;
}

.hero-cta-left p b {
  color: var(--brick);
  font-weight: 700;
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--brick);
  color: #fff;
  padding: 22px 28px;
  cursor: pointer;
  font-family: 'Unbounded';
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  transition: background .2s ease;
  -webkit-tap-highlight-color: transparent;
}

.cta-strip:hover {
  background: var(--brick-dark);
}

.cta-strip .arrow-box {
  width: 38px;
  height: 38px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-cta-right {
  min-height: 290px;
  overflow: hidden;
  background: #141410;
}

.hero-cta-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ================= NAV INDEX ================= */
.index-nav {
  padding: 0 0 20px;
}

.index-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 1px;
  background: var(--line);
}

.index-card {
  background: var(--paper);
  padding: 38px 32px;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.index-card .num {
  font-family: 'JetBrains Mono';
  color: var(--brick);
  font-size: 13px;
  font-weight: 700;
}

.index-card .name {
  font-family: 'Unbounded';
  font-size: 28px;
  font-weight: 700;
  margin-top: auto;
}

.index-card .arrow {
  align-self: flex-end;
  font-size: 22px;
  color: #a09a86;
}

.index-card.photo {
  padding: 0;
  min-height: 210px;
}

/* ================= SECTION HEADS ================= */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 46px;
  padding-bottom: 22px;
  border-bottom: 2px solid var(--ink);
}

.section-head h2 {
  font-size: 42px;
  font-weight: 800;
}

.section-head .tag {
  font-family: 'JetBrains Mono';
  font-size: 13px;
  color: var(--brick);
  text-align: right;
  max-width: 220px;
  font-weight: 600;
}

/* ================= SERVICES ================= */
.services {
  padding: 90px 0;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 50px;
}

.service-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 20px;
}

.service-num {
  font-family: 'JetBrains Mono';
  font-size: 14px;
  color: var(--brick);
  font-weight: 700;
  flex-shrink: 0;
}

.service h3 {
  font-size: 25px;
  font-weight: 700;
}

.video-ph {
  aspect-ratio: 9/16;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  background: #141410;
}

.video-ph.wide {
  aspect-ratio: 16/9;
}

.video-ph video,
.video-ph iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 0;
}

.badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.badge {
  font-family: 'JetBrains Mono';
  font-size: 13.5px;
  font-weight: 600;
  padding: 11px 18px;
  border: 1px solid var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.badge.days {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.badge.price {
  background: transparent;
  color: var(--ink);
}

.badge.link {
  background: var(--brick);
  color: #fff;
  border-color: var(--brick);
}

.triple-video {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
}

.triple-video .video-ph {
  flex: 1;
  margin-bottom: 0;
  min-width: 0;
}

/* ================= PROCESS TIMELINE ================= */
.process {
  background: var(--ink);
  color: var(--paper);
  padding: 100px 0;
}

.process .section-head {
  border-bottom: 2px solid rgba(237, 232, 220, .25);
}

.process .section-head .tag {
  color: #c9a227;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(237, 232, 220, .4) 0 8px, transparent 8px 16px);
  z-index: 0;
}

.t-node {
  position: relative;
  z-index: 1;
}

.t-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono';
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 22px;
}

.t-card {
  padding: 26px 22px;
  min-height: 150px;
}

.t-card h4 {
  font-family: 'JetBrains Mono';
  font-size: 16px;
  letter-spacing: .06em;
  margin-bottom: 14px;
}

.t-card p {
  font-size: 14.5px;
  line-height: 1.5;
  opacity: .85;
}

.t-card.c1 {
  background: #252318;
}
.t-card.c2 {
  background: #3a3a2f;
}
.t-card.c3 {
  background: var(--forest);
}
.t-card.c4 {
  background: var(--brick);
}

.final-cta {
  margin-top: 10px;
  border: 1px solid rgba(237, 232, 220, .25);
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 26px;
  padding: 34px 40px;
}

.final-cta p {
  font-family: 'Unbounded';
  color: var(--gold);
  font-weight: 700;
  font-size: 23px;
  line-height: 1.35;
}

.final-cta .btn.small {
  font-size: 15px;
  padding: 18px 26px;
}

.final-cta .thumb {
  width: 140px;
  height: 90px;
  flex-shrink: 0;
}

/* ================= GALLERY ================= */
.gallery {
  padding: 90px 0;
}

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

.gallery-item {
  min-height: 230px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ================= FOOTER ================= */
footer {
  background: var(--ink);
  color: var(--paper);
  padding: 90px 0 50px;
  border-top: 6px solid var(--brick);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 70px;
}

.footer-col .label {
  font-family: 'JetBrains Mono';
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #9a9686;
  margin-bottom: 10px;
}

.footer-col .value {
  display: block;
  font-family: 'Unbounded';
  color: var(--brick);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 38px;
  word-break: break-word;
}

.footer-col .social a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Unbounded';
  color: var(--paper);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
  transition: color .2s ease;
}

.footer-col .social a:hover {
  color: var(--brick);
}

.footer-col .social a::before {
  content: "→";
  color: var(--brick);
  font-family: 'JetBrains Mono';
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(237, 232, 220, .15);
  font-family: 'JetBrains Mono';
  font-size: 12px;
  color: #8b8878;
  gap: 16px;
  flex-wrap: wrap;
}

/* ================= PHONE / EMAIL COPY ================= */
.phone-copy,
.email-copy {
  cursor: pointer;
  position: relative;
}

@media (hover: hover) and (pointer: fine) {
  .phone-copy,
  .email-copy {
    transition: color .2s ease, opacity .2s ease;
    text-decoration: underline;
    text-decoration-color: transparent;
    text-underline-offset: 4px;
    transition-property: color, text-decoration-color, opacity;
  }

  .phone-copy::after,
  .email-copy::after {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-left: 9px;
    vertical-align: middle;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C1440E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='9' y='9' width='11' height='11' rx='1.5'/%3E%3Cpath d='M5 15H4a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v1'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    transform: translateY(2px);
    transition: opacity .2s ease, transform .2s ease;
  }

  .phone-copy:hover,
  .email-copy:hover {
    color: var(--brick);
    text-decoration-color: currentColor;
    opacity: .85;
  }

  .footer-col .value.phone-copy:hover,
  .footer-col .value.email-copy:hover {
    color: var(--brick);
    opacity: .7;
  }

  .phone-copy:hover::after,
  .email-copy:hover::after {
    opacity: 1;
    transform: translateY(0);
  }

  .youtube-link {
    transition: opacity .2s ease, text-decoration-color .2s ease;
    text-decoration: underline;
    text-decoration-color: transparent;
    text-underline-offset: 4px;
  }

  .youtube-link::after {
    content: "↗";
    display: inline-block;
    margin-left: 8px;
    font-size: .6em;
    opacity: 0;
    transform: translate(-4px, 2px);
    transition: opacity .2s ease, transform .2s ease;
  }

  .youtube-link:hover {
    opacity: .7;
    text-decoration-color: currentColor;
  }

  .youtube-link:hover::after {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.copy-toast {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--paper);
  font-family: 'JetBrains Mono';
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 4px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 20;
}

.copy-toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}

.phone-menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 10px);
  transform: translateX(-50%) translateY(-6px) scale(.96);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, .22);
  z-index: 30;
  display: none;
  overflow: hidden;
  min-width: 210px;
  opacity: 0;
  transition: opacity .16s ease, transform .16s ease;
}

.phone-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--paper);
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.phone-menu.open {
  display: block;
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
}

.phone-menu button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 18px;
  background: none;
  border: none;
  font-family: 'Unbounded';
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: background .15s ease, color .15s ease;
}

.phone-menu button + button {
  border-top: 1px solid var(--line);
}

.phone-menu button svg {
  flex-shrink: 0;
  color: var(--brick);
}

.phone-menu button:hover,
.phone-menu button:active {
  background: var(--paper-2);
  color: var(--brick);
}

/* ================= BOTTOM NAV ================= */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background: var(--ink);
  border-top: 2px solid var(--brick);
  padding: 0;
  padding-bottom: env(safe-area-inset-bottom, 0);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.35);
  -webkit-tap-highlight-color: transparent;
}

.bnav-item,
.bnav-call {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px 4px 10px;
  color: rgba(237, 232, 220, 0.55);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
  min-width: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.bnav-item svg,
.bnav-call svg {
  flex-shrink: 0;
  display: block;
}

.bnav-item:hover,
.bnav-item.active {
  color: var(--paper);
}

.bnav-item.active {
  color: var(--brick);
}

.bnav-call {
  flex: 1.15;
  background: var(--brick);
  color: #fff;
  gap: 4px;
}

.bnav-call:hover {
  background: var(--brick-dark);
  color: #fff;
}

/* ================= LARGE DESKTOP / FULLHD ================= */
@media (min-width: 1441px) {
  .wrap {
    max-width: 1520px;
  }

  .hero-grid {
    gap: 48px;
  }

  .hero h1 {
    font-size: 68px;
  }

  .cat-idx {
    font-size: 14px;
  }

  .cat-name {
    font-size: 24px;
  }

  .hero-cta-left p {
    font-size: 34px;
  }

  .cat-item {
    padding: 26px 28px;
  }
}

@media (min-width: 1800px) {
  .wrap {
    max-width: 1720px;
  }

  .hero h1 {
    font-size: 76px;
  }

  .cat-idx {
    font-size: 15px;
  }

  .cat-name {
    font-size: 28px;
  }

  .cat-item {
    padding: 30px 32px;
  }

  .hero-cta-left p {
    font-size: 38px;
  }
}

/* ================= TABLET ================= */
@media (max-width: 1024px) {
  .wrap {
    padding: 0 28px;
  }

  header {
    padding: 24px 28px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-grid {
    gap: 36px;
  }

  .service-grid {
    gap: 40px 30px;
  }

  .section-head h2 {
    font-size: 36px;
  }

  .footer-col .value {
    font-size: 26px;
  }
}

/* ================= MOBILE / TABLET PORTRAIT ================= */
@media (max-width: 900px) {
  .wrap {
    padding: 0 20px;
  }

  header {
    padding: 18px 20px;
    flex-wrap: wrap;
  }

  .header-actions {
    gap: 14px;
  }

  .phone-num {
    font-size: 14px;
  }

  .phone-sub {
    font-size: 11px;
  }

  .btn {
    padding: 12px 18px;
    font-size: 13px;
  }

  .hero {
    padding: 48px 0 32px;
  }

  .hero-grid {
    gap: 32px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-p {
    font-size: 16px;
    margin-top: 18px;
  }

  .cat-list {
    flex-direction: column;
    border-bottom: none;
  }

  .cat-name {
    font-size: 17px;
  }

  .cat-item {
    padding: 16px 4px;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .cat-item:first-child {
    padding-left: 4px;
    border-top: 1px solid var(--line);
  }

  .cat-item:last-child {
    border-bottom: 1px solid var(--line);
  }

  .hero-cta {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .hero-cta-left {
    padding: 28px 24px;
    gap: 28px;
  }

  .hero-cta-left p {
    font-size: 23px;
  }

  .cta-strip {
    padding: 16px 20px;
    font-size: 16px;
  }

  .cta-strip .arrow-box {
    width: 32px;
    height: 32px;
  }

  .hero-cta-right {
    min-height: 220px;
  }

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

  .index-card {
    min-height: 140px;
    padding: 28px 24px;
  }

  .index-card .name {
    font-size: 24px;
  }

  .index-card.photo {
    min-height: 180px;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 32px;
    padding-bottom: 16px;
  }

  .section-head h2 {
    font-size: 30px;
  }

  .section-head .tag {
    text-align: left;
    max-width: none;
  }

  .services {
    padding: 60px 0;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .service h3 {
    font-size: 20px;
  }

  .process {
    padding: 60px 0;
  }

  .timeline {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .timeline::before {
    display: none;
  }

  .t-card {
    padding: 20px 16px;
    min-height: 130px;
  }

  .t-card h4 {
    font-size: 14px;
  }

  .t-card p {
    font-size: 13.5px;
  }

  .final-cta {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px 20px;
    gap: 20px;
    justify-items: center;
  }

  .final-cta p {
    font-size: 18px;
  }

  .final-cta .thumb {
    width: 100%;
    max-width: 200px;
    height: 110px;
  }

  .gallery {
    padding: 60px 0;
  }

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

  .gallery-item {
    min-height: 160px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }

  .footer-col .value {
    font-size: 22px;
    margin-bottom: 28px;
  }

  .footer-col .social a {
    font-size: 17px;
  }

  footer {
    padding: 60px 0 40px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* ================= PHONE ================= */
@media (max-width: 600px) {
  .wrap {
    padding: 0 16px;
  }

  header {
    padding: 14px 16px;
  }

  .logo {
    gap: 10px;
  }

  .logo-mark {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .logo-text {
    font-size: 13px;
  }

  .logo-sub {
    font-size: 10px;
  }

  .header-actions {
    gap: 10px;
  }

  .phone-block {
    display: none;
  }

  .btn {
    padding: 10px 14px;
    font-size: 12px;
    clip-path: none;
    border-radius: 4px;
  }

  .hero {
    padding: 36px 0 24px;
  }

  .eyebrow {
    font-size: 11px;
    margin-bottom: 16px;
    letter-spacing: .08em;
  }

  .eyebrow::before {
    width: 24px;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.1;
  }

  .hero-p {
    font-size: 15px;
    margin-top: 14px;
  }

  .cat-name {
    font-size: 15px;
  }

  .cat-item {
    padding: 14px 2px;
  }

  .cat-idx {
    font-size: 11px;
  }

  .hero-cta-left {
    padding: 22px 18px;
    gap: 22px;
  }

  .hero-cta-left p {
    font-size: 19px;
  }

  .cta-strip {
    padding: 14px 16px;
    font-size: 14px;
    gap: 12px;
  }

  .cta-strip .arrow-box {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .hero-cta-right {
    min-height: 180px;
  }

  .index-card {
    min-height: 120px;
    padding: 22px 18px;
  }

  .index-card .name {
    font-size: 20px;
  }

  .index-card.photo {
    min-height: 160px;
  }

  .section-head h2 {
    font-size: 26px;
  }

  .section-head .tag {
    font-size: 12px;
  }

  .services {
    padding: 48px 0;
  }

  .service-head {
    gap: 10px;
    margin-bottom: 14px;
  }

  .service h3 {
    font-size: 18px;
  }

  .service-num {
    font-size: 12px;
  }

  .badge {
    font-size: 12px;
    padding: 9px 12px;
  }

  .process {
    padding: 48px 0;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .t-dot {
    width: 26px;
    height: 26px;
    font-size: 11px;
    margin-bottom: 12px;
  }

  .t-card {
    min-height: auto;
    padding: 18px 16px;
  }

  .final-cta {
    padding: 22px 16px;
  }

  .final-cta p {
    font-size: 16px;
  }

  .final-cta .btn.small {
    width: 100%;
    font-size: 13px;
    padding: 14px 18px;
    clip-path: none;
    border-radius: 4px;
  }

  .gallery {
    padding: 48px 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4px;
  }

  .gallery-item {
    min-height: 130px;
  }

  .frame::before, .frame::after,
  .frame .c3, .frame .c4 {
    width: 14px;
    height: 14px;
  }

  .frame:hover::before, .frame:hover::after,
  .frame:hover .c3, .frame:hover .c4 {
    width: 18px;
    height: 18px;
  }

  .rec-tag {
    top: 10px;
    left: 10px;
    font-size: 10px;
    padding: 4px 8px;
  }

  footer {
    padding: 48px 0 40px;
  }

  .bnav-item,
  .bnav-call {
    padding: 10px 2px 8px;
    font-size: 9px;
    gap: 3px;
  }

  .bnav-item svg,
  .bnav-call svg {
    width: 18px;
    height: 18px;
  }

  .footer-col .value {
    font-size: 18px;
  }

  .footer-col .social a {
    font-size: 15px;
  }

  .footer-bottom {
    font-size: 11px;
  }

  /* Floating call — phone */
}

/* ================= SMALL PHONE ================= */
@media (max-width: 380px) {
  .hero h1 {
    font-size: 24px;
  }

  .hero-p {
    font-size: 14px;
  }

  .section-head h2 {
    font-size: 22px;
  }

  .service h3 {
    font-size: 16px;
  }

  .badge {
    font-size: 11px;
    padding: 8px 10px;
  }

  .cta-strip {
    font-size: 13px;
    padding: 12px 14px;
  }

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

  .gallery-item {
    min-height: 160px;
  }

}
