:root {
  --paper: #F7F4EE;
  --ink: #1B2439;
  --muted: #8A8578;
  --gold: #C9A57E;
  --gold-deep: #B78A56;
  --olive: #5C6B4E;
  --navy: #1B2439;
  --navy-deep: #0F1524;
  --card: #FFFFFF;
  --border: #1B24391A;
  --sand: #EDE7DD;
  --shadow-sm: 0 1px 3px #1B243914;
  --shadow-card: var(--shadow-sm), 0 4px 14px #1B24390D;
  --section-pad: clamp(56px, 9vw, 112px) 0;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.wordmark, .about-heading, .gallery-heading, .capability-num,
.phone-title, .task-title, .checklist-title, .faq-item h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.muted { color: var(--muted); }

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.2px;
  color: var(--muted);
  text-transform: uppercase;
}

.eyebrow-on-dark { color: var(--gold); }

/* Hero */

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

.hero {
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 24px 72px;
  position: relative;
  background: radial-gradient(60% 45% at 50% 28%, #FFFFFF 0%, rgba(255, 255, 255, 0) 70%), var(--paper);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: rise .9s ease both;
}

.mark {
  width: clamp(180px, 34vw, 320px);
  height: auto;
  display: block;
}

.wordmark {
  font-size: clamp(52px, 13vw, 108px);
  font-weight: 500;
  line-height: 1;
  margin-top: clamp(8px, 2vw, 20px);
}

.divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: clamp(20px, 4vw, 34px);
}

.divider-line {
  width: clamp(24px, 8vw, 56px);
  height: 1px;
  background: var(--gold);
}

.divider-label {
  font-size: clamp(10px, 2.4vw, 12px);
  font-weight: 600;
  letter-spacing: 2.4px;
  color: var(--muted);
  text-transform: uppercase;
}

.tagline {
  max-width: 16ch;
  font-size: clamp(24px, 5.6vw, 40px);
  line-height: 1.25;
  margin: clamp(24px, 5vw, 36px) 0 0;
  text-wrap: pretty;
}

/* About */

.about, .capabilities, .faq { padding: var(--section-pad); }

.about {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.about-heading {
  font-size: clamp(28px, 4.6vw, 44px);
  font-weight: 600;
  line-height: 1.15;
  margin: 18px 0 0;
  letter-spacing: -0.5px;
  text-wrap: pretty;
}

.about-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.65;
}

.about-copy p { margin: 0; text-wrap: pretty; }

/* Capabilities */

.capabilities .eyebrow { margin-bottom: clamp(28px, 5vw, 56px); }

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(20px, 3vw, 32px);
}

.capability-card {
  background: var(--card);
  border-radius: 16px;
  padding: clamp(24px, 3vw, 32px);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.capability-num {
  font-size: 24px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.capability-card h3 {
  font-size: clamp(21px, 2.6vw, 26px);
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}

.capability-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  text-wrap: pretty;
}

/* Gallery */

.gallery {
  padding: clamp(56px, 9vw, 104px) 0 clamp(64px, 10vw, 120px);
  background: var(--navy);
  color: var(--paper);
}

.gallery-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.gallery-heading {
  font-size: clamp(28px, 4.6vw, 44px);
  font-weight: 500;
  margin: 0;
  line-height: 1.2;
  max-width: 22ch;
  text-wrap: pretty;
}

.phones {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 48px);
  justify-content: center;
  align-items: flex-start;
}

.phone {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 284px;
}

.phone figcaption {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.4px;
}

.phone-frame {
  width: 284px;
  background: var(--navy-deep);
  border-radius: 44px;
  padding: 9px;
  box-shadow: 0 24px 60px #00000059;
}

.phone-screen {
  background: var(--paper);
  border-radius: 36px;
  overflow: hidden;
  height: 580px;
  color: var(--ink);
  display: flex;
  flex-direction: column;
}

.phone-statusbar {
  height: 34px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 22px 2px;
  font-size: 11px;
  font-weight: 600;
}

.phone-statusbar .signal { letter-spacing: 1px; color: var(--muted); }

.phone-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 18px 12px;
}

.phone-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.phone-menu span {
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.phone-title {
  font-size: 21px;
  font-weight: 700;
}

.phone-avatar {
  width: 34px;
  height: 34px;
  border-radius: 17px;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-avatar span {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--olive);
}

/* Calendar mockup */

.week-row {
  display: flex;
  justify-content: space-between;
  padding: 0 16px 12px;
}

.day {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: 30px;
}

.day-letter {
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
}

.day-pill {
  width: 30px;
  height: 30px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
}

.day-pill-today {
  background: #B78A5633;
  border: 1.5px solid var(--gold-deep);
}

.day-pill-sel {
  background: var(--olive);
  color: #fff;
}

.day-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: transparent;
}

