/* Shree Sonal Readymix Concrete — design system */

:root {
  --bg: #f5f3ef;
  --paper: #fbfaf7;
  --white: #ffffff;
  --ink: #1b2430;
  --ink-soft: #3c4858;
  --muted: #5c6775;
  --line: #e5e0d8;
  --concrete: #cfc8be;
  --orange: #b45309;
  --orange-deep: #8a3e08;
  --orange-soft: #f8efe6;
  --blue: #1e4d7b;
  --blue-deep: #163a5c;
  --blue-soft: #e8f0f7;
  --green: #146c43;
  --green-soft: #e7f6ee;
  --shadow: 0 18px 44px rgba(27, 36, 48, 0.08);
  --shadow-sm: 0 8px 22px rgba(27, 36, 48, 0.06);
  --radius: 22px;
  --header: 78px;
  --container: 1360px;
  --font: "Manrope", "Segoe UI", sans-serif;
  --display: "Plus Jakarta Sans", "Segoe UI", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 1.05rem;
}

img { max-width: 100%; display: block; }

a { color: var(--blue); text-underline-offset: 3px; }
a:hover { color: var(--orange-deep); }

button, input, select, textarea { font: inherit; color: inherit; }

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  background: var(--ink);
  color: white;
  padding: 8px 12px;
  z-index: 80;
  border-radius: 8px;
}
.skip-link:focus { top: 12px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  letter-spacing: -0.035em;
  line-height: 1.12;
  font-weight: 700;
  margin: 0 0 12px;
}

h1 { font-size: clamp(2.6rem, 5.2vw, 4.7rem); }
h2 { font-size: clamp(1.9rem, 3.2vw, 3rem); }
h3 { font-size: 1.28rem; line-height: 1.3; }

p { margin: 0 0 14px; }
p:last-child { margin-bottom: 0; }

.lede, .muted { color: var(--ink-soft); }
.muted { color: var(--muted); }

.label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--orange-deep);
  font-weight: 700;
  font-size: 0.92rem;
}

.label::before {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--orange);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 250, 247, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.site-header.is-stuck {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(27, 36, 48, 0.05);
}

.nav-bar {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: var(--header);
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-right: auto;
}

.brand img { height: 62px; width: auto; }

.nav ul {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 11px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 999px;
  position: relative;
}

.nav a:hover { color: var(--blue-deep); background: var(--blue-soft); }

.nav a[aria-current="page"] {
  color: var(--blue-deep);
}

.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  border-radius: 2px;
  background: var(--orange);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: white;
  cursor: pointer;
}

.burger,
.burger::before,
.burger::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 2px;
  position: relative;
}

.burger::before,
.burger::after {
  content: "";
  position: absolute;
  left: 0;
}

.burger::before { top: -6px; }
.burger::after { top: 6px; }

.menu-toggle[aria-expanded="true"] .burger { background: transparent; }
.menu-toggle[aria-expanded="true"] .burger::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .burger::after { top: 0; transform: rotate(-45deg); }

.nav-mobile-cta { display: none; }

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.btn .arrow {
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.22s ease;
}

.btn:hover .arrow { transform: translateX(3px) rotate(45deg); }

