*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #ffffff;
  --text: #111111;
  --text-soft: #444444;
  --muted: #555555;
  --line: rgba(0, 0, 0, 0.08);
  --accent: #ad8c71;

  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main, section, .hero, .services-hero, .price-hero,
.contact-section, .contact-info, .services-grid,
.price-section, .info-section, .area-section {
  flex: none;
}

body > footer {
  margin-top: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  display: block;
}

/* ── HEADER ─────────────────────────────────── */

header {
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 1.5rem 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #000000;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo {
  font-size: 2rem;
  color: #ffffff;
  letter-spacing: 0.18em;
  font-weight: 600;
}

.logo img {
  width: 120px;
  height: auto;
  display: block;
}

nav {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}

nav a {
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  transition: color 0.25s ease;
}

nav a:hover {
  color: #ffffff;
}

.nav-cta {
  padding: 0.9rem 1.5rem;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.nav-cta:hover {
  background: var(--accent);
  color: white;
}

/* ── MOBILE MENU ─────────────────────────────── */

.mobile-menu {
  display: none;
  gap: 0.5rem;
  align-items: center;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s ease;
}

.mobile-menu a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── HERO ────────────────────────────────────── */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  gap: 25rem;
  padding: 3rem 7%;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.96)),
    radial-gradient(circle at top left, rgba(139, 94, 60, 0.08), transparent 35%);
  z-index: 0;
}

.hero::after {
  content: "ROJUTON";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 15vw;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.04);
  white-space: nowrap;
  pointer-events: none;
}

.hero-text {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 920px;
}

.hero .contact-card {
  width: 460px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  padding: 2.5rem 3rem;
}

.eyebrow {
  color: BLACK;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 2.50rem;
  margin-bottom: 2rem;
  font-weight: 600;
  display: block;
}

.hero-brand {
  display: flex;
  margin-bottom: 2rem;
}

.hero-brand img {
  width: clamp(180px, 22vw, 360px);
  opacity: 0.95;
}

.hero h1 {
  font-size: clamp(2.7rem, 3vw, 1.5rem);
  line-height: 1.5;
  margin-bottom: 2rem;
  color: #111111;
  font-weight: 600;
  max-width: 850px;
  letter-spacing: 0.01em;
}

.hero p {
  color: var(--text-soft);
  max-width: 950px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.statement {
  margin-top: 2.5rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--accent);
}

.statement strong {
  display: block;
  color: #111111;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.statement span {
  color: var(--text-soft);
  font-size: 1.25rem;
  font-weight: 500;
}

/* ── BUTTONS ─────────────────────────────────── */

.buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.btn {
  padding: 1.1rem 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  transition: all 0.25s ease;
  font-weight: 700;
}

.btn-primary {
  background: #111111;
  color: white;
}

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

.btn-secondary {
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: #111111;
}

.btn-secondary:hover {
  border-color: var(--accent);
  background: rgba(0, 0, 0, 0.04);
}

/* ── PAGE HERO ──────────────────────────────── */

.services-hero,
.price-hero {
  padding: 10rem 7% 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.services-hero h1,
.price-hero h1 {
  font-size: clamp(3.7rem, 3vw, 2rem);
  line-height: 1.5;
  margin-bottom: 2rem;
  color: #111111;
  font-weight: 600;
  max-width: 850px;
  letter-spacing: 0.01em;
}

.services-hero p,
.price-hero p {
  color: var(--muted);
  font-size: 1.25rem;
  line-height: 1.85;
  max-width: 720px;
  font-weight: 500;
}

/* ── GRIDS ───────────────────────────────────── */

.section-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding: 0 7%;
  color: #111111;
}

.services-grid,
.area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 2rem 7% 6rem;
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2rem 7% 6rem;
}

/* ── CARDS ───────────────────────────────────── */

.service-card,
.area-card,
.info-card,
.contact-card,
.price-row {
  position: relative;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
  transition: transform 0.25s ease;
}

.service-card,
.area-card,
.info-card {
  padding: 2.8rem;
}

.service-card:hover,
.area-card:hover,
.info-card:hover,
.price-row:hover {
  transform: translateY(-3px);
}

.service-card h2,
.area-card h3,
.info-card h2 {
  font-size: 1.9rem;
  color: #ffffff;
  margin-bottom: 1.4rem;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.area-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
}

.service-card ul,
.info-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.service-card li,
.info-card li {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.97rem;
  font-weight: 500;
  position: relative;
  padding-left: 1.2rem;
  line-height: 1.75;
}

.service-card li::before,
.info-card li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 9px;
}

.area-card p,
.info-card p {
  color: #ffffff !important;
  font-size: 0.97rem;
  line-height: 1.85;
  font-weight: 500;
}

/* ── SERVICE CARD VARIANTS ───────────────────── */

.service-card--full {
  grid-column: 1 / -1;
}