.day-dot-on { background: var(--gold); }

.phone-divider {
  height: 1px;
  background: var(--border);
  margin: 0 16px 14px;
}

.phone-date-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px 14px;
}

.phone-date {
  font-size: 19px;
  font-weight: 600;
}

.phone-add-task {
  background: var(--olive);
  color: #fff;
  border-radius: 16px;
  padding: 7px 13px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 2px 8px #5C6B4E4D;
}

.tasks, .stock-list, .checks {
  display: flex;
  flex-direction: column;
  padding: 0 16px;
}

.tasks, .stock-list { gap: 11px; }
.checks { gap: 9px; }

.task-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.task-time {
  width: 36px;
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  text-align: right;
}

.task-card {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--card);
  border-radius: 14px;
  padding: 11px;
  box-shadow: var(--shadow-card);
}

.task-check {
  width: 22px;
  height: 22px;
  border-radius: 11px;
}

.task-title {
  font-size: 13px;
  font-weight: 500;
}

.task-who {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

/* Inventory mockup */

.search-bar {
  margin: 0 16px 12px;
  background: var(--card);
  border-radius: 18px;
  padding: 9px 14px;
  font-size: 12px;
  color: var(--muted);
  box-shadow: var(--shadow-sm);
}

.filter-chips {
  display: flex;
  gap: 7px;
  padding: 0 16px 14px;
  overflow: hidden;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  font-size: 11px;
  font-weight: 600;
  padding: 11px 12px;
  border-radius: 14px;
  white-space: nowrap;
  flex-shrink: 0;
  border: 1px solid #C9A57E66;
}

.filter-chip-active {
  background: var(--olive);
  color: #fff;
  border-color: transparent;
}

.stock-row {
  display: flex;
  align-items: center;
  gap: 11px;
  background: var(--card);
  border-radius: 14px;
  padding: 12px;
  box-shadow: var(--shadow-card);
}

.stock-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--sand);
  flex-shrink: 0;
}

.stock-info { flex: 1; min-width: 0; }

.stock-name {
  font-size: 13px;
  font-weight: 500;
}

.stock-loc {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

.stock-qty {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 11px;
  flex-shrink: 0;
  background: #5C6B4E1A;
  color: var(--olive);
}

.stock-qty-low {
  background: #B78A5626;
  color: #8A5E1F;
}

/* Checklist mockup */

.checklist-summary {
  margin: 0 16px 14px;
  background: var(--card);
  border-radius: 16px;
  padding: 15px;
  box-shadow: var(--shadow-card);
}

.checklist-title {
  font-size: 17px;
  font-weight: 600;
}

.progress-row {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 11px;
}

.progress-bar {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: var(--sand);
  overflow: hidden;
}

.progress-fill {
  width: 62%;
  height: 100%;
  background: var(--olive);
}

.progress-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
}

.check-row {
  display: flex;
  align-items: center;
  gap: 11px;
  background: var(--card);
  border-radius: 14px;
  padding: 12px;
  box-shadow: var(--shadow-sm);
}

.check-box {
  width: 20px;
  height: 20px;
  border-radius: 10px;
}

.task-check, .check-box {
  flex-shrink: 0;
  border: 2px solid var(--gold);
}

.task-check-done, .check-box-done {
  background: var(--olive);
  border-color: var(--olive);
}

.check-label {
  font-size: 13px;
  font-weight: 500;
  flex: 1;
  min-width: 0;
}

.task-title, .stock-name, .check-label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.task-title-done, .check-label-done {
  color: var(--muted);
  text-decoration: line-through;
}

/* FAQ */

.faq .container { max-width: 820px; }

.faq .eyebrow { margin-bottom: clamp(28px, 4vw, 48px); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vw, 36px);
}

.faq-item {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px 40px;
  padding-bottom: clamp(24px, 3vw, 36px);
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.faq-item h3 {
  font-size: clamp(20px, 2.4vw, 25px);
  font-weight: 600;
  margin: 0;
  line-height: 1.25;
}

.faq-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  text-wrap: pretty;
}

/* Footer */

.site-footer {
  padding: clamp(40px, 6vw, 64px) 0;
  border-top: 1px solid var(--border);
  background: #EDE7DD66;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-mark {
  width: 46px;
  height: auto;
  display: block;
  opacity: .9;
}

.footer-name {
  font-size: 20px;
  font-weight: 600;
}