.btn-primary {
  background: linear-gradient(180deg, #c26112, var(--orange));
  color: white;
  box-shadow: 0 10px 22px rgba(180, 83, 9, 0.22);
}

.btn-primary:hover {
  color: white;
  background: var(--orange-deep);
  transform: translateY(-2px);
}

.btn-line {
  background: white;
  color: var(--blue-deep);
  border-color: #d5dde6;
}

.btn-line:hover {
  color: var(--blue-deep);
  border-color: var(--blue);
  transform: translateY(-2px);
}

.nav-cta { min-height: 42px; padding-inline: 16px; }
a.btn.nav-mobile-cta { display: none; }

.actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  padding: 40px 0 40px;
  background:
    radial-gradient(720px 320px at 100% -10%, rgba(180, 83, 9, 0.1), transparent 60%),
    radial-gradient(640px 280px at -10% 40%, rgba(30, 77, 123, 0.08), transparent 55%),
    linear-gradient(180deg, #fbfaf7, #f3f0ea);
}

.hero-grid,
.split,
.feature,
.contact-grid,
.footer-grid,
.two {
  display: grid;
  gap: 36px;
}

.hero-grid { grid-template-columns: 1.05fr 0.95fr; align-items: center; }

.hero .lede { font-size: 1.12rem; max-width: 42rem; }

.hero .actions { margin: 26px 0 8px; }

.hero-visual { position: relative; }

.frame img,
.media img {
  width: 100%;
  object-fit: cover;
  border-radius: 28px;
}

.hero-slider {
  position: relative;
  height: 520px;
  border-radius: 28px;
  overflow: hidden;
  background: #e7e2da;
  box-shadow: var(--shadow);
}

.hero-slides { position: relative; height: 100%; }

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.hero-slide.is-active { opacity: 1; z-index: 1; }

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-slide.is-active img { animation: hero-zoom 7.2s ease forwards; }

@keyframes hero-zoom {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}

.hero-controls {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
}

.hero-nav,
.hero-dot {
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.hero-nav {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.hero-nav:hover { background: var(--orange-soft); color: var(--orange-deep); }

.hero-dots { display: flex; align-items: center; gap: 6px; padding: 0 6px; }

.hero-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border-radius: 999px;
  background: #c5ced6;
}

.hero-dot[aria-current="true"] {
  width: 20px;
  background: var(--orange);
}

.hero-pause .icon-play { display: none; }
.hero-pause[aria-pressed="true"] .icon-pause { display: none; }
.hero-pause[aria-pressed="true"] .icon-play { display: block; }

.ticker {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: stretch;
  background: white;
  border-bottom: 1px solid var(--line);
}

.ticker-label {
  margin: 0;
  display: grid;
  place-items: center;
  padding: 0 22px;
  background: var(--orange-soft);
  color: var(--orange-deep);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.ticker-viewport {
  position: relative;
  overflow: hidden;
}

.ticker-viewport::before,
.ticker-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 28px;
  z-index: 1;
  pointer-events: none;
}

.ticker-viewport::before { left: 0; background: linear-gradient(90deg, #fff, transparent); }
.ticker-viewport::after { right: 0; background: linear-gradient(270deg, #fff, transparent); }

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 48s linear infinite;
}

.ticker:hover .ticker-track,
.ticker:focus-within .ticker-track { animation-play-state: paused; }

.ticker-track ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ticker-track li { display: flex; align-items: center; }

.ticker-track a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.ticker-track a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex: none;
}

.ticker-track a span {
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ticker-track a:hover { color: var(--orange-deep); }

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.cover {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 28px;
}

.cover-short { height: 360px; }
.mt-md { margin-top: 20px; }

section[id],
article[id] { scroll-margin-top: 96px; }

.float-card {
  position: absolute;
  left: -22px;
  bottom: 24px;
  z-index: 2;
  width: min(280px, 78%);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
}

.float-card span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.float-card strong {
  display: block;
  margin-top: 4px;
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

/* Sections */

.section { padding: 88px 0; }
.section-head { margin-bottom: 32px; }
.section-head p:last-child { color: var(--ink-soft); }

.band { background: white; }
.band-warm { background: var(--bg); }

.trust-grid { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
.trust-grid h2 { font-size: clamp(2rem, 3.4vw, 3.2rem); }

.rule {
  width: 48px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  margin-bottom: 18px;
}

/* Highlight cards */

.stat-grid,
.card-grid,
.work-grid,
.people {
  display: grid;
  gap: 16px;
}

.stat-grid { grid-template-columns: repeat(4, 1fr); }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.work-grid { grid-template-columns: repeat(2, 1fr); }
.people { grid-template-columns: 1fr 1fr; }

.stat,
.card,
.work,
.panel,
.person,
.service-row {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.stat, .card, .panel, .person { padding: 22px; }

.stat strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.04em;
  color: var(--blue-deep);
}

.stat span, .card p, .work p, .panel p, .person p { color: var(--ink-soft); }

.card, .work, .service-row, .stat {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover, .work:hover, .service-row:hover, .stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: #ddcfc0;
}

.card h3, .work h3 { margin-bottom: 8px; }

.card .media, .shot {
  overflow: hidden;
  border-radius: 16px;
  margin: -6px -6px 16px;
}

.card .media img, .shot img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.card:hover .media img, .gallery-item:hover img { transform: scale(1.04); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-weight: 800;
  text-decoration: none;
}

.link-arrow .arrow { margin-left: 2px; }

/* Services layout */

.feature { grid-template-columns: 1.15fr 0.85fr; align-items: stretch; }

.service-feature {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.72)),
    url("../images/batching.jpg") center/cover no-repeat;
  min-height: 460px;
  border-radius: 28px;
  padding: 28px;
  display: flex;
  align-items: flex-end;
  color: var(--ink);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.service-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(251, 250, 247, 0.15), rgba(251, 250, 247, 0.92) 70%);
}

.service-feature > * { position: relative; }

.service-stack { display: grid; gap: 12px; }

.service-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px 16px;
  text-decoration: none;
  color: inherit;
}

.service-row:hover { color: inherit; }

.idx {
  font-family: var(--display);
  font-weight: 700;
  color: var(--orange-deep);
  min-width: 2ch;
}

.service-row .arrow { color: var(--blue); }

/* Quality */

.quality-grid { grid-template-columns: 0.9fr 1.1fr; align-items: center; }
.frame img { height: 460px; }
.office-photo {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: top;
  border-radius: 16px;
  margin: 4px 0 14px;
}

.check-list { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 10px; }

.check-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
}

.check-list li::before {
  content: "";
  width: 16px;
  height: 9px;
  border-left: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: rotate(-45deg) translateY(4px);
}

/* Sectors */

.sector-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }

.sector {
  position: relative;
  min-height: 0;
  padding: 22px 20px 20px;
  border-radius: 18px;
  background: white;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(27, 36, 48, 0.02);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

a.sector:hover,
a.sector:hover h3 {
  color: var(--ink);
}

.sector:hover {
  border-color: #e4c4a4;
  box-shadow: var(--shadow-sm);
}

.sector-mark {
  width: 44px;
  height: 44px;
  margin-bottom: 6px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--orange-soft);
  color: var(--orange-deep);
}

.sector-index {
  position: absolute;
  top: 18px;
  right: 18px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.sector h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.12rem;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.sector p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.5;
}

/* Projects */

.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }

