/* ---------- Reset & base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --dark: #15130f;
  --dark-2: #1c1a15;
  --gold: #c9a25b;
  --gold-light: #ddc08a;
  --bronze: #9c7a4d;
  --cream: #faf8f3;
  --cream-2: #f1eee5;
  --text-dark: #201d17;
  --text-dark-muted: rgba(32, 29, 23, 0.65);
  --text-light: #f5f1e8;
  --text-light-muted: rgba(245, 241, 232, 0.72);
  --header-h: 84px;
  --gap: 8px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.5;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; }

img { max-width: 100%; }

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

main > section { scroll-margin-top: var(--header-h); }

.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 14px;
}

.eyebrow.center-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--bronze);
}

.eyebrow.center-line::before,
.eyebrow.center-line::after {
  content: "";
  width: 46px;
  height: 1px;
  background: var(--gold);
}

.divider {
  display: block;
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin: 18px 0 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 30px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(201, 162, 91, 0.35);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, rgba(21,19,15,0.85), rgba(21,19,15,0));
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.site-header.scrolled {
  background: var(--dark);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}

/* at the top the bar lines up with the hero tile, as in the design */
.header-inner {
  width: 100%;
  height: 100%;
  max-width: 64%;
  padding: 0 40px 0 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: max-width 0.35s ease, padding 0.35s ease;
}

.site-header.scrolled .header-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 56px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-light);
  flex-shrink: 0;
}

.logo-icon { width: 36px; height: 36px; color: var(--gold); }

.logo-divider {
  width: 1px;
  height: 36px;
  background: rgba(245, 241, 232, 0.3);
}

.logo-text {
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.1;
}

.logo-text small {
  display: block;
  font-family: var(--sans);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--text-light-muted);
  margin-top: 3px;
}

.main-nav {
  display: flex;
  gap: 30px;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  color: var(--text-light);
  font-size: 0.88rem;
  font-weight: 500;
  position: relative;
  padding: 6px 2px;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.main-nav a:hover::after { width: 100%; }

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

.icon-btn {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid rgba(245,241,232,0.25);
  border-radius: 50%;
  color: var(--text-light);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.icon-btn svg { width: 16px; height: 16px; }

.icon-btn:hover { border-color: var(--gold); color: var(--gold); }

.menu-toggle { display: none; }

.search-bar {
  position: absolute;
  top: var(--header-h);
  right: 40px;
  width: min(320px, calc(100vw - 48px));
  display: flex;
  background: var(--dark-2);
  border: 1px solid rgba(245,241,232,0.15);
  border-radius: 4px;
  overflow: hidden;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}

.search-bar.open { transform: translateY(0); opacity: 1; visibility: visible; }

.search-bar input {
  flex: 1;
  border: none;
  background: transparent;
  color: var(--text-light);
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 0.9rem;
  outline: none;
}

.search-bar button {
  width: 44px;
  border: none;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
}

.search-bar button svg { width: 16px; height: 16px; }

/* ---------- Bento grid ---------- */
main {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  background: var(--cream);
}

.split-section {
  display: grid;
  grid-template-columns: 1.78fr 1fr;
  gap: var(--gap);
  min-height: 560px;
}

.hero-split { min-height: 94vh; }

.cta-split { grid-template-columns: 1.45fr 1fr; }

.tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 56px;
  overflow: hidden;
}

.tile-dark { background-color: var(--dark); color: var(--text-light); }
.tile-light { background-color: var(--cream); color: var(--text-dark); }

.tile[style*="background-image"] {
  background-size: cover;
  background-position: center;
}

.tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(15,13,10,0.92) 0%, rgba(15,13,10,0.72) 45%, rgba(15,13,10,0.4) 100%);
  z-index: 0;
}

.tile-overlay-strong {
  background:
    linear-gradient(to top, rgba(10,9,7,0.88) 0%, rgba(10,9,7,0) 55%),
    linear-gradient(105deg, rgba(10,9,7,0.8) 0%, rgba(10,9,7,0.3) 50%, rgba(10,9,7,0.2) 100%);
}

.tile-content { position: relative; z-index: 1; max-width: 460px; }

/* ---------- Hero ---------- */
.hero-tile { padding: 120px 64px 56px; }

/* keeps the scale (right side of the photo) in frame on narrow/tall screens */
.tile.hero-tile { background-position: 78% center; }

.hero-tile .tile-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-tile h1 { font-size: clamp(2.4rem, 3.4vw, 3.3rem); }

.hero-tile p { margin-top: 0; font-size: 1.02rem; color: var(--text-light-muted); }

.hero-tile .btn { margin-top: 26px; align-self: flex-start; }

.hero-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-top: 40px;
}

.feature-row {
  display: flex;
  gap: 38px;
  list-style: none;
}