.service-intro {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.service-notice {
  margin-top: 1.75rem;
  padding: 1rem 1.25rem;
  border-left: 2px solid var(--accent);
  background: rgba(173, 140, 113, 0.08);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.7;
}

/* ── AREA SECTION ────────────────────────────── */

.area-section {
  padding: 7rem 7%;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.area-section .area-grid {
  padding: 0;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.tags span {
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── PRICE ROWS ──────────────────────────────── */

.price-section {
  padding: 0 0 4rem;
}

.price-section p {
  color: var(--muted);
  font-size: 1.25rem;
  line-height: 1.85;
  font-weight: 500;
  padding: 0 7% 2rem;
  max-width: 1000px;
}

.price-grid {
  padding-bottom: 2rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 1.6rem;
  gap: 2rem;
}

.price-row span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.97rem;
  font-weight: 500;
  line-height: 1.6;
}

.price-row strong {
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  text-align: right;
  font-size: 0.97rem;
}

/* ── INFO SECTION ────────────────────────────── */

.info-section {
  padding: 0 7% 4rem;
}

/* ── CONTACT ─────────────────────────────────── */

/* Poistettu erillinen contact-section — kortti on nyt herossa */

.contact-card h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.contact-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  gap: 2rem;
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  flex-shrink: 0;
}

.contact-item strong {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  font-size: 0.97rem;
  text-align: right;
  line-height: 1.6;
}

.contact-info {
  padding: 0 7% 8rem;
  max-width: 800px;
  margin: 0 auto;
}

/* ── FOOTER ──────────────────────────────────── */

footer {
  padding: 2rem 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #000000;
}

footer p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.footer-logo img {
  width: 120px;
}

/* ── TABLET ─────────────────────────────────── */

@media (max-width: 980px) {

  nav {
    display: none;
  }

  .mobile-menu {
    display: flex;
  }

  header {
    padding: 1rem 5%;
  }

  .logo {
    font-size: 1.35rem;
    letter-spacing: 0.14em;
  }

  .hero {
    min-height: auto;
    padding: 5rem 6% 3rem;
    flex-direction: column;
    align-items: stretch;
  }

  .hero::after {
    font-size: 24vw;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero .contact-card {
    width: 100%;
  }

  .hero-brand img {
    width: 180px;
  }

  .hero h1 {
    font-size: 1.7rem;
    line-height: 1.55;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.85;
  }

  .services-hero,
  .price-hero {
    padding: 7rem 6% 3rem;
  }

  .services-hero h1,
  .price-hero h1 {
    font-size: 2.6rem;
    line-height: 1.2;
  }

  .section-title {
    padding: 0 6%;
    font-size: 1.8rem;
  }

  .services-grid,
  .price-grid,
  .area-grid {
    grid-template-columns: 1fr;
    padding: 1.5rem 6% 4rem;
    gap: 1.25rem;
  }

  .service-card--full {
    grid-column: 1;
  }

  .service-card,
  .area-card,
  .info-card,
  .contact-card {
    padding: 1.8rem;
  }

  .price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.2rem;
  }

  footer {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1.5rem 6%;
  }
}

/* ── MOBILE ─────────────────────────────────── */

@media (max-width: 640px) {

  html {
    font-size: 15px;
  }

  header {
    padding: 0.9rem 4%;
  }

  .logo {
    font-size: 1.1rem;
  }

  .hero {
    padding: 4rem 5% 3rem;
    gap: 2rem;
  }

  .hero-text {
    text-align: center;
  }

  .hero-brand {
    justify-content: center;
    margin-top: -0.5rem;
  }

  .eyebrow {
    text-align: center;
  }

  .hero h1,
  .hero p {
    text-align: center;
  }

  .statement {
    text-align: left;
  }

  .buttons {
    justify-content: center;
  }

  .services-hero,
  .price-hero {
    padding: 6rem 5% 3rem;
    text-align: center;
  }

  .services-hero p,
  .price-hero p {
    margin: 0 auto;
  }

  .hero::after {
    font-size: 30vw;
  }

  .hero h1,
  .services-hero h1,
  .price-hero h1 {
    font-size: 1.9rem;
  }

  .services-grid,
  .price-grid,
  .area-grid {
    padding: 1rem 5% 3rem;
    gap: 0.75rem;
  }

  .service-card--full {
    grid-column: 1;
  }

  .service-card,
  .area-card,
  .info-card,
  .contact-card {
    padding: 1.35rem;
  }

  .service-intro {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }

  .service-notice {
    font-size: 0.82rem;
    padding: 0.85rem 1rem;
    margin-top: 1.25rem;
  }

  .section-title {
    text-align: center;
  }

  .area-section {
    padding: 4rem 5%;
  }

  .tags {
    justify-content: center;
  }

  .price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1.2rem;
    overflow: hidden;
    word-break: break-word;
  }

  .price-row span {
    font-size: 0.9rem;
    line-height: 1.55;
    white-space: normal;
    word-break: break-word;
    max-width: 100%;
  }

  .price-row strong {
    font-size: 1rem;
    text-align: left;
    white-space: normal;
  }

  .price-section p {
    padding: 0 5% 2rem;
    word-break: break-word;
  }

  .contact-section,
  .contact-info {
    padding-left: 5%;
    padding-right: 5%;
  }

  .contact-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .contact-item strong {
    text-align: left;
  }

  footer {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 5%;
  }
}
