/* Sugata Software: converted faithfully from the design system in Sugata Site.dc.html.
   Palette: cream paper, dark plum ink, sunset gradient (gold, coral, burnt orange, hot pink). */

:root {
  --paper: #F7EBD6;
  --ink: #2B1620;
  --gold: #F2B33D;
  --coral: #F0885A;
  --orange: #E2622A;
  --pink: #FF2E88;
  --cream-muted: #D9BCAD;
  --dust: #C79A86;
  --stone: #8A7268;
  --rust: #A8583A;
  --card-body: #5C453C;
  --card-line: #E7D5B8;
  --pink-ink: #4A1230;
  --pink-mono: #7A1A45;
  --hero-line: #6B4C40;
  --sunset: linear-gradient(var(--gold) 0 26%, var(--coral) 26% 52%, var(--orange) 52% 78%, var(--pink) 78% 100%);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

a { color: var(--orange); text-decoration: none; }

h1, h2, h3 { margin: 0; }

.mono-tag {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ---------- The sun mark, drawn in CSS as designed ---------- */
.sun { position: relative; display: flex; justify-content: center; flex: none; }
.sun-dome {
  display: block;
  border-radius: 999px 999px 0 0;
  background: var(--sunset);
}
.sun-horizon {
  position: absolute;
  left: 0;
  border-radius: 999px;
  background: var(--paper);
}

.sun-header { width: 34px; height: 17px; }
.sun-header .sun-dome { width: 30px; height: 17px; }
.sun-header .sun-horizon { bottom: 2px; width: 34px; height: 3px; }

.sun-card { width: 46px; height: 23px; }
.sun-card .sun-dome { width: 40px; height: 23px; }
.sun-card .sun-horizon { bottom: 3px; width: 46px; height: 4px; background: var(--ink); }

.sun-footer { width: 28px; height: 14px; }
.sun-footer .sun-dome { width: 24px; height: 14px; }
.sun-footer .sun-horizon { bottom: 2px; width: 28px; height: 3px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 64px);
  background: var(--ink);
}

.brand { display: flex; align-items: center; gap: 12px; color: var(--paper); }
.brand-name { font-size: 20px; font-weight: 600; letter-spacing: -0.03em; }

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 30px);
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.site-nav a { color: var(--dust); transition: color 0.15s ease; }
.site-nav a:hover { color: var(--paper); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: clamp(56px, 11vw, 132px) clamp(20px, 5vw, 64px) clamp(64px, 9vw, 108px);
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}

.hero-dome {
  position: absolute;
  right: -14vw;
  bottom: 0;
  width: 78vw;
  height: 100%;
  border-radius: 78vw 78vw 0 0;
  background: var(--sunset);
  opacity: 0.16;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 1040px;
}

.kicker {
  margin: 0;
  font-family: "Space Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1 {
  font-size: clamp(38px, 6.4vw, 84px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-wrap: pretty;
}

.lede {
  margin: 0;
  max-width: 620px;
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 300;
  line-height: 1.55;
  color: var(--cream-muted);
  text-wrap: pretty;
}

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

.btn {
  padding: 15px 26px;
  border-radius: 999px;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.btn-pink { background: var(--pink); color: var(--ink); font-weight: 600; }
.btn-pink:hover { background: var(--gold); color: var(--ink); }
.btn-outline { border: 1px solid var(--hero-line); color: var(--paper); font-weight: 500; }
.btn-outline:hover { border-color: var(--paper); color: var(--paper); }

/* ---------- Products ---------- */
.products {
  display: flex;
  flex-direction: column;
  gap: 44px;
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 64px);
}

.products-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.products-head h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 32px;
  background: #FFFFFF;
  border: 1px solid var(--card-line);
  color: var(--ink);
}

.card-link { transition: transform 0.16s ease, box-shadow 0.16s ease; }
.card-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(43, 22, 32, 0.12);
}

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.pill {
  font-family: "Space Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--paper);
  padding: 5px 9px;
  border-radius: 999px;
}

.card-title { display: flex; flex-direction: column; gap: 10px; }
.card-title h3 { font-size: 27px; font-weight: 600; letter-spacing: -0.03em; }

.card-meta {
  font-family: "Space Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--rust);
}

.card p {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--card-body);
  text-wrap: pretty;
}

/* ---------- Contact ---------- */
.contact {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 64px);
  background: var(--pink);
  color: var(--ink);
}

.contact-copy { display: flex; flex-direction: column; gap: 18px; max-width: 620px; }

.contact h2 {
  font-size: clamp(30px, 4.4vw, 54px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.02;
  text-wrap: pretty;
}

.contact p {
  margin: 0;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--pink-ink);
}

.contact-address { display: flex; flex-direction: column; gap: 8px; }

.contact-address a {
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
  border-bottom: 3px solid var(--ink);
  padding-bottom: 4px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.contact-address a:hover { color: var(--paper); border-color: var(--paper); }

.contact-tag { color: var(--pink-mono); }

/* ---------- Footer ---------- */
.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(20px, 5vw, 64px);
  background: var(--ink);
  color: var(--dust);
}

.footer-name { font-size: 16px; color: var(--paper); }
.footer-tag { color: var(--dust); letter-spacing: 0.14em; }