.feature-row li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--text-light-muted);
  font-weight: 500;
}

.feature-row svg { width: 26px; height: 26px; color: var(--gold); flex-shrink: 0; }

.hero-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.02rem;
  text-align: right;
  color: var(--text-light-muted);
  flex-shrink: 0;
}

/* ---------- Hero aside (statue) ---------- */
.hero-aside {
  padding: 64px 0 64px 56px;
  justify-content: center;
}

.hero-aside .tile-content { max-width: 44%; }

.hero-aside h2 { font-size: clamp(1.9rem, 2.5vw, 2.7rem); }

.hero-aside p { color: var(--text-dark-muted); font-size: 0.94rem; }

.tile-image {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 52%;
  background-size: cover;
  background-position: 78% 18%;
  mask-image: linear-gradient(to right, transparent, black 20%);
  -webkit-mask-image: linear-gradient(to right, transparent, black 20%);
}

/* ---------- Services ---------- */
.services-tile { padding: 72px 44px; }

.services-tile h2 {
  text-align: center;
  font-size: clamp(1.6rem, 1.9vw, 2.1rem);
  margin: 12px auto 40px;
  max-width: 660px;
}

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

.service-card {
  background: #fff;
  border: 1px solid rgba(32,29,23,0.07);
  border-radius: 4px;
  padding: 26px 14px 24px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(32,29,23,0.09);
}

.service-card svg {
  width: 30px; height: 30px;
  color: var(--bronze);
  margin-bottom: 16px;
}

.service-card h3 { font-size: 0.88rem; margin-bottom: 8px; }

.service-card p { font-size: 0.72rem; line-height: 1.5; color: var(--text-dark-muted); }

/* ---------- About tile ---------- */
.about-tile .tile-content { max-width: 330px; }

.about-tile h2 { font-size: clamp(1.7rem, 2.1vw, 2.2rem); }

.about-tile p { color: var(--text-light-muted); font-size: 0.94rem; }

/* ---------- Quote / columns tile ---------- */
.quote-tile {
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  padding: 72px 56px 60px;
}

.engraved {
  position: relative;
  z-index: 1;
  font-size: clamp(1.5rem, 2.1vw, 2.2rem);
  letter-spacing: 0.03em;
  line-height: 1.25;
  text-transform: uppercase;
  color: var(--text-light);
  flex-shrink: 0;
}

.quote-top {
  position: relative;
  z-index: 1;
  max-width: 260px;
  padding-bottom: 6px;
}

.quote-top p { color: var(--text-light-muted); font-size: 0.92rem; }

/* ---------- Contact tile ---------- */
.contact-tile {
  padding: 0;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
}

.contact-left {
  padding: 64px 40px 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-left h2 { font-size: clamp(1.7rem, 2.1vw, 2.2rem); }

.contact-left p { margin-top: 12px; color: var(--text-light-muted); font-size: 0.94rem; max-width: 320px; }

.contact-left .btn { margin-top: 24px; width: fit-content; }

.contact-list {
  list-style: none;
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.88rem;
  color: var(--text-light-muted);
}

.contact-list svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

.contact-list a:hover { color: var(--gold); }

.contact-right {
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  padding: 48px 24px 40px;
}

.brand-mark {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  text-align: center;
}

.brand-mark svg { width: 30px; height: 30px; color: var(--gold); }

.brand-mark span {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-mark small {
  display: block;
  font-family: var(--sans);
  font-size: 0.54rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--text-light-muted);
  margin-top: 4px;
}

.pen-quote {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.86rem;
  text-align: center;
  color: var(--text-light-muted);
}

/* ---------- Alt sayfalar (makaleler) ---------- */
.subpage .site-header { background: var(--dark); }

.subpage .header-inner,
.subpage .site-header.scrolled .header-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 56px;
}

.main-nav a.active { color: var(--gold); }
.main-nav a.active::after { width: 100%; }

.page-hero {
  position: relative;
  background-color: var(--dark);
  background-size: cover;
  background-position: center;
  color: var(--text-light);
  padding: calc(var(--header-h) + 90px) 56px 90px;
  overflow: hidden;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1600px;
  margin: 0 auto;
}

.page-hero h1 { font-size: clamp(2.2rem, 3.4vw, 3.1rem); }

.page-hero p { color: var(--text-light-muted); max-width: 520px; font-size: 1rem; }

.articles-section {
  max-width: 1600px;
  margin: 0 auto;
  padding: 64px 56px 90px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.filter-btn {
  padding: 9px 20px;
  border: 1px solid rgba(32,29,23,0.16);
  background: transparent;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dark-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover { border-color: var(--gold); color: var(--text-dark); }

.filter-btn.active {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--text-light);
}

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

.article-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(32,29,23,0.08);
  border-radius: 5px;
  padding: 28px 26px 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(32,29,23,0.1);
}