.filters button {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: white;
  font-weight: 700;
  cursor: pointer;
}

.filters button[aria-pressed="true"] {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}

.work { padding: 20px; display: flex; flex-direction: column; gap: 8px; min-height: 180px; }
.work[hidden] { display: none; }
.work h3 { font-size: 1.12rem; }
.work .client { margin-top: auto; font-weight: 700; color: var(--blue-deep); }

.pill {
  align-self: flex-start;
  margin: 0;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.78rem;
  font-weight: 800;
}

.pill.done { background: var(--green-soft); color: var(--green); }
.pill.live { background: var(--orange-soft); color: var(--orange-deep); }

/* CTA */

.cta {
  margin: 0 0 28px;
  border-radius: 28px;
  padding: clamp(28px, 5vw, 52px);
  background:
    linear-gradient(120deg, rgba(30, 77, 123, 0.08), rgba(180, 83, 9, 0.1)),
    white;
  border: 1px solid var(--line);
}

.cta h2 { max-width: 16ch; }

.cta-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 36px;
  align-items: center;
}

.cta-split .lede { max-width: 36rem; }

.cta-panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 12px;
}

.cta-kicker {
  margin: 0;
  color: var(--orange-deep);
  font-size: 0.82rem;
  font-weight: 700;
}

.cta-address {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.5;
}

a.cta-line {
  display: grid;
  gap: 2px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
}

a.cta-line span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