.article-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.76rem;
  color: var(--text-dark-muted);
}

.tag {
  display: inline-block;
  padding: 4px 11px;
  border-radius: 999px;
  background: var(--cream-2);
  color: var(--bronze);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-card h3 { font-size: 1.15rem; line-height: 1.35; margin-bottom: 12px; }

.article-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-dark-muted);
  margin-bottom: 20px;
}

.read-more {
  margin-top: auto;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bronze);
}

.article-card:hover .read-more { color: var(--gold); }

.empty-state {
  padding: 40px 0;
  color: var(--text-dark-muted);
  font-size: 0.95rem;
}

/* ---------- Makale okuma sayfası ---------- */
.article-hero {
  background: var(--dark);
  color: var(--text-light);
  padding: calc(var(--header-h) + 64px) 56px 64px;
}

.article-hero-inner { max-width: 820px; margin: 0 auto; }

.back-link {
  display: inline-block;
  margin-bottom: 26px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.back-link:hover { color: var(--gold-light); }

.article-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 0.8rem;
  color: var(--text-light-muted);
}

.article-hero .tag { background: rgba(201,162,91,0.16); color: var(--gold); }

.article-hero h1 { font-size: clamp(1.9rem, 3vw, 2.7rem); line-height: 1.25; }

.article-hero .divider { margin-bottom: 0; }

.article-wrap {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 56px 80px;
}

.article-body p {
  margin-bottom: 20px;
  font-size: 1.02rem;
  line-height: 1.85;
  color: rgba(32, 29, 23, 0.84);
}

.article-body h2 {
  font-size: 1.45rem;
  margin: 40px 0 16px;
  color: var(--text-dark);
}

.article-body h3 {
  font-size: 1.32rem;
  margin: 38px 0 16px;
  color: var(--text-dark);
}

.article-body h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  margin: 32px 0 14px;
  color: var(--text-dark);
}

.article-body > :first-child { margin-top: 0; }

.load-error {
  padding: 40px 0;
  color: var(--text-dark-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.article-body ul, .article-body ol { margin: 0 0 22px 22px; }

.article-body li {
  margin-bottom: 9px;
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(32, 29, 23, 0.84);
}

.article-body strong { color: var(--text-dark); font-weight: 600; }

.article-cta {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(32,29,23,0.1);
}

.article-cta p { margin-bottom: 20px; color: var(--text-dark-muted); font-size: 0.95rem; }

.not-found {
  max-width: 820px;
  margin: 0 auto;
  padding: calc(var(--header-h) + 120px) 56px 120px;
  text-align: center;
}

.not-found h1 { font-size: 2rem; margin-bottom: 14px; }

.not-found p { color: var(--text-dark-muted); margin-bottom: 28px; }

.more-articles {
  background: var(--cream-2);
  padding: 72px 56px;
}

.more-articles h2 {
  max-width: 1600px;
  margin: 0 auto 32px;
  font-size: 1.6rem;
}

.more-articles .article-grid { max-width: 1600px; margin: 0 auto; }

/* ---------- Politika tablosu ---------- */
.table-scroll { overflow-x: auto; margin: 0 0 22px; }

.article-body table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.article-body th,
.article-body td {
  text-align: left;
  vertical-align: top;
  padding: 11px 12px;
  border-bottom: 1px solid rgba(32, 29, 23, 0.12);
  line-height: 1.55;
  color: rgba(32, 29, 23, 0.84);
}

.article-body th {
  background: var(--cream-2);
  color: var(--text-dark);
  font-weight: 600;
}

.article-body a { color: var(--bronze); text-decoration: underline; }

.article-body code {
  font-family: Consolas, "SF Mono", Menlo, monospace;
  font-size: 0.88em;
  background: var(--cream-2);
  padding: 2px 6px;
  border-radius: 3px;
  white-space: nowrap;
}

/* ---------- Çerez bildirimi ---------- */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 150;
  background: var(--dark);
  color: var(--text-light);
  border: 1px solid rgba(201, 162, 91, 0.35);
  border-radius: 6px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
}

.cookie-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.cookie-banner p {
  flex: 1;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-light-muted);
}

.cookie-banner strong { color: var(--text-light); font-weight: 600; }

.cookie-banner a { color: var(--gold); text-decoration: underline; }

.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }

/* both choices deliberately look identical so neither is nudged */
.cookie-btn {
  min-width: 118px;
  padding: 12px 20px;
  background: transparent;
  border: 1px solid var(--gold);
  border-radius: 2px;
  color: var(--text-light);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.cookie-btn:hover,
.cookie-btn:focus-visible {
  background: var(--gold);
  color: var(--dark);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark);
  color: var(--text-light-muted);
  text-align: center;
  padding: 20px;
  font-size: 0.8rem;
  margin-top: var(--gap);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 28px;
}

.footer-links { display: flex; gap: 20px; }

.footer-links a { color: var(--text-light-muted); text-decoration: underline; text-underline-offset: 3px; }

.footer-links a:hover { color: var(--gold); }

/* ---------- Responsive ---------- */
@media (max-width: 1500px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .services-tile h2 { margin-bottom: 32px; }
}

@media (max-width: 1250px) {
  .split-section { grid-template-columns: 1.5fr 1fr; }
  .cta-split { grid-template-columns: 1.3fr 1fr; }
  .header-inner { max-width: 60%; padding: 0 24px 0 40px; }
  .main-nav { gap: 20px; }
  .tile { padding: 56px 40px; }
  .hero-tile { padding: 110px 40px 48px; }
  .hero-aside { padding: 56px 0 56px 40px; }
  .services-tile { padding: 60px 32px; }
  .quote-tile { padding: 60px 40px 48px; gap: 28px; }
  .contact-left { padding: 56px 28px 56px 40px; }
}

@media (max-width: 1250px) {
  .subpage .header-inner,
  .subpage .site-header.scrolled .header-inner { padding: 0 40px; }
  .page-hero { padding: calc(var(--header-h) + 70px) 40px 70px; }
  .articles-section { padding: 56px 40px 80px; }
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .article-hero { padding: calc(var(--header-h) + 56px) 40px 56px; }
  .article-wrap { padding: 56px 40px 72px; }
  .more-articles { padding: 64px 40px; }
}

@media (max-width: 900px) {
  .header-inner { max-width: 100%; padding: 0 24px; }
  .site-header.scrolled .header-inner { padding: 0 24px; }
  .subpage .header-inner,
  .subpage .site-header.scrolled .header-inner { padding: 0 24px; }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--dark);
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .main-nav.open { max-height: 360px; box-shadow: 0 12px 24px rgba(0,0,0,0.3); }

  .main-nav a { width: 100%; text-align: center; padding: 16px; border-top: 1px solid rgba(245,241,232,0.08); }

  .menu-toggle { display: flex; }

  .split-section,
  .cta-split { grid-template-columns: 1fr; min-height: auto; }

  .hero-split { min-height: auto; }

  .hero-tile { min-height: 88vh; }

  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 28px; }

  .hero-quote { text-align: left; }

  .hero-aside { padding: 56px 40px; }

  .hero-aside .tile-content { max-width: 100%; }

  .tile-image {
    position: static;
    width: 100%;
    height: 320px;
    background-position: center 18%;
    mask-image: none;
    -webkit-mask-image: none;
    order: -1;
    margin: 0 -40px 30px;
    width: calc(100% + 80px);
  }

  .about-tile { min-height: 420px; }

  .about-tile .tile-content { max-width: 460px; }

  .quote-tile { min-height: 440px; }

  .contact-tile { grid-template-columns: 1fr; }

  .contact-right { height: 340px; justify-content: center; gap: 24px; }
}

@media (max-width: 700px) {
  .cookie-banner { left: 10px; right: 10px; bottom: 10px; }
  .cookie-banner-inner { flex-direction: column; align-items: stretch; gap: 14px; padding: 16px 18px; }
  .cookie-actions .cookie-btn { flex: 1; min-width: 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .article-grid { grid-template-columns: 1fr; }
  .page-hero { padding: calc(var(--header-h) + 52px) 24px 52px; }
  .articles-section { padding: 44px 24px 64px; }
  .article-hero { padding: calc(var(--header-h) + 44px) 24px 44px; }
  .article-wrap { padding: 44px 24px 56px; }
  .more-articles { padding: 52px 24px; }
  .not-found { padding: calc(var(--header-h) + 90px) 24px 90px; }
  .tile { padding: 48px 24px; }
  .hero-tile { padding: 104px 24px 44px; }
  .hero-aside { padding: 48px 24px; }
  .services-tile { padding: 56px 20px; }
  .quote-tile { flex-direction: column; align-items: flex-start; justify-content: flex-end; gap: 22px; padding: 100px 24px 44px; }
  .quote-top { max-width: 100%; }
  .contact-left { padding: 56px 24px; }
  .feature-row { flex-wrap: wrap; gap: 20px 28px; }
  .tile-image { margin: 0 -24px 24px; width: calc(100% + 48px); height: 280px; }
  .search-bar { right: 16px; }
}

@media (max-width: 460px) {
  .services-grid { grid-template-columns: 1fr; }
  .logo-text { font-size: 1.05rem; }
  .logo-icon { width: 30px; height: 30px; }
  .logo-divider { height: 30px; }
}