a.cta-line strong {
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

a.cta-line:hover,
a.cta-line:hover strong { color: var(--orange-deep); }

/* Inner pages */

.page-hero { padding: 42px 0 10px; }
.page-hero .lede { max-width: 46rem; }
.page-hero:has(.hero-directors) { padding-bottom: 36px; }
.hero-directors {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 32px;
  align-items: center;
}
.people-stack { grid-template-columns: 1fr; }

.split { grid-template-columns: 1.05fr 0.95fr; align-items: center; }
.two { grid-template-columns: 1fr 1fr; }

.timeline { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.timeline li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.timeline strong { color: var(--blue-deep); }

.person {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  border-top: 3px solid var(--orange);
}
.person p { margin: 0; }
.person h3,
.person-name { margin: 2px 0 0; font-size: 1.45rem; }
.person-role {
  margin: 0;
  color: var(--orange-deep);
  font-size: 0.8rem;
  font-weight: 700;
}
.person a { margin-top: 12px; font-weight: 800; text-decoration: none; }

.quote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.25;
  letter-spacing: -0.03em;
}
.quote cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--orange-deep);
}

/* Table */

.table-wrap {
  overflow-x: auto;
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
}

table { width: 100%; border-collapse: collapse; min-width: 640px; }
th, td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--line); }
th { color: var(--blue-deep); font-size: 0.82rem; }
td:last-child, th:last-child { text-align: right; font-variant-numeric: tabular-nums; }
tbody tr:hover { background: #fbf8f4; }
caption { text-align: left; padding: 16px 16px 0; font-family: var(--display); font-weight: 700; }

/* Gallery + lightbox */

.gallery {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-auto-rows: 200px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  background: var(--concrete);
}

.gallery-item:first-child { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }

.gallery-item span {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 12px;
  padding: 8px 10px;
  text-align: left;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(20, 26, 34, 0.72);
  display: grid;
  place-items: center;
  padding: 24px;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-height: 78vh; margin-inline: auto; border-radius: 16px; }
.lightbox figcaption { color: white; text-align: center; margin-top: 10px; font-weight: 700; }
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  font-size: 1.4rem;
}

/* Forms */

.contact-grid { grid-template-columns: 0.85fr 1.15fr; align-items: stretch; }
.form-card, .info-card { background: white; border: 1px solid var(--line); border-radius: 24px; padding: 24px; box-shadow: var(--shadow-sm); }
.info-card { display: flex; flex-direction: column; }
.map-frame {
  flex: 1;
  min-height: 280px;
  margin-top: 18px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #efeae3;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-link { margin: 12px 0 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
label { font-weight: 700; font-size: 0.92rem; }
input, select, textarea {
  width: 100%;
  border: 1px solid #ddd6cc;
  background: #fffcf8;
  border-radius: 12px;
  padding: 12px;
}
textarea { min-height: 140px; resize: vertical; }
.field.is-invalid input,
.field.is-invalid textarea,
.field.is-invalid select { border-color: #b42318; }
.error { color: #9f1d14; font-size: 0.84rem; font-weight: 700; min-height: 1.1em; }
.form-status { min-height: 1.4em; font-weight: 700; color: var(--blue-deep); }
address { font-style: normal; color: var(--ink-soft); }
.contact-list { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 10px; }
.contact-list a { font-weight: 800; text-decoration: none; }

/* Footer */

.site-footer {
  background: #f3f6f9;
  border-top: 1px solid var(--line);
  padding: 48px 0 20px;
  color: var(--ink-soft);
}

.footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.1fr; }
.site-footer h2 { font-size: 1.05rem; color: var(--ink); }
.site-footer a { color: var(--blue-deep); text-decoration: none; font-weight: 700; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li + li { margin-top: 8px; }
.footer-logo { height: 64px; width: auto; margin-bottom: 10px; }
.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 26px;
  padding-top: 14px;
  border-top: 1px solid #d9e2eb;
  font-size: 0.92rem;
}

.to-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
}
.to-top.is-on { opacity: 1; pointer-events: auto; }
.to-top:hover { background: var(--blue-deep); }

/* Motion */

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
}
.js .reveal.is-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-copy > * { animation: rise 0.7s ease both; }
.hero-copy > *:nth-child(2) { animation-delay: 0.06s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.12s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.18s; }
.hero-visual { animation: rise 0.8s ease 0.1s both; }

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .ticker-viewport { overflow-x: auto; }
}
